summaryrefslogtreecommitdiff
path: root/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/AToken_traditional.h
blob: b4d69477bd600a27ab3f048f28ad00761708c0f2 (plain)
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/* ANTLRToken.h
 *
 * SOFTWARE RIGHTS
 *
 * We reserve no LEGAL rights to the Purdue Compiler Construction Tool
 * Set (PCCTS) -- PCCTS is in the public domain.  An individual or
 * company may do whatever they wish with source code distributed with
 * PCCTS or the code generated by PCCTS, including the incorporation of
 * PCCTS, or its output, into commerical software.
 *
 * We encourage users to develop software with PCCTS.  However, we do ask
 * that credit is given to us for developing PCCTS.  By "credit",
 * we mean that if you incorporate our source code into one of your
 * programs (commercial product, research project, or otherwise) that you
 * acknowledge this fact somewhere in the documentation, research report,
 * etc...  If you like PCCTS and have developed a nice tool with the
 * output, please mention that you developed it using PCCTS.  In
 * addition, we ask that this header remain intact in our source code.
 * As long as these guidelines are kept, we expect to continue enhancing
 * this system and expect to make other tools available as they are
 * completed.
 *
 * ANTLR 1.33
 * Terence Parr
 * Parr Research Corporation
 * with Purdue University and AHPCRC, University of Minnesota
 * 1989-1998
 */

#ifndef ATOKEN_H_GATE
#define ATOKEN_H_GATE

#include "pcctscfg.h"

#include "pccts_string.h"
#include "pccts_stdio.h"
#include "pccts_stdlib.h"

PCCTS_NAMESPACE_STD

#ifndef ANTLRCommonTokenTEXTSIZE
#define ANTLRCommonTokenTEXTSIZE          100
#endif

/* must define what a char looks like; can make this a class too */
typedef char ANTLRChar;

/* D E F I N E  S M A R T  P O I N T E R S */

#include "pcctscfg.h"

//#include ATOKPTR_H   not tested yet, leave out
class ANTLRAbstractToken;
typedef ANTLRAbstractToken *_ANTLRTokenPtr;

class DllExportPCCTS ANTLRAbstractToken {
public:
    virtual ~ANTLRAbstractToken() {;}
    virtual ANTLRTokenType getType() = 0;
    virtual void setType(ANTLRTokenType t) = 0;
    virtual int getLine() = 0;
    virtual void setLine(int line) = 0;
    virtual ANTLRChar *getText() = 0;
    virtual void setText(ANTLRChar *) = 0;

    /* This function will disappear when I can use templates */
  virtual ANTLRAbstractToken *makeToken(ANTLRTokenType tt,
                      ANTLRChar *text,
                      int line) = 0;

  /* define to satisfy ANTLRTokenBuffer's need to determine whether or
     not a token object can be destroyed.  If nref()==0, no one has
     a reference, and the object may be destroyed.  This function defaults
     to 1, hence, if you use deleteTokens() message with a token object
     not derived from ANTLRCommonRefCountToken, the parser will compile
     but will not delete objects after they leave the token buffer.
    */
  virtual unsigned nref() { return 1; }
  virtual void ref() {;}
  virtual void deref() {;}

  virtual void panic(char *msg)
    {
      fprintf(stderr, "ANTLRAbstractToken panic: %s\n", msg);
      exit(PCCTS_EXIT_FAILURE);
    }
};

/* This class should be subclassed.  It cannot store token type or text */

