]> andersk Git - splint.git/blame - src/Headers/fileTable.h
Fixed up for win32 building (winconfig.h required)
[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 {
37 /*@dependent@*/ /*@exposed@*/ FILE *f;
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@*/ ;
71extern fileId fileTable_addHeaderFile (fileTable p_ft, cstring p_name)
72 /*@modifies p_ft@*/ ;
28bf4b0b 73extern fileId fileTable_addXHFile (fileTable p_ft, cstring p_name)
74 /*@modifies p_ft@*/ ;
885824d3 75extern fileId fileTable_addLibraryFile (fileTable p_ft, cstring p_name)
76 /*@modifies p_ft@*/ ;
77
78# ifndef NOLCL
79extern fileId fileTable_addLCLFile (fileTable p_ft, cstring p_name)
80 /*@modifies p_ft@*/ ;
81
82extern fileId fileTable_addltemp (fileTable p_ft);
83
84# endif
85
86extern /*@notnull@*/ /*@only@*/ fileTable fileTable_create (void) /*@*/ ;
87extern fileId fileTable_lookup (fileTable p_ft, cstring p_s) /*@*/ ;
88extern fileId fileTable_addCTempFile (fileTable p_ft, fileId p_fid)
89 /*@modifies p_ft@*/ ;
90extern fileId fileTable_addFileOnly (fileTable p_ft, /*@only@*/ cstring p_name)
91 /*@modifies p_ft@*/ ;
92
93# ifndef NOLCL
94extern fileId fileTable_addImportFile (fileTable p_ft, cstring p_name)
95 /*@modifies p_ft@*/ ;
96# endif
97
98extern fileId fileTable_addMacrosFile (fileTable p_ft)
99 /*@modifies p_ft@*/ ;
28bf4b0b 100
101extern fileId fileTable_addMetastateFile (fileTable p_ft, cstring p_name)
102 /*@modifies p_ft@*/ ;
103
104extern void fileTable_setFilePath (fileTable p_ft, fileId p_fid, cstring p_path)
105 /*@modifies p_ft@*/ ;
106
885824d3 107extern /*@observer@*/ cstring fileTable_getRootName (fileTable p_ft, fileId p_fid) /*@*/ ;
108extern bool fileTable_isHeader (fileTable p_ft, fileId p_fid) /*@*/ ;
109extern bool fileId_isHeader (fileId p_f) /*@*/ ;
110# define fileId_isHeader(f) (fileTable_isHeader (context_fileTable(), f))
111
112extern bool fileTable_sameBase (fileTable p_ft, fileId p_f1, fileId p_f2);
113extern void fileTable_cleanup (fileTable p_ft) /*@modifies fileSystem@*/;
114extern fileId fileTable_lookupBase (fileTable p_ft, cstring p_base) /*@modifies p_ft@*/ ;
115extern void fileTable_printTemps (fileTable p_ft) /*@modifies g_msgstream@*/ ;
116extern /*@unused@*/ /*@only@*/ cstring fileTable_unparse (fileTable p_ft) /*@*/ ;
117extern bool fileTable_exists (fileTable p_ft, cstring p_s) /*@*/ ;
118extern void fileTable_free (/*@only@*/ fileTable p_f);
119extern bool fileTable_isSpecialFile (fileTable p_ft, fileId p_fid) /*@*/ ;
120extern bool fileTable_isSystemFile (fileTable p_ft, fileId p_fid) /*@*/ ;
28bf4b0b 121extern bool fileTable_isXHFile (fileTable p_ft, fileId p_fid) /*@*/ ;
885824d3 122
4dd72714 123extern /*@observer@*/ cstring fileTable_fileName (fileId p_fid) /*@*/ ;
124extern /*@observer@*/ cstring fileTable_fileNameBase (fileId p_fid) /*@*/ ;
125extern /*@observer@*/ cstring fileTable_rootFileName (fileId p_fid) /*@*/ ;
126
127# define fileTable_fileName(fid) (fileTable_getName(context_fileTable(), fid))
128# define fileTable_fileNameBase(fid) (fileTable_getNameBase(context_fileTable(), fid))
129# define fileTable_rootFileName(fid) (fileTable_getRootName(context_fileTable(), fid))
885824d3 130
131extern void fileTable_noDelete (fileTable, cstring);
132extern bool fileId_baseEqual (/*@sef@*/ fileId p_t1, /*@sef@*/ fileId p_t2) /*@*/ ;
133# define fileId_baseEqual(t1,t2) \
134 (fileId_equal (t1, t2) || fileTable_sameBase (context_fileTable (), t1, t2))
135
dfd82dce 136
137extern /*@null@*/ /*@open@*/ /*@dependent@*/ FILE *
138fileTable_openFile (fileTable p_ft, cstring p_fname, /*@observer@*/ char *p_mode)
139 /*@modifies p_ft@*/ ;
140
141extern bool fileTable_closeFile (fileTable p_ft, FILE *p_f)
142 /*@ensures closed p_f@*/
143 /*@modifies p_ft, p_f@*/ ;
144
145extern void fileTable_closeAll (fileTable p_ft)
146 /*@modifies p_ft@*/ ;
147
885824d3 148# else
149# error "Multiple include"
150#endif
151
This page took 0.114321 seconds and 5 git commands to generate.