⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stafcommandparser.h

📁 Software Testing Automation Framework (STAF)的开发代码
💻 H
📖 第 1 页 / 共 2 页
字号:
/*****************************************************************************//* Software Testing Automation Framework (STAF)                              *//* (C) Copyright IBM Corp. 2001                                              *//*                                                                           *//* This software is licensed under the Common Public License (CPL) V1.0.     *//*****************************************************************************/#ifndef STAF_CommandParser#define STAF_CommandParser#include "STAFString.h"#ifdef __cplusplusextern "C" {#endiftypedef struct STAFCommandParserImpl *STAFCommandParser_t;typedef struct STAFCommandParseResultImpl *STAFCommandParseResult_t;// XXX: Consider passing non-ptrs to the APIs that do not need ptr-ptr // XXX: Also consider having a brief discussion about how to use parser// XXX: for debugclass STAFCommandParser;class STAFCommandParseResult;void printParserInfo(STAFCommandParser &);void printParseResultInfo(STAFCommandParseResult &);void printParserInfo2(STAFCommandParserImpl &);void printParseResultInfo2(STAFCommandParseResultImpl &);typedef STAFRefPtr<STAFCommandParser> STAFCommandParserPtr;/***********************************************************************//* STAFCommandParserConstruct - Creates a STAF Command Parser          *//*                                                                     *//* Accepts: (Out) Pointer to a STAF Command Parser                     *//*          (In)  The maximum number of arguments allowed by the       *//*                parser                                               *//*          (In)  Whether the parser is case sensitive (0 = No,        *//*                1 = Yes)                                             *//*          (Out) Pointer to OS return code                            *//*                                                                     *//* Returns:  kSTAFOk, on success                                       *//*           other on error                                            *//***********************************************************************/STAFRC_t STAFCommandParserConstruct(STAFCommandParser_t *pParser,    unsigned int maxArgs, unsigned int caseSensitive, unsigned int *osRC);/***********************************************************************//* STAFCommandParserAddOption - Adds an option to the parser           *//*                                                                     *//* Accepts: (In)  Pointer to a STAF Command Parser                     *//*          (In)  The option name                                      *//*          (In)  The number of times this option may be specified     *//*                (0 = Unlimited)                                      *//*          (In)  Whether the option allows, requires, or may not have *//*                a value associated with it.  (0 = Not Allowed,       *//*                1 = Allowed, 2 = Required)                           *//*          (Out) Pointer to OS return code                            *//*                                                                     *//* Returns:  kSTAFOk, on success                                       *//*           other on error                                            *//***********************************************************************/STAFRC_t STAFCommandParserAddOption(STAFCommandParser_t parser,    const STAFString_t optionName, unsigned int timesAllowed,    unsigned int valueRequirement, unsigned int *osRC);/***********************************************************************//* STAFCommandParserAddOptionGroup - Adds an option group to the       *//*                                   parser                            *//*                                                                     *//* Accepts: (In)  Pointer to a STAF Command Parser                     *//*          (In)  The list of option names in the group                *//*          (In)  The minimum number of options that must be specified *//*          (In)  The maximum number of options that may be specified  *//*          (Out) Pointer to OS return code                            *//*                                                                     *//* Returns:  kSTAFOk, on success                                       *//*           other on error                                            *//***********************************************************************/STAFRC_t STAFCommandParserAddOptionGroup(STAFCommandParser_t parser,    const STAFString_t optionGroup, unsigned int minOptions,     unsigned int maxOptions, unsigned int *osRC);/***********************************************************************//* STAFCommandParserAddOptionNeed - Adds an option need to the parser  *//*                                                                     *//* Accepts: (In)  Pointer to a STAF Command Parser                     *//*          (In)  The list of needer option names                      *//*          (In)  The list of needee option names                      *//*          (Out) Pointer to OS return code                            *//*                                                                     *//* Returns:  kSTAFOk, on success                                       *//*           other on error                                            *//***********************************************************************/STAFRC_t STAFCommandParserAddOptionNeed(STAFCommandParser_t parser,    const STAFString_t optionNeeders, const STAFString_t optionNeedees,     unsigned int *osRC);/***********************************************************************//* STAFCommandParserParseString - Parses a string                      *//*                                                                     *//* Note: On error, use STAFCommandParseResultGetErrorBuffer to get a   *//*       string containing a description of the error.                 *//*                                                                     *//* Accepts: (In)  Pointer to a STAF Command Parser                     *//*          (In)  The string to parse                                  *//*          (Out) Pointer to the STAFCommandParseResult_t              *//*          (Out) Pointer to the error buffer                          *//*          (Out) Pointer to OS return code                            *//*                                                                     *//* Returns:  kSTAFOk, on success                                       *//*           other on error                                            *//***********************************************************************/STAFRC_t STAFCommandParserParseString(STAFCommandParser_t parser,    const STAFString_t theString, STAFCommandParseResult_t *result,    STAFString_t *errorBuffer, unsigned int *osRC);/***********************************************************************//* STAFCommandParserDestruct - Destroys a STAF Command Parser          *//*                                                                     *//* Accepts: (In)  Pointer to a STAF Command Parser                     *//*          (Out) Pointer to OS return code                            *//*                                                                     *//* Returns:  kSTAFOk, on success                                       *//*           other on error                                            *//***********************************************************************/STAFRC_t STAFCommandParserDestruct(STAFCommandParser_t *pParser,                                   unsigned int *osRC);/***********************************************************************//* STAFCommandParseResultGetErrorBuffer - Gets the result's error buf- *//*                                        fer set on parsing errors    *//*                                                                     *//* Accepts: (In)  Pointer to a STAF Command Parse Result               *//*          (Out) Pointer to a STAFString to contain the error buffer  *//*          (Out) Pointer to OS return code                            *//*                                                                     *//* Returns:  kSTAFOk, on success                                       *//*           other on error                                            *//***********************************************************************/STAFRC_t STAFCommandParseResultGetErrorBuffer(    STAFCommandParseResult_t result, STAFString_t *theBuffer,    unsigned int *osRC);/***********************************************************************//* STAFCommandParseResultGetNumInstances - Gets the total number of    *//*                                         options specified by the    *//*                                         user in the parsed string   *//*                                                                     *//* Accepts: (In)  Pointer to a STAF Command Parse Result               *//*          (Out) Pointer to the number of options                     *//*          (Out) Pointer to OS return code                            *//*                                                                     *//* Returns:  kSTAFOk, on success                                       *//*           other on error                                            *//***********************************************************************/STAFRC_t STAFCommandParseResultGetNumInstances(    STAFCommandParseResult_t result, unsigned int *numInstances,    unsigned int *osRC);/***********************************************************************//* STAFCommandParseResultGetInstanceName - Gets the name of the        *//*                                         specified option instance   *//*                                                                     *//* Accepts: (In)  Pointer to a STAF Command Parse Result               *//*          (In)  The option instance number                           *//*          (Out) Pointer to the option name                           *//*          (Out) Pointer to OS return code                            *//*                                                                     *//* Returns:  kSTAFOk, on success                                       *//*           other on error                                            *//***********************************************************************/STAFRC_t STAFCommandParseResultGetInstanceName(    STAFCommandParseResult_t result, unsigned int instanceNum,    STAFString_t *instanceName, unsigned int *osRC);/***********************************************************************//* STAFCommandParseResultGetInstanceValue - Gets the value of the      *//*                                          specified option instance  *//*                                                                     *//* Accepts: (In)  Pointer to a STAF Command Parse Result               *//*          (In)  The option instance number                           *//*          (Out) Pointer to the option value                          *//*          (Out) Pointer to OS return code                            *//*                                                                     *//* Returns:  kSTAFOk, on success                                       *//*           other on error                                            *//***********************************************************************/STAFRC_t STAFCommandParseResultGetInstanceValue(    STAFCommandParseResult_t result, unsigned int instanceNum,    STAFString_t *instanceValue, unsigned int *osRC);/***********************************************************************//* STAFCommandParseResultGetOptionTimes - Gets the number of times     *//*                                        a particular option was      *//*                                        specified by the user        *//*                                                                     *//* Accepts: (In)  Pointer to a STAF Command Parse Result               *//*          (In)  The option name                                      *//*          (Out) Pointer to the number of times the option was        *//*                specified                                            *//*          (Out) Pointer to OS return code                            *//*                                                                     *//* Returns:  kSTAFOk, on success                                       *//*           other on error                                            *//***********************************************************************/STAFRC_t STAFCommandParseResultGetOptionTimes(    STAFCommandParseResult_t result, const STAFString_t optionName,    unsigned int *numTimes, unsigned int *osRC);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -