home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / cmd / winfe / cmdparse.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-08  |  1.7 KB  |  49 lines

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2.  *
  3.  * The contents of this file are subject to the Netscape Public License
  4.  * Version 1.0 (the "NPL"); you may not use this file except in
  5.  * compliance with the NPL.  You may obtain a copy of the NPL at
  6.  * http://www.mozilla.org/NPL/
  7.  *
  8.  * Software distributed under the NPL is distributed on an "AS IS" basis,
  9.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  10.  * for the specific language governing rights and limitations under the
  11.  * NPL.
  12.  *
  13.  * The Initial Developer of this code under the NPL is Netscape
  14.  * Communications Corporation.  Portions created by Netscape are
  15.  * Copyright (C) 1998 Netscape Communications Corporation.  All Rights
  16.  * Reserved.
  17.  */
  18. //command line parser class
  19. //takes a command line and parses out arguments separated by spaces 
  20. //and whole arguments with spaces surrounded by quotes.
  21.  
  22. enum States {e_start, e_quote,e_end_quote, e_space, e_other, e_error, e_end};    
  23.  
  24.  
  25.  
  26. class CCmdParse
  27. {   
  28.      void AddNewToken();   
  29.      void AddChar();
  30. public:
  31.     States State;
  32.     States Previous;//currently not being used. may be later
  33.         
  34.     char m_szParseString[512];
  35.     CStringList *m_pStringList;
  36.     
  37.     char *m_pCurrent;
  38.     char m_Token[512];
  39.     int m_nIndex;                                                               
  40.                                                                
  41.     CCmdParse(char *pszStringToParse,CStringList &lStringList);  //No need to call Init() if used
  42.  
  43.     CCmdParse(); //must call Init(...,...) with this constructor prior to calling ProcessCmdLine()
  44.     ~CCmdParse();
  45.     BOOL ProcessCmdLine();
  46.     void Init(char *pszStringToParse,CStringList &lStringList);
  47.  
  48. };
  49.