class DllExportPCCTS ANTLRRefCountToken : public ANTLRAbstractToken {
public:
#ifdef DBG_REFCOUNTTOKEN
  static int ctor;
  static int dtor;
#endif
protected:
    unsigned refcnt_;
#ifdef DBG_REFCOUNTTOKEN
  char object[200];
#endif

public:
  ANTLRRefCountToken(ANTLRTokenType t, ANTLRChar *s)
#ifndef DBG_REFCOUNTTOKEN
    {
      refcnt_ = 0;
    }
#else
  {
    ctor++;
    refcnt_ = 0;
    if ( t==1 ) sprintf(object,"tok_EOF");
    else sprintf(object,"tok_%s",s);
    fprintf(stderr, "ctor %s #%d\n",object,ctor);
  }
#endif
  ANTLRRefCountToken()
#ifndef DBG_REFCOUNTTOKEN
    { refcnt_ = 0; }
#else
    {
      ctor++;
      refcnt_ = 0;
      sprintf(object,"tok_blank");
      fprintf(stderr, "ctor %s #%d\n",object,ctor);
    }
  virtual ~ANTLRRefCountToken()
    {
      dtor++;
      if ( dtor>ctor ) fprintf(stderr, "WARNING: dtor>ctor\n");
      fprintf(stderr, "dtor %s #%d\n", object, dtor);
      object[0]='\0';
    }
#endif

  // reference counting stuff needed by ANTLRTokenPtr.
  // User should not access these; for C++ language reasons, we had
  // to make these public.  Yuck.
  void ref()    { refcnt_++; }
  void deref()  { refcnt_--; }
  unsigned nref()  { return refcnt_; }

  virtual ANTLRAbstractToken *makeToken(ANTLRTokenType tt,
                      ANTLRChar *txt,
                      int line)
  {
    panic("call to ANTLRRefCountToken::makeToken()\n");
    return NULL;
  }
};

class DllExportPCCTS ANTLRCommonNoRefCountToken : public ANTLRAbstractToken {
protected:
  ANTLRTokenType _type;
  int _line;
  ANTLRChar _text[ANTLRCommonTokenTEXTSIZE+1];

public:
  ANTLRCommonNoRefCountToken(ANTLRTokenType t, ANTLRChar *s)
    { setType(t); _line = 0; setText(s); }
  ANTLRCommonNoRefCountToken()
    { setType((ANTLRTokenType)0); _line = 0; setText(""); }

  ANTLRTokenType getType()   { return _type; }
  void setType(ANTLRTokenType t)  { _type = t; }
  virtual int getLine()     { return _line; }
  void setLine(int line)    { _line = line; }
  ANTLRChar *getText()     { return _text; }
  void setText(ANTLRChar *s)
    { strncpy((char *)_text, (char *)s, ANTLRCommonTokenTEXTSIZE); }
  virtual ANTLRAbstractToken *makeToken(ANTLRTokenType tt,
                      ANTLRChar *txt,
                      int line)
    {
      ANTLRAbstractToken *t = new ANTLRCommonNoRefCountToken;
      t->setType(tt); t->setText(txt); t->setLine(line);
      return t;
    }
};

class DllExportPCCTS ANTLRCommonToken : public ANTLRRefCountToken {
protected:
  ANTLRTokenType _type;
  int _line;
  ANTLRChar _text[ANTLRCommonTokenTEXTSIZE+1];

public:
  ANTLRCommonToken(ANTLRTokenType t, ANTLRChar *s) : ANTLRRefCountToken(t,s)
    { setType(t); _line = 0; setText(s); }
  ANTLRCommonToken()
    { setType((ANTLRTokenType)0); _line = 0; setText(""); }
  virtual ~ANTLRCommonToken() {;}

  ANTLRTokenType getType()   { return _type; }
  void setType(ANTLRTokenType t)  { _type = t; }
  virtual int getLine()     { return _line; }
  void setLine(int line)    { _line = line; }
  ANTLRChar *getText()     { return _text; }
  void setText(ANTLRChar *s)
    { strncpy((char *)_text, (char *)s, ANTLRCommonTokenTEXTSIZE); }
  virtual ANTLRAbstractToken *makeToken(ANTLRTokenType tt,
                      ANTLRChar *txt,
                      int line)
    {
      ANTLRAbstractToken *t = new ANTLRCommonToken(tt,txt);
      t->setLine(line);
      return t;
    }
};

// used for backward compatibility
typedef ANTLRCommonToken ANTLRCommonBacktrackingToken;

#endif