/usr/include/sipxtapi/siptest/CommandProcessor.h is in libsipxtapi-dev 3.3.0~test17-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | //
// Copyright (C) 2004-2006 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// Copyright (C) 2004-2006 Pingtel Corp. All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// $$
///////////////////////////////////////////////////////////////////////////////
#ifndef _CommandProcessor_h_
#define _CommandProcessor_h_
// SYSTEM INCLUDES
//#include <...>
// APPLICATION INCLUDES
#include <utl/UtlDList.h>
#include <utl/UtlDListIterator.h>
#include <siptest/Command.h>
#include <os/OsDefs.h>
#include <os/OsConfigDb.h>
// DEFINES
#define MAX_COMMANDS 1024
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// CONSTANTS
// STRUCTS
// TYPEDEFS
// FORWARD DECLARATIONS
//:Class short description which may consist of multiple lines (note the ':')
// Class detailed description which may extend to multiple lines
class CommandProcessor
{
/* //////////////////////////// PUBLIC //////////////////////////////////// */
public:
enum CommandStatus
{
COMMAND_SUCCESS = 0,
COMMAND_SUCCESS_EXIT,
COMMAND_FAILED = 100,
COMMAND_NOT_FOUND,
COMMAND_AMBIGUOUS,
COMMAND_BAD_SYNTAX,
COMMAND_FAILED_EXIT = 200
};
/* ============================ CREATORS ================================== */
CommandProcessor();
//:Default constructor
virtual
~CommandProcessor();
//:Destructor
/* ============================ MANIPULATORS ============================== */
void registerCommand(const char* commandName, Command* command);
int executeCommand(const char* commandLine);
/* ============================ ACCESSORS ================================= */
int findCommand(const char* commandName, Command** command) const;
static void parseCommandLine(const char* commandLine, int* argc, char*** argv);
int getNumCommands() const;
void getCommandName(int commandIndex, UtlString* commandNameString) const;
int getHistoryLength() const;
UtlBoolean getHistory(int index, UtlString* commandLine) const;
void setEnvironment(const char* name, const char* value);
UtlBoolean getEnvironment(const char* name, UtlString& value);
UtlBoolean getEnvironment(const char* name, int& value);
/* ============================ INQUIRY =================================== */
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
int executeCommand(int argc, char* argv[]);
void pushHistory(const char* commandLine);
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
int numCommands;
UtlString commandNames[MAX_COMMANDS];
Command* commands[MAX_COMMANDS];
UtlDList historyList;
OsConfigDb mEnvironment;
CommandProcessor(const CommandProcessor& rCommandProcessor);
//:Copy constructor
CommandProcessor& operator=(const CommandProcessor& rhs);
//:Assignment operator
#ifdef TEST
static bool sIsTested;
//:Set to true after the tests for this class have been executed once
void test();
//:Verify assertions for this class
// Test helper functions
void testCreators();
void testManipulators();
void testAccessors();
void testInquiry();
#endif //TEST
};
/* ============================ INLINE METHODS ============================ */
#endif // _CommandProcessor_h_
|