]> www.fi.muni.cz Git - evince.git/blob - pdf/xpdf/Object.h
Totaly re-hash stream architecture ... again :-)
[evince.git] / pdf / xpdf / Object.h
1 //========================================================================
2 //
3 // Object.h
4 //
5 // Copyright 1996 Derek B. Noonburg
6 //
7 //========================================================================
8
9 #ifndef OBJECT_H
10 #define OBJECT_H
11
12 #ifdef __GNUC__
13 #pragma interface
14 #endif
15
16 #include <stdio.h>
17 #include <string.h>
18 #include "gtypes.h"
19 #include "gmem.h"
20 #include "GString.h"
21
22 class Array;
23 class Dict;
24 class Stream;
25
26 //------------------------------------------------------------------------
27 // Ref
28 //------------------------------------------------------------------------
29
30 struct Ref {
31   int num;                      // object number
32   int gen;                      // generation number
33 };
34
35 //------------------------------------------------------------------------
36 // object types
37 //------------------------------------------------------------------------
38
39 enum ObjType {
40   // simple objects
41   objBool,                      // boolean
42   objInt,                       // integer
43   objReal,                      // real
44   objString,                    // string
45   objName,                      // name
46   objNull,                      // null
47
48   // complex objects
49   objArray,                     // array
50   objDict,                      // dictionary
51   objStream,                    // stream
52   objRef,                       // indirect reference
53
54   // special objects
55   objCmd,                       // command name
56   objError,                     // error return from Lexer
57   objEOF,                       // end of file return from Lexer
58   objNone                       // uninitialized object
59 };
60
61 #define numObjTypes 14          // total number of object types
62
63 //------------------------------------------------------------------------
64 // Object
65 //------------------------------------------------------------------------
66
67 #ifdef DEBUG_MEM
68 #define initObj(t) ++numAlloc[type = t]
69 #else
70 #define initObj(t) type = t
71 #endif
72
73 class Object {
74 public:
75
76   // Default constructor.
77   Object():
78     type(objNone) {}
79
80   // Initialize an object.
81   Object *initBool(GBool booln1)
82     { initObj(objBool); booln = booln1; return this; }
83   Object *initInt(int intg1)
84     { initObj(objInt); intg = intg1; return this; }
85   Object *initReal(double real1)
86     { initObj(objReal); real = real1; return this; }
87   Object *initString(GString *string1)
88     { initObj(objString); string = string1; return this; }
89   Object *initName(char *name1)
90     { initObj(objName); name = copyString(name1); return this; }
91   Object *initNull()
92     { initObj(objNull); return this; }
93   Object *initArray();
94   Object *initDict();
95   Object *initDict(Dict *dict1)
96     { initObj(objDict); dict = dict1; return this; }
97   Object *initStream(Stream *stream1);
98   Object *initRef(int num1, int gen1)
99     { initObj(objRef); ref.num = num1; ref.gen = gen1; return this; }
100   Object *initCmd(char *cmd1)
101     { initObj(objCmd); cmd = copyString(cmd1); return this; }
102   Object *initError()
103     { initObj(objError); return this; }
104   Object *initEOF()
105     { initObj(objEOF); return this; }
106
107   // Copy an object.
108   Object *copy(Object *obj);
109
110   // If object is a Ref, fetch and return the referenced object.
111   // Otherwise, return a copy of the object.
112   Object *fetch(Object *obj);
113
114   // Free object contents.
115   void free();
116
117   // Type checking.
118   GBool isBool() { return type == objBool; }
119   GBool isInt() { return type == objInt; }
120   GBool isReal() { return type == objReal; }
121   GBool isNum() { return type == objInt || type == objReal; }
122   GBool isString() { return type == objString; }
123   GBool isName() { return type == objName; }
124   GBool isNull() { return type == objNull; }
125   GBool isArray() { return type == objArray; }
126   GBool isDict() { return type == objDict; }
127   GBool isStream() { return type == objStream; }
128   GBool isRef() { return type == objRef; }
129   GBool isCmd() { return type == objCmd; }
130   GBool isError() { return type == objError; }
131   GBool isEOF() { return type == objEOF; }
132   GBool isNone() { return type == objNone; }
133
134   // Special type checking.
135   GBool isName(char *name1)
136     { return type == objName && !strcmp(name, name1); }
137   GBool isDict(char *dictType);
138   GBool isStream(char *dictType);
139   GBool isCmd(char *cmd1)
140     { return type == objCmd && !strcmp(cmd, cmd1); }
141
142   // Accessors.  NB: these assume object is of correct type.
143   GBool getBool() { return booln; }
144   int getInt() { return intg; }
145   double getReal() { return real; }
146   double getNum() { return type == objInt ? (double)intg : real; }
147   GString *getString() { return string; }
148   char *getName() { return name; }
149   Array *getArray() { return array; }
150   Dict *getDict() { return dict; }
151   Stream *getStream() { return stream; }
152   Ref getRef() { return ref; }
153   int getRefNum() { return ref.num; }
154   int getRefGen() { return ref.gen; }
155
156   // Array accessors.
157   int arrayGetLength();
158   void arrayAdd(Object *elem);
159   Object *arrayGet(int i, Object *obj);
160   Object *arrayGetNF(int i, Object *obj);
161
162   // Dict accessors.
163   int dictGetLength();
164   void dictAdd(char *key, Object *val);
165   GBool dictIs(char *dictType);
166   Object *dictLookup(char *key, Object *obj);
167   Object *dictLookupNF(char *key, Object *obj);
168   char *dictGetKey(int i);
169   Object *dictGetVal(int i, Object *obj);
170   Object *dictGetValNF(int i, Object *obj);
171
172   // Stream accessors.
173   GBool streamIs(char *dictType);
174   void streamReset();
175   int streamGetChar();
176   int streamLookChar();
177   char *streamGetLine(char *buf, int size);
178   int streamGetPos();
179   void streamSetPos(int pos);
180 /*  BaseFile streamGetFile();*/
181   Dict *streamGetDict();
182
183   // Output.
184   char *getTypeName();
185   void print(FILE *f = stdout);
186
187   // Memory testing.
188   static void memCheck(FILE *f);
189
190 private:
191
192   ObjType type;                 // object type
193   union {                       // value for each type:
194     GBool booln;                //   boolean
195     int intg;                   //   integer
196     double real;                //   real
197     GString *string;            //   string
198     char *name;                 //   name
199     Array *array;               //   array
200     Dict *dict;                 //   dictionary
201     Stream *stream;             //   stream
202     Ref ref;                    //   indirect reference
203     char *cmd;                  //   command
204   };
205
206 #ifdef DEBUG_MEM
207   static int                    // number of each type of object
208     numAlloc[numObjTypes];      //   currently allocated
209 #endif
210 };
211
212 //------------------------------------------------------------------------
213 // Array accessors.
214 //------------------------------------------------------------------------
215
216 #include "Array.h"
217
218 inline int Object::arrayGetLength()
219   { return array->getLength(); }
220
221 inline void Object::arrayAdd(Object *elem)
222   { array->add(elem); }
223
224 inline Object *Object::arrayGet(int i, Object *obj)
225   { return array->get(i, obj); }
226
227 inline Object *Object::arrayGetNF(int i, Object *obj)
228   { return array->getNF(i, obj); }
229
230 //------------------------------------------------------------------------
231 // Dict accessors.
232 //------------------------------------------------------------------------
233
234 #include "Dict.h"
235
236 inline int Object::dictGetLength()
237   { return dict->getLength(); }
238
239 inline void Object::dictAdd(char *key, Object *val)
240   { dict->add(key, val); }
241
242 inline GBool Object::dictIs(char *dictType)
243   { return dict->is(dictType); }
244
245 inline GBool Object::isDict(char *dictType)
246   { return type == objDict && dictIs(dictType); }
247
248 inline Object *Object::dictLookup(char *key, Object *obj)
249   { return dict->lookup(key, obj); }
250
251 inline Object *Object::dictLookupNF(char *key, Object *obj)
252   { return dict->lookupNF(key, obj); }
253
254 inline char *Object::dictGetKey(int i)
255   { return dict->getKey(i); }
256
257 inline Object *Object::dictGetVal(int i, Object *obj)
258   { return dict->getVal(i, obj); }
259
260 inline Object *Object::dictGetValNF(int i, Object *obj)
261   { return dict->getValNF(i, obj); }
262
263 //------------------------------------------------------------------------
264 // Stream accessors.
265 //------------------------------------------------------------------------
266
267 #include "Stream.h"
268
269 inline GBool Object::streamIs(char *dictType)
270   { return stream->getDict()->is(dictType); }
271
272 inline GBool Object::isStream(char *dictType)
273   { return type == objStream && streamIs(dictType); }
274
275 inline void Object::streamReset()
276   { stream->reset(); }
277
278 inline int Object::streamGetChar()
279   { return stream->getChar(); }
280
281 inline int Object::streamLookChar()
282   { return stream->lookChar(); }
283
284 inline char *Object::streamGetLine(char *buf, int size)
285   { return stream->getLine(buf, size); }
286
287 inline int Object::streamGetPos()
288   { return stream->getPos(); }
289
290 inline void Object::streamSetPos(int pos)
291   { stream->setPos(pos); }
292
293 /*inline BaseFile Object::streamGetFile()
294   { return stream->getFile(); }*/
295
296 inline Dict *Object::streamGetDict()
297   { return stream->getDict(); }
298
299 #endif