123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664 |
- #define BUILDING_OPENDOORS
- #include <string.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <ctype.h>
- #include "OpenDoor.h"
- #include "ODStr.h"
- #include "ODPlat.h"
- #include "ODCore.h"
- #include "ODInEx.h"
- #define MAX_ARGS 32
- #define CUSTOM_OPTION_SIZE 80
- typedef enum
- {
- kParamConfigFile,
- kParamLocal,
- kParamBPS,
- kParamPort,
- kParamNode,
- kParamHelp,
- kParamPersonality,
- kParamMaxTime,
- kParamAddress,
- kParamIRQ,
- kParamNoFOSSIL,
- kParamNoFIFO,
- kParamDropFile,
- kParamUserName,
- kParamTimeLeft,
- kParamSecurity,
- kParamLocation,
- kParamGraphics,
- kParamBBSName,
- kParamPortHandle,
- kParamSocketDescriptor,
- kParamSilentMode,
- kParamOption,
- kParamUnknown
- } tCommandLineParameter;
- static void ODAdvanceToNextArg(INT *pnCurrentArg, INT nArgCount,
- char *pszOption);
- static void ODGetNextArgName(INT *pnCurrentArg, INT nArgCount,
- char *papszArguments[], char *pszString, size_t nStringSize);
- static tCommandLineParameter ODGetCommandLineParameter(char *pszArgument);
- #define CONFIG_FILENAME_SIZE 80
- static char szConfigFilename[CONFIG_FILENAME_SIZE];
- #ifdef ODPLAT_WIN32
- ODAPIDEF void ODCALL od_parse_cmd_line(LPSTR pszCmdLine)
- #else
- ODAPIDEF void ODCALL od_parse_cmd_line(INT nArgCount, char *papszArguments[])
- #endif
- {
- char *pszCurrentArg;
- INT nCurrentArg;
- INT n;
- #ifdef ODPLAT_WIN32
- INT nArgCount;
- char *papszArguments[MAX_ARGS];
- char *pszCmdLineCopy;
- char *pchCurrent
- #endif
-
- TRACE(TRACE_API, "od_parse_cmd_line()");
- #ifdef ODPLAT_WIN32
-
- pszCmdLineCopy = malloc(strlen(pszCmdLine) + 1);
- if(pszCmdLineCopy == NULL)
- {
- od_control.od_error = ERR_MEMORY;
- return;
- }
-
- strcpy(pszCmdLineCopy, pszCmdLine);
-
- pchCurrent = pszCmdLineCopy;
- for(nArgCount = 0; nArgCount < MAX_ARGS && *pchCurrent != '\0'; ++nArgCount)
- {
-
- papszArguments[nArgCount] = pchCurrent;
-
- while(*pchCurrent != '\0' && !isspace(*pchCurrent))
- {
- ++pchCurrent;
- }
-
-
- while(*pchCurrent != '\0' && isspace(*pchCurrent))
- {
- *pchCurrent = '\0';
- ++pchCurrent;
- }
- }
- #endif
- #ifndef ODPLAT_WIN32
-
- if(papszArguments == NULL)
- {
- od_control.od_error = ERR_PARAMETER;
- return;
- }
- #endif
-
- bParsedCmdLine = TRUE;
-
-
- od_control.user_ansi = TRUE;
- od_control.user_timelimit = 60;
- #ifdef ODPLAT_WIN32
- for(nCurrentArg = 0; nCurrentArg < nArgCount; ++nCurrentArg)
- #else
- for(nCurrentArg = 1; nCurrentArg < nArgCount; ++nCurrentArg)
- #endif
- {
- pszCurrentArg = papszArguments[nCurrentArg];
- switch(ODGetCommandLineParameter(pszCurrentArg))
- {
- case kParamConfigFile:
- ODAdvanceToNextArg(&nCurrentArg, nArgCount, pszCurrentArg);
- strncpy(szConfigFilename, papszArguments[nCurrentArg],
- sizeof(szConfigFilename) - 1);
- szConfigFilename[sizeof(szConfigFilename) - 1] = '\0';
- od_control.od_config_filename = szConfigFilename;
- break;
- case kParamLocal:
- od_control.od_force_local = TRUE;
- break;
- case kParamBPS:
- ODAdvanceToNextArg(&nCurrentArg, nArgCount, pszCurrentArg);
- od_control.baud = atol(papszArguments[nCurrentArg]);
- wPreSetInfo |= PRESET_BPS;
- break;
- case kParamPort:
- ODAdvanceToNextArg(&nCurrentArg, nArgCount, pszCurrentArg);
- if(strnicmp(papszArguments[nCurrentArg], "COM", 3) == 0)
- {
- od_control.port = atoi(papszArguments[nCurrentArg] + 3) - 1;
- }
- else
- {
- od_control.port = atoi(papszArguments[nCurrentArg]);
- }
- wPreSetInfo |= PRESET_PORT;
- break;
- case kParamHelp:
- if(od_control.od_cmd_line_help_func != NULL)
- {
- (*od_control.od_cmd_line_help_func)();
- exit(0);
- }
- #ifdef ODPLAT_WIN32
- sprintf(szODWorkString, "%s Command Line Options",
- strlen(od_control.od_prog_name) > 0 ? od_control.od_prog_name
- : OD_VER_SHORTNAME);
- if(od_control.od_cmd_line_help != NULL)
- {
- MessageBox(NULL, od_control.od_cmd_line_help, szODWorkString,
- MB_ICONINFORMATION | MB_OK);
- }
- else
- {
- MessageBox(NULL,
- "(Note that some options can be overriden by configuration or drop files.)\n"
- "\n"
- "-C x or -CONFIG x\t- Specfies configuration filename.\n"
- "-L or -LOCAL\t- Causes door to operate in local mode, without requiring a drop file.\n"
- "-D or -DROPFILE x\t- Door information file directory and/or filename.\n"
- "-N x or -NODE x\t- Sets the node number to use.\n"
- "-B x or -BPS x\t- Sets the serial port <---> modem bps (baud) rate to use.\n"
- "-P x or -PORT x\t- Sets serial port to use. For COM1: use -P 0 or -P COM1, for COM2: use -P 1 or -P COM2, etc.\n"
- "-HANDLE x\t- Provides an already open serial port handle.\n"
- "-SOCKET x\t- Provides an already open TCP/IP socket descriptor.\n"
- "-SILENT\t\t- Operate in silent mode, with no local display.\n"
- "-MAXTIME x\t- Sets the maximum number of minutes that user will be permitted to access the door.\n"
- "-G or -GRAPHICS\t- Unless followed by 0 or N, turns on ANSI display mode.\n"
- "-BBSNAME x\t- Name of BBS.\n"
- "-USERNAME x\t- Name of user who is currently online.\n"
- "-TIMELEFT x\t- User's time remaining online.\n"
- "-SECURITY x\t- User's security level.\n"
- "-LOCATION x\t- Location from which user is calling.\n"
- "-?, -H or -HELP\t- Displays command-line help and exits.",
- szODWorkString, MB_ICONINFORMATION | MB_OK);
- }
- #else
- printf("AVALIABLE COMMAND LINE OPTIONS ");
- if(od_control.od_cmd_line_help != NULL)
- {
- printf(od_control.od_cmd_line_help);
- }
- else
- {
- printf("(Some can be overriden by config/drop file)\n");
- printf(" -C or -CONFIG - Specfies configuration filename.\n");
- printf(" -L or -LOCAL - Causes door to operate in local mode, without requiring a\n");
- printf(" door information (drop) file.\n");
- printf(" -D or -DROPFILE - Door information file directory and/or filename.\n");
- printf(" -N x or -NODE x - Sets the node number to use.\n");
- printf(" -B x or -BPS x - Sets the serial port <---> modem bps (baud) rate to use.\n");
- printf(" -P x or -PORT x - Sets serial port to use. For COM1: use -P 0 or -P COM1, for\n");
- printf(" COM2: use -P 1 or -P COM2, etc.\n");
- printf(" -ADDRESS x - Sets serial port address in HEXIDECIMAL (if no FOSSIL).\n");
- printf(" -IRQ x - Sets the serial port IRQ line (if FOSSIL is not used).\n");
- printf(" -NOFOSSIL - Disables use of FOSSIL driver, even if available.\n");
- printf(" -NOFIFO - Disables use of 16550 FIFO buffers (only if no FOSSIL).\n");
- printf(" -MAXTIME x - Sets the maximum number of minutes that any user will be\n");
- printf(" permitted to access the door, regardless of time left.\n");
- printf(" -SILENT - Operate in silent mode, with no local display.\n");
- printf(" -G or -GRAPHICS - Unless followed by 0 or N, turns on ANSI display mode.\n");
- printf(" -BBSNAME x - Name of BBS.\n");
- printf(" -USERNAME x - Name of user who is currently online.\n");
- printf(" -TIMELEFT x - User's time remaining online.\n");
- printf(" -SECURITY x - User's security level.\n");
- printf(" -LOCATION x - Location from which user is calling.\n");
- printf(" -?, -H or -HELP - Displays command-line help and exits.\n");
- }
- #endif
- exit(1);
- break;
- case kParamNode:
- ODAdvanceToNextArg(&nCurrentArg, nArgCount, pszCurrentArg);
- od_control.od_node = atoi(papszArguments[nCurrentArg]);
- break;
- case kParamMaxTime:
- ODAdvanceToNextArg(&nCurrentArg, nArgCount, pszCurrentArg);
- od_control.od_maxtime = atoi(papszArguments[nCurrentArg]);
- break;
- case kParamAddress:
- ODAdvanceToNextArg(&nCurrentArg, nArgCount, pszCurrentArg);
- od_control.od_com_address =
- (WORD)strtol(papszArguments[nCurrentArg], NULL, 16);
- break;
- case kParamIRQ:
- ODAdvanceToNextArg(&nCurrentArg, nArgCount, pszCurrentArg);
- od_control.od_com_irq = atoi(papszArguments[nCurrentArg]);
- break;
- case kParamNoFOSSIL:
- od_control.od_no_fossil = TRUE;
- break;
- case kParamNoFIFO:
- od_control.od_com_no_fifo = TRUE;
- break;
- case kParamDropFile:
- ODAdvanceToNextArg(&nCurrentArg, nArgCount, pszCurrentArg);
- strncpy(od_control.info_path, papszArguments[nCurrentArg],
- sizeof(od_control.info_path) - 1);
- od_control.info_path[sizeof(od_control.info_path) - 1] = '\0';
- break;
- case kParamUserName:
- ODGetNextArgName(&nCurrentArg, nArgCount, papszArguments,
- od_control.user_name, sizeof(od_control.user_name));
- break;
- case kParamTimeLeft:
- ODAdvanceToNextArg(&nCurrentArg, nArgCount, pszCurrentArg);
- od_control.user_timelimit = atoi(papszArguments[nCurrentArg]);
- break;
- case kParamSecurity:
- ODAdvanceToNextArg(&nCurrentArg, nArgCount, pszCurrentArg);
- od_control.user_security = atoi(papszArguments[nCurrentArg]);
- break;
- case kParamLocation:
- ODGetNextArgName(&nCurrentArg, nArgCount, papszArguments,
- od_control.user_location, sizeof(od_control.user_location));
- break;
- case kParamGraphics:
- n = nCurrentArg;
- if(++n < nArgCount)
- {
- if(atoi(papszArguments[n]) == 0 ||
- stricmp(papszArguments[n], "N") == 0)
- {
- od_control.user_ansi = FALSE;
- ++nCurrentArg;
- break;
- }
- }
- od_control.user_ansi = TRUE;
- break;
- case kParamBBSName:
- ODGetNextArgName(&nCurrentArg, nArgCount, papszArguments,
- od_control.system_name, sizeof(od_control.system_name));
- break;
- case kParamSocketDescriptor:
- od_control.od_use_socket = TRUE;
-
- case kParamPortHandle:
- ODAdvanceToNextArg(&nCurrentArg, nArgCount, pszCurrentArg);
- od_control.od_open_handle = atoi(papszArguments[nCurrentArg]);
- break;
- case kParamSilentMode:
- od_control.od_silent_mode = TRUE;
- break;
- case kParamUnknown:
-
-
-
- if(od_control.od_cmd_line_handler != NULL)
- {
- char szCustomOptions[CUSTOM_OPTION_SIZE];
- ODGetNextArgName(&nCurrentArg, nArgCount, papszArguments,
- szCustomOptions, sizeof(szCustomOptions));
- (*od_control.od_cmd_line_handler)(pszCurrentArg,
- szCustomOptions);
- }
- break;
- }
- }
- #ifdef ODPLAT_WIN32
- free(pszCmdLineCopy);
- #endif
- }
- static void ODAdvanceToNextArg(INT *pnCurrentArg, INT nArgCount,
- char *pszOption)
- {
- ASSERT(pnCurrentArg != NULL);
- ASSERT(pszOption != NULL);
- if(++*pnCurrentArg >= nArgCount)
- {
- printf("Missing parameter for option: %s\n", pszOption);
- exit(1);
- }
- }
- static void ODGetNextArgName(INT *pnCurrentArg, INT nArgCount,
- char *papszArguments[], char *pszString, size_t nStringSize)
- {
- BOOL bFirst = TRUE;
- ASSERT(pnCurrentArg != NULL);
- ASSERT(papszArguments != NULL);
- ASSERT(pszString != NULL);
- ASSERT(nStringSize > 0);
- if((*pnCurrentArg) + 1 >= nArgCount)
- {
- printf("Missing parameter for option: %s\n",
- papszArguments[(*pnCurrentArg) - 1]);
- exit(1);
- }
- pszString[0] = '\0';
- while(++*pnCurrentArg < nArgCount)
- {
- if(ODGetCommandLineParameter(papszArguments[*pnCurrentArg])
- != kParamOption)
- {
- --*pnCurrentArg;
- break;
- }
- if(strlen(pszString) >= nStringSize - 1)
- {
- break;
- }
- if(!bFirst)
- {
- strcat(pszString, " ");
- }
- strncat(pszString, papszArguments[*pnCurrentArg],
- strlen(pszString) - nStringSize - 1);
- pszString[nStringSize - 1] = '\0';
- bFirst = FALSE;
- }
- }
- static tCommandLineParameter ODGetCommandLineParameter(char *pszArgument)
- {
- ASSERT(pszArgument != NULL);
- if(*pszArgument == '-' || *pszArgument == '/')
- {
- ++pszArgument;
- }
- else
- {
- return(kParamOption);
- }
- if(stricmp(pszArgument, "C") == 0
- || stricmp(pszArgument, "CONFIG") == 0
- || stricmp(pszArgument, "CONFIGFILE") == 0
- || stricmp(pszArgument, "CFGFILE") == 0
- || stricmp(pszArgument, "CFG") == 0)
- {
- return(kParamConfigFile);
- }
- else if(stricmp(pszArgument, "L") == 0
- || stricmp(pszArgument, "LOCAL") == 0)
- {
- return(kParamLocal);
- }
- else if(stricmp(pszArgument, "B") == 0
- || stricmp(pszArgument, "BPS") == 0
- || stricmp(pszArgument, "BAUD") == 0)
- {
- return(kParamBPS);
- }
- else if(stricmp(pszArgument, "P") == 0
- || stricmp(pszArgument, "PORT") == 0)
- {
- return(kParamPort);
- }
- else if(stricmp(pszArgument, "N") == 0
- || stricmp(pszArgument, "NODE") == 0)
- {
- return(kParamNode);
- }
- else if(stricmp(pszArgument, "?") == 0
- || stricmp(pszArgument, "H") == 0
- || stricmp(pszArgument, "HELP") == 0)
- {
- return(kParamHelp);
- }
- else if(stricmp(pszArgument, "PERSONALITY") == 0)
- {
- return(kParamPersonality);
- }
- else if(stricmp(pszArgument, "MAXTIME") == 0)
- {
- return(kParamMaxTime);
- }
- else if(stricmp(pszArgument, "ADDRESS") == 0)
- {
- return(kParamAddress);
- }
- else if(stricmp(pszArgument, "IRQ") == 0)
- {
- return(kParamIRQ);
- }
- else if(stricmp(pszArgument, "NOFOSSIL") == 0)
- {
- return(kParamNoFOSSIL);
- }
- else if(stricmp(pszArgument, "NOFIFO") == 0)
- {
- return(kParamNoFIFO);
- }
- else if(stricmp(pszArgument, "DROPFILE") == 0 ||
- stricmp(pszArgument, "D") == 0)
- {
- return(kParamDropFile);
- }
- else if(stricmp(pszArgument, "USERNAME") == 0)
- {
- return(kParamUserName);
- }
- else if(stricmp(pszArgument, "TIMELEFT") == 0)
- {
- return(kParamTimeLeft);
- }
- else if(stricmp(pszArgument, "SECURITY") == 0)
- {
- return(kParamSecurity);
- }
- else if(stricmp(pszArgument, "LOCATION") == 0)
- {
- return(kParamLocation);
- }
- else if(stricmp(pszArgument, "GRAPHICS") == 0
- || stricmp(pszArgument, "G") == 0)
- {
- return(kParamGraphics);
- }
- else if(stricmp(pszArgument, "BBSNAME") == 0)
- {
- return(kParamBBSName);
- }
- else if(stricmp(pszArgument, "HANDLE") == 0)
- {
- return(kParamPortHandle);
- }
- else if(stricmp(pszArgument, "SOCKET") == 0)
- {
- return(kParamSocketDescriptor);
- }
- else if(stricmp(pszArgument, "SILENT") == 0)
- {
- return(kParamSilentMode);
- }
- else
- {
- return(kParamUnknown);
- }
- }
|