merged
[henge/apc.git] / src / scanner.c
1 /*!@file
2 \brief APC Directory Scanner
3 \details This hand-written parser/scanner traverses a directory tree and
4 tokenizes elements of the structure which correspond to APC grammar.
5 The parser is implemented as a 2D stack which populates a list of
6 child directories at each depth, handling only the leaf nodes
7 (regular files) of the directory open at the current depth to
8 conserve memory and speed up traversal.
9 The scanner works with the lexer to lexically analyze text, and
10 assumes the existence of an external 'lex' function
11 \author Jordan Lavatai
12 \date Aug 2016
13 ----------------------------------------------------------------------------*/
14 /* Standard */
15 #include <stdio.h> //print
16 #include <string.h> //strncmp
17 #include <errno.h> //errno
18 #include <ctype.h> //tolower
19 /* Posix */
20 #include <err.h> //warnx
21 #include <stdlib.h> //exit
22 #include <unistd.h> //chdir
23 #include <dirent.h> //opendir
24 #include <unistr.h> //unicode strings
25 /* Internal */
26 #include "parser.tab.h"
27 /* Public */
28 int scanner_init(void);
29 void scanner_quit(void);
30 int scanner(void);
31 int scanner_scanpixels(int*,int);
32 /* Private */
33 extern //lexer.c
34 int lexer_lexstring(const uint8_t*);
35 extern //lexer.c
36 void lexer_pushtok(int, int);
37 static
38 int dredge_current_depth(void);
39 /* Mem */
40 extern //lexer.c
41 struct dirent* lexer_direntpa[], **lexer_direntpp;
42 extern //SRC_DIR/bin/tools/apc.c
43 const char* cargs['Z'];
44 #ifndef DL_STACKSIZE
45 #define DL_STACKSIZE 64
46 #endif
47 #ifndef DL_CD_STACKSIZE
48 #define DL_CD_STACKSIZE DL_STACKSIZE //square tree
49 #endif
50 static
51 struct dirlist
52 { DIR* dirp;
53 struct dirent* child_directory_stack[DL_CD_STACKSIZE],** cds;
54 } directory_list_stack[DL_STACKSIZE + 1],* dls; //+1 for the root dir
55 static
56 FILE* current_open_file = NULL;
57
58 /* Directory Listing Stack
59 FILO Stack for keeping an open DIR* at each directory depth for treewalk.
60 This stack is depth-safe, checking its depth during push operations, but not
61 during pop operations, to ensure the thread doesn't open too many files at
62 once (512 in c runtime), or traverse too far through symbolic links.
63 A directory listing includes a DIR* and all DIR-typed entity in the directory
64 as recognized by dirent, populated externally (and optionally).
65 This stack behaves abnormally by incrementing its PUSH operation prior to
66 evaluation, and the POP operations after evaluation. This behavior allows
67 the 'DL_CURDEPTH' operation to map to the current element in the 'dl_stack'
68 array, and it is always treated as the "current depth". This also allows us
69 to init the root directory to 'directory_list_stack'[0] and pop it in a safe
70 and explicit manner.
71 */
72 #define DL_STACK (directory_list_stack)
73 #define DL_STACKP (dls)
74 #define DL_CD_STACK ((*DL_STACKP).child_directory_stack)
75 #define DL_CD_STACKP ((*DL_STACKP).cds)
76 #define DL_CURDIR() ((*DL_STACKP).dirp)
77 #define DL_LEN() (DL_STACKP - DL_STACK)
78 #define DL_CD_LEN() (DL_CD_STACKP - DL_CD_STACK)
79 #define DL_INIT() (DL_STACKP = DL_STACK)
80 #define DL_CD_INIT() (DL_CD_STACKP = DL_CD_STACK)
81 #define DL_POP() ((*DL_STACKP--).dirp)
82 #define DL_CD() (*DL_CD_STACKP)
83 #define DL_CD_CURNAME() (DL_CD()->d_name)
84 #define DL_CD_POP() (*--DL_CD_STACKP)
85 #define DL_PUSH(D) ((*++DL_STACKP).dirp = D)
86 #define DL_CD_PUSH(E) (*DL_CD_STACKP++ = E)
87
88
89 /* Initializer
90 Initializer expects a function pointer to its lexical analysis function.
91 Sets up stack pointers and returns boolean true if 'opendir' encounters an
92 error, or if dredge_current_depth returns boolean true.
93 */
94 int scanner_init
95 #define CWDSTR "./"
96 #define ROOTDIR (cargs['d'] ? cargs['d'] : CWDSTR)
97 ()
98 { DL_INIT();
99 DL_STACK[0].dirp = opendir(ROOTDIR);
100 if (current_open_file != NULL)
101 { fclose(current_open_file);
102 current_open_file = NULL;
103 }
104 printf("Root dir %s\n",ROOTDIR);
105 return !chdir(ROOTDIR) && (DL_STACK[0].dirp == NULL || dredge_current_depth() == -1);
106 }
107
108 /* Quit */
109 void scanner_quit
110 ()
111 { if (DL_CURDIR())
112 closedir(DL_CURDIR());
113 }
114
115 /* Scanner
116 The main driver of the scanner will advance the current treewalk state and
117 tokenize tree-based push/pop operations. It will call 'lexer_lex' to
118 tokenize directory names prior to making a push operation. safe checking for
119 all returns from the filesystem handler will exit on serious system errors.
120
121 after pushing a new directory to the directory list, the scanner will dredge
122 the directory and alphabetically sort all file entries into the lexer's file
123 array, while placing all subdirectory entries in the current depth's child
124 directory stack to be scanned later.
125
126 Returns the number of tokens generated on success, -1 on error.
127 */
128 int scanner
129 #define $($)#$ //stringifier
130 #define ERR_CHILD "Fatal: Maximum of " $(DL_CD_STACKSIZE) \
131 " child directories exceeded for directory at depth %i\n" \
132 ,DL_LEN()
133 #define ERR_DEPTH "Fatal: Maximum directory depth of " $(DL_STACKSIZE) \
134 " exceeded during directory scan\n"
135 #define ERR_DL "Fatal: Directory List Stack Corruption %x\n", DL_LEN()
136 ()
137 { int ntok = 0;
138 scan:
139 if (DL_CD_LEN() >= DL_CD_STACKSIZE)//fail if maxchildren exceeded
140 { fprintf(stderr, ERR_CHILD);
141 goto fail;
142 }
143 if (DL_CD_LEN() > 0) //There are entities to process
144 { if (DL_CD_POP() == NULL) //If the dirent is null, then the
145 goto libfail; //lib function in dirent has failed
146 ntok += lexer_lexstring(DL_CD_CURNAME());//lex the directory name
147 if (DL_LEN() >= DL_STACKSIZE) //fail if maxdepth exceeded
148 { fprintf(stderr, ERR_DEPTH);
149 goto fail;
150 }
151 if (chdir(DL_CD_CURNAME())) //move into the new directory
152 goto libfail;
153 if (DL_CURDIR() == NULL) //open the cwd
154 goto libfail;
155 lexer_pushtok(CLOPEN, 0); //Push "Open Directory" token
156 ntok++;
157 return dredge_current_depth(); //Filter and sort the current depth
158 }
159 else if (DL_LEN() >= 0) //Any dirs left? (Including root)
160 { if (closedir(DL_POP())) //close the directory we just left
161 goto libfail;
162 if (DL_LEN() == -1) //If we just popped root,
163 goto done; //we're done
164 lexer_pushtok(CLCLOSE, 0); //Else push "Close Directory" token,
165 ntok++;
166 if (!chdir("..")) //move up a directory and
167 goto scan; //start over
168 }
169 fprintf(stderr, ERR_DL);
170 libfail:
171 perror("scanner: ");
172 fail:
173 return -1;
174 done:
175 return ntok;
176 }
177
178 /* Scan Pixels
179 Scans up to 'len' pixels from the current file into 'buf'.
180 Returns the number of pixels scanned from the file, or -1 on error
181 */
182 int scanner_scanpixels
183 ( int* buf,
184 int max_len
185 )
186 { static int col_len, row_len, row;
187 //Open the current file if not yet open
188 if (current_open_file == NULL)
189 { if ((current_open_file = fopen(DL_CD_CURNAME(),"rb")) == NULL)
190 { perror("fopen: ");
191 return -1;
192 }
193 //Verify file header, get row_len/col_len
194 //if (read_img_header(&row_len, &col_len))
195 //return -1;
196 row = 0;
197 }
198 //Read pixels into the buffer if there are rows left in the image
199 if (row++ < row_len)
200 //TODO: return read_img_pixels(buf, col_len);
201 printf("SCANPIXELS NOT IMPLEMENTED\n.");
202 //Close the file and return 0
203 fclose(current_open_file);
204 current_open_file = NULL;
205 return 0;
206 }
207
208 /* Directory Entity Sort and Filter (Dredge)
209 This filter removes all unhandled file types, and places any 'DT_DIR' type
210 files in the current Directory List's directory stack. Upon finishing,
211 the 'CE_STACK' is sorted alphabetically, and the current 'DL_CD_STACK' is
212 populated. Prints warnings for unhandled files.
213
214 Returns -1 if 'readdir' encounters an error, otherwise returns the number of
215 directory entries sent to the external 'lexer_direntpa' array.
216 */
217 typedef //so we can typecast dirent's 'alphasort()' to take const void*s
218 int (*qcomp)(const void*, const void*);
219 static inline
220 int dredge_current_depth
221 #define READDIR_ERROR (-1)
222 #define READDIR_DONE (0)
223 #define DPS_LEN() (lexer_direntpp - lexer_direntpa)
224 #define DPS_PUSH(E) (*lexer_direntpp++ = E)
225 ()
226 { struct dirent** direntpp = lexer_direntpa;
227 DIR* cwd = DL_CURDIR();
228 struct dirent* direntp;
229 DL_CD_INIT();
230 scan_next:
231 if ((direntp = readdir(cwd)) != NULL)
232 { switch (direntp->d_type)
233 { case DT_REG:
234 DPS_PUSH(direntp);
235 goto scan_next;
236 case DT_DIR:
237 if (*(direntp->d_name) == '.') //skip hidden files and relative dirs
238 goto scan_next;
239 DL_CD_PUSH(direntp);
240 goto scan_next;
241 case DT_UNKNOWN:
242 warnx("unknown file %s: ignoring", direntp->d_name);
243 default:
244 goto scan_next;
245 }
246 }
247 if (errno)
248 return -1;
249 qsort(lexer_direntpa, DPS_LEN(), sizeof direntp, (qcomp)alphasort);
250 return DPS_LEN();
251 }