Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / nsgmls / ParserApp.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: ParserApp.h /main/1 1996/07/29 17:00:38 cde-hp $ */
24 // Copyright (c) 1996 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifndef ParserApp_INCLUDED
28 #define ParserApp_INCLUDED 1
29
30 #ifdef __GNUG__
31 #pragma interface
32 #endif
33
34 #include "SgmlParser.h"
35 #include "ParserOptions.h"
36 #include "EntityApp.h"
37 #include "StringC.h"
38 #include "ErrorCountEventHandler.h"
39
40 #ifdef SP_NAMESPACE
41 namespace SP_NAMESPACE {
42 #endif
43
44 class SP_API ParserApp : public EntityApp {
45 public:
46   ParserApp();
47   void processOption(AppChar opt, const AppChar *arg);
48   int processSysid(const StringC &);
49   virtual ErrorCountEventHandler *makeEventHandler() = 0;
50   Boolean enableWarning(const AppChar *s);
51   void initParser(const StringC &sysid);
52   SgmlParser &parser();
53   // This calls the ArcEngine if the options have enabled that.
54   void parseAll(SgmlParser &, EventHandler &,
55                 SP_CONST SP_VOLATILE sig_atomic_t *cancelPtr);
56   virtual void allLinkTypesActivated();
57 protected:
58   virtual int generateEvents(ErrorCountEventHandler *);
59   ParserOptions options_;
60   SgmlParser parser_;
61   unsigned errorLimit_;
62   Vector<StringC> arcNames_;
63   Vector<const AppChar *> activeLinkTypes_;
64 };
65
66 inline
67 SgmlParser &ParserApp::parser()
68 {
69   return parser_;
70 }
71
72 #ifdef SP_NAMESPACE
73 }
74 #endif
75
76 #endif /* not ParserApp_INCLUDED */