VirtualBox

Changeset 93706 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Feb 11, 2022 7:14:49 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
149877
Message:

VBoxManage: Finish cleanup for 'registervm', 'unregistervm', 'createvm', 'movevm' and 'cloudprofile'.

Location:
trunk/src/VBox/Frontends/VBoxManage
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h

    r93704 r93706  
    9898{
    9999    USAGE_INVALID = 0,
    100     USAGE_REGISTERVM,
    101     USAGE_UNREGISTERVM,
    102     USAGE_CREATEVM,
    103100    USAGE_STARTVM,
    104101    USAGE_CONTROLVM,
     
    109106    USAGE_MODIFYMEDIUM,
    110107    USAGE_CLONEMEDIUM,
    111     USAGE_MOVEVM,
    112108    USAGE_CREATEHOSTIF,
    113109    USAGE_REMOVEHOSTIF,
     
    150146    USAGE_MEDIUMENCCHKPWD,
    151147    USAGE_USBDEVSOURCE,
    152     USAGE_CLOUDPROFILE,
    153148    /* Insert new entries before this line, but only if it is not an option
    154149     * to go for the new style command and help handling (see e.g. extpack,
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp

    r93558 r93706  
    6666
    6767    if (a->argc != 1)
    68         return errorSyntax(USAGE_REGISTERVM, Misc::tr("Incorrect number of parameters"));
     68        return errorSyntax(Misc::tr("Incorrect number of parameters"));
    6969
    7070    ComPtr<IMachine> machine;
     
    125125                    VMName = ValueUnion.psz;
    126126                else
    127                     return errorSyntax(USAGE_UNREGISTERVM, Misc::tr("Invalid parameter '%s'"), ValueUnion.psz);
     127                    return errorSyntax(Misc::tr("Invalid parameter '%s'"), ValueUnion.psz);
    128128                break;
    129129
     
    132132                {
    133133                    if (RT_C_IS_PRINT(c))
    134                         return errorSyntax(USAGE_UNREGISTERVM, Misc::tr("Invalid option -%c"), c);
    135                     return errorSyntax(USAGE_UNREGISTERVM, Misc::tr("Invalid option case %i"), c);
     134                        return errorSyntax(Misc::tr("Invalid option -%c"), c);
     135                    return errorSyntax(Misc::tr("Invalid option case %i"), c);
    136136                }
    137137                if (c == VERR_GETOPT_UNKNOWN_OPTION)
    138                     return errorSyntax(USAGE_UNREGISTERVM, Misc::tr("unknown option: %s\n"), ValueUnion.psz);
     138                    return errorSyntax(Misc::tr("unknown option: %s\n"), ValueUnion.psz);
    139139                if (ValueUnion.pDef)
    140                     return errorSyntax(USAGE_UNREGISTERVM, "%s: %Rrs", ValueUnion.pDef->pszLong, c);
    141                 return errorSyntax(USAGE_UNREGISTERVM, Misc::tr("error: %Rrs"), c);
     140                    return errorSyntax("%s: %Rrs", ValueUnion.pDef->pszLong, c);
     141                return errorSyntax(Misc::tr("error: %Rrs"), c);
    142142        }
    143143    }
     
    145145    /* check for required options */
    146146    if (!VMName)
    147         return errorSyntax(USAGE_UNREGISTERVM, Misc::tr("VM name required"));
     147        return errorSyntax(Misc::tr("VM name required"));
    148148
    149149    ComPtr<IMachine> machine;
     
    250250
    251251            default:
    252                 return errorGetOpt(USAGE_CREATEVM, c, &ValueUnion);
     252                return errorGetOpt(c, &ValueUnion);
    253253        }
    254254    }
     
    256256    /* check for required options */
    257257    if (bstrName.isEmpty())
    258         return errorSyntax(USAGE_CREATEVM, Misc::tr("Parameter --name is required"));
     258        return errorSyntax(Misc::tr("Parameter --name is required"));
    259259
    260260    do
     
    354354                    pszSrcName = ValueUnion.psz;
    355355                else
    356                     return errorSyntax(USAGE_MOVEVM, Misc::tr("Invalid parameter '%s'"), ValueUnion.psz);
     356                    return errorSyntax(Misc::tr("Invalid parameter '%s'"), ValueUnion.psz);
    357357                break;
    358358
    359359            default:
    360                 return errorGetOpt(USAGE_MOVEVM, c, &ValueUnion);
     360                return errorGetOpt(c, &ValueUnion);
    361361        }
    362362    }
     
    370370    /* Check for required options */
    371371    if (!pszSrcName)
    372         return errorSyntax(USAGE_MOVEVM, Misc::tr("VM name required"));
     372        return errorSyntax(Misc::tr("VM name required"));
    373373
    374374    /* Get the machine object */
     
    21322132                break;
    21332133            default:
    2134                 return errorGetOpt(USAGE_CLOUDPROFILE, c, &ValueUnion);
     2134                return errorGetOpt(c, &ValueUnion);
    21352135        }
    21362136    }
     
    21382138    /* check for required options */
    21392139    if (bstrProvider.isEmpty())
    2140         return errorSyntax(USAGE_CLOUDPROFILE, Misc::tr("Parameter --provider is required"));
     2140        return errorSyntax(Misc::tr("Parameter --provider is required"));
    21412141    if (bstrProfile.isEmpty())
    2142         return errorSyntax(USAGE_CLOUDPROFILE, Misc::tr("Parameter --profile is required"));
     2142        return errorSyntax(Misc::tr("Parameter --profile is required"));
    21432143
    21442144    ComPtr<IVirtualBox> pVirtualBox = a->virtualBox;
     
    21882188    /* check for required options */
    21892189    if (bstrProvider.isEmpty())
    2190         return errorSyntax(USAGE_CLOUDPROFILE, Misc::tr("Parameter --provider is required"));
     2190        return errorSyntax(Misc::tr("Parameter --provider is required"));
    21912191    if (bstrProfile.isEmpty())
    2192         return errorSyntax(USAGE_CLOUDPROFILE, Misc::tr("Parameter --profile is required"));
     2192        return errorSyntax(Misc::tr("Parameter --profile is required"));
    21932193
    21942194    ComPtr<IVirtualBox> pVirtualBox = a->virtualBox;
     
    22482248    /* check for required options */
    22492249    if (bstrProvider.isEmpty())
    2250         return errorSyntax(USAGE_CLOUDPROFILE, Misc::tr("Parameter --provider is required"));
     2250        return errorSyntax(Misc::tr("Parameter --provider is required"));
    22512251    if (bstrProfile.isEmpty())
    2252         return errorSyntax(USAGE_CLOUDPROFILE, Misc::tr("Parameter --profile is required"));
     2252        return errorSyntax(Misc::tr("Parameter --profile is required"));
    22532253
    22542254    /*
     
    23082308                break;
    23092309            default:
    2310                 return errorGetOpt(USAGE_CLOUDPROFILE, c, &ValueUnion);
     2310                return errorGetOpt(c, &ValueUnion);
    23112311        }
    23122312    }
     
    23462346    /* check for required options */
    23472347    if (bstrProvider.isEmpty())
    2348         return errorSyntax(USAGE_CLOUDPROFILE, Misc::tr("Parameter --provider is required"));
     2348        return errorSyntax(Misc::tr("Parameter --provider is required"));
    23492349    if (bstrProfile.isEmpty())
    2350         return errorSyntax(USAGE_CLOUDPROFILE, Misc::tr("Parameter --profile is required"));
     2350        return errorSyntax(Misc::tr("Parameter --profile is required"));
    23512351
    23522352    ComPtr<IVirtualBox> pVirtualBox = a->virtualBox;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette