]> andersk Git - splint.git/blame - src/Headers/fileTable.h
o Make lltok an abstract type, a pointer to structure instead of a plain
[splint.git] / src / Headers / fileTable.h
CommitLineData
885824d3 1/*
28bf4b0b 2** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2001.
885824d3 3** See ../LICENSE for license information.
4**
5*/
6/*
7** fileTable.h
8*/
9
10# ifndef FILETABLE_H
11# define FILETABLE_H
12
13/*@constant int FTBASESIZE; @*/
14# define FTBASESIZE 64
15
16/* moved to fileloc.h
17** typedef int fileId;
18*/
19
20typedef enum { FILE_NORMAL, FILE_LSLTEMP, FILE_NODELETE,
28bf4b0b 21 FILE_HEADER, FILE_XH, FILE_MACROS, FILE_METASTATE } fileType;
885824d3 22
28bf4b0b 23/*@private@*/ typedef struct
885824d3 24{
25 bool ftemp BOOLBITS;
26 bool fsystem BOOLBITS;
27 bool fspecial BOOLBITS;
28 cstring fname;
29 cstring basename;
30 fileType ftype;
31 fileId fder;
32} *ftentry;
33
34typedef /*@only@*/ ftentry o_ftentry;
35
dfd82dce 36typedef /*@only@*/ struct {
abd7f895 37 /*@null@*/ /*@dependent@*/ /*@exposed@*/ FILE *f;
dfd82dce 38 /*@only@*/ cstring fname;
39} *foentry;
40
28bf4b0b 41abst_typedef /*@null@*/ struct
885824d3 42{
43 int nentries;
44 int nspace;
28bf4b0b 45 cstringTable htable;
885824d3 46 /*@reldef@*/ /*@only@*/ o_ftentry *elements;
dfd82dce 47
48 /*
49 ** Keep track of all the open files, so we can close them on error exits.
50 */
51
52 int nopen;
53 int nopenspace;
54 /*@reldef@*/ /*@only@*/ foentry *openelements;
885824d3 55} *fileTable ;
56
57/*@constant null fileTable fileTable_undefined; @*/
58# define fileTable_undefined ((fileTable) NULL)
59
0e41eb0e 60extern /*@unused@*/ /*@nullwhentrue@*/ bool
885824d3 61 fileTable_isUndefined (/*@null@*/ fileTable p_f) /*@*/ ;
0e41eb0e 62extern /*@unused@*/ /*@falsewhennull@*/ bool
885824d3 63 fileTable_isDefined (/*@null@*/ fileTable p_f) /*@*/ ;
64
65# define fileTable_isUndefined(ft) ((ft) == fileTable_undefined)
66# define fileTable_isDefined(ft) ((ft) != fileTable_undefined)
67extern /*@observer@*/ cstring fileTable_getName (fileTable p_ft, fileId p_fid) /*@*/ ;
68extern /*@observer@*/ cstring fileTable_getNameBase (fileTable p_ft, fileId p_fid) ;
69extern fileId fileTable_addFile (fileTable p_ft, cstring p_name)
70 /*@modifies p_ft@*/ ;
80489f0a 71
72extern void fileTable_addStreamFile (fileTable p_ft, /*@dependent@*/ FILE *p_fstream,
73 cstring p_name)
74 /*@modifies p_ft@*/ ;
75
885824d3 76extern fileId fileTable_addHeaderFile (fileTable p_ft, cstring p_name)
77 /*@modifies p_ft@*/ ;
28bf4b0b 78extern fileId fileTable_addXHFile (fileTable p_ft, cstring p_name)
79 /*@modifies p_ft@*/ ;
885824d3 80extern fileId fileTable_addLibraryFile (fileTable p_ft, cstring p_name)
81 /*@modifies p_ft@*/ ;
82
83# ifndef NOLCL
84extern fileId fileTable_addLCLFile (fileTable p_ft, cstring p_name)
85 /*@modifies p_ft@*/ ;
86
87extern fileId fileTable_addltemp (fileTable p_ft);
88
89# endif
90
91extern /*@notnull@*/ /*@only@*/ fileTable fileTable_create (void) /*@*/ ;
92extern fileId fileTable_lookup (fileTable p_ft, cstring p_s) /*@*/ ;
93extern fileId fileTable_addCTempFile (fileTable p_ft, fileId p_fid)
94 /*@modifies p_ft@*/ ;
95extern fileId fileTable_addFileOnly (fileTable p_ft, /*@only@*/ cstring p_name)
96 /*@modifies p_ft@*/ ;
97
98# ifndef NOLCL
99extern fileId fileTable_addImportFile (fileTable p_ft, cstring p_name)
100 /*@modifies p_ft@*/ ;
101# endif
102
103extern fileId fileTable_addMacrosFile (fileTable p_ft)
104 /*@modifies p_ft@*/ ;
28bf4b0b 105
106extern fileId fileTable_addMetastateFile (fileTable p_ft, cstring p_name)
107 /*@modifies p_ft@*/ ;
108
109extern void fileTable_setFilePath (fileTable p_ft, fileId p_fid, cstring p_path)
110 /*@modifies p_ft@*/ ;
111
885824d3 112extern /*@observer@*/ cstring fileTable_getRootName (fileTable p_ft, fileId p_fid) /*@*/ ;
113extern bool fileTable_isHeader (fileTable p_ft, fileId p_fid) /*@*/ ;
114extern bool fileId_isHeader (fileId p_f) /*@*/ ;
115# define fileId_isHeader(f) (fileTable_isHeader (context_fileTable(), f))
116
117extern bool fileTable_sameBase (fileTable p_ft, fileId p_f1, fileId p_f2);
118extern void fileTable_cleanup (fileTable p_ft) /*@modifies fileSystem@*/;
119extern fileId fileTable_lookupBase (fileTable p_ft, cstring p_base) /*@modifies p_ft@*/ ;
80489f0a 120extern void fileTable_printTemps (fileTable p_ft) /*@modifies g_warningstream@*/ ;
885824d3 121extern /*@unused@*/ /*@only@*/ cstring fileTable_unparse (fileTable p_ft) /*@*/ ;
122extern bool fileTable_exists (fileTable p_ft, cstring p_s) /*@*/ ;
123extern void fileTable_free (/*@only@*/ fileTable p_f);
124extern bool fileTable_isSpecialFile (fileTable p_ft, fileId p_fid) /*@*/ ;
125extern bool fileTable_isSystemFile (fileTable p_ft, fileId p_fid) /*@*/ ;
28bf4b0b 126extern bool fileTable_isXHFile (fileTable p_ft, fileId p_fid) /*@*/ ;
885824d3 127
4dd72714 128extern /*@observer@*/ cstring fileTable_fileName (fileId p_fid) /*@*/ ;
129extern /*@observer@*/ cstring fileTable_fileNameBase (fileId p_fid) /*@*/ ;
130extern /*@observer@*/ cstring fileTable_rootFileName (fileId p_fid) /*@*/ ;
131
132# define fileTable_fileName(fid) (fileTable_getName(context_fileTable(), fid))
133# define fileTable_fileNameBase(fid) (fileTable_getNameBase(context_fileTable(), fid))
134# define fileTable_rootFileName(fid) (fileTable_getRootName(context_fileTable(), fid))
885824d3 135
136extern void fileTable_noDelete (fileTable, cstring);
137extern bool fileId_baseEqual (/*@sef@*/ fileId p_t1, /*@sef@*/ fileId p_t2) /*@*/ ;
138# define fileId_baseEqual(t1,t2) \
139 (fileId_equal (t1, t2) || fileTable_sameBase (context_fileTable (), t1, t2))
140
dfd82dce 141
142extern /*@null@*/ /*@open@*/ /*@dependent@*/ FILE *
143fileTable_openFile (fileTable p_ft, cstring p_fname, /*@observer@*/ char *p_mode)
144 /*@modifies p_ft@*/ ;
145
146extern bool fileTable_closeFile (fileTable p_ft, FILE *p_f)
147 /*@ensures closed p_f@*/
148 /*@modifies p_ft, p_f@*/ ;
149
150extern void fileTable_closeAll (fileTable p_ft)
151 /*@modifies p_ft@*/ ;
152
885824d3 153# else
154# error "Multiple include"
155#endif
156
This page took 0.078164 seconds and 5 git commands to generate.