]>
Commit | Line | Data |
---|---|---|
cecfc5e7 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: HelpGen.cpp | |
3 | // Purpose: Main program file for HelpGen | |
4 | // Author: Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
5 | // Modified by: | |
6 | // Created: 06/01/99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1999 VZ | |
13e175ea | 9 | // Licence: wxWindows Licence |
cecfc5e7 VZ |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | /* | |
5f7cf62f VZ |
13 | BUGS |
14 | ||
15 | 1. wx/string.h confuses C++ parser terribly | |
16 | 2. C++ parser doesn't know about virtual functions, nor static ones | |
17 | 3. param checking is not done for vararg functions | |
18 | 4. type comparison is dumb: it doesn't know that "char *" is the same | |
19 | that "char []" nor that "const char *" is the same as "char const *" | |
20 | ||
21 | TODO (+ means fixed), see also the change log at the end of the file. | |
cecfc5e7 VZ |
22 | |
23 | (i) small fixes in the current version | |
59734eb5 | 24 | |
cecfc5e7 VZ |
25 | +1. Quote special TeX characters like '&' and '_' (=> derive from wxFile) |
26 | 2. Document typedefs | |
27 | 3. Document global variables | |
28 | 4. Document #defines | |
ed38ec7e | 29 | +5. Program options |
5f7cf62f VZ |
30 | 6. Include file name/line number in the "diff" messages? |
31 | +7. Support for vararg functions | |
cecfc5e7 VZ |
32 | |
33 | (ii) plans for version 2 | |
34 | 1. Use wxTextFile for direct file access to avoid one scan method problems | |
5f7cf62f | 35 | 2. Use command line parser class for the options |
d12e3536 | 36 | 3. support for overloaded functions in diff mode (search for OVER) |
59734eb5 | 37 | |
5f7cf62f VZ |
38 | (iii) plans for version 3 |
39 | 1. Merging with existing files | |
40 | 2. GUI | |
cecfc5e7 VZ |
41 | */ |
42 | ||
43 | // ============================================================================= | |
44 | // declarations | |
45 | // ============================================================================= | |
46 | ||
47 | // ----------------------------------------------------------------------------- | |
48 | // headers | |
49 | // ----------------------------------------------------------------------------- | |
50 | ||
be5a51fb | 51 | // wxWidgets |
cecfc5e7 VZ |
52 | #include "wx/wxprec.h" |
53 | ||
1d0d1540 WS |
54 | #ifdef __BORLANDC__ |
55 | #pragma hdrstop | |
56 | #endif | |
57 | ||
ffa4348d VZ |
58 | #if wxUSE_UNICODE |
59 | #error "HelpGen doesn't build in Unicode mode" | |
60 | #endif | |
61 | ||
cecfc5e7 | 62 | #ifndef WX_PRECOMP |
5aa5c1e4 GD |
63 | #include "wx/string.h" |
64 | #include "wx/log.h" | |
65 | #include "wx/dynarray.h" | |
b521a6f9 | 66 | #include "wx/app.h" |
cecfc5e7 VZ |
67 | #endif // WX_PRECOMP |
68 | ||
5aa5c1e4 GD |
69 | #include "wx/file.h" |
70 | #include "wx/regex.h" | |
eb420090 | 71 | #include "wx/hash.h" |
3d05544e | 72 | |
cecfc5e7 VZ |
73 | // C++ parsing classes |
74 | #include "cjparser.h" | |
75 | ||
76 | // standard headers | |
77 | #include <stdio.h> | |
78 | #include <time.h> | |
79 | ||
80 | // ----------------------------------------------------------------------------- | |
81 | // private functions | |
82 | // ----------------------------------------------------------------------------- | |
83 | ||
ed38ec7e | 84 | // return the label for the given function name (i.e. argument of \label) |
1d0d1540 | 85 | static wxString MakeLabel(const wxChar *classname, const wxChar *funcname = NULL); |
ed38ec7e VZ |
86 | |
87 | // return the whole \helpref{arg}{arg_label} string | |
1d0d1540 | 88 | static wxString MakeHelpref(const wxChar *argument); |
ed38ec7e | 89 | |
5f7cf62f | 90 | // [un]quote special TeX characters (in place) |
cecfc5e7 | 91 | static void TeXFilter(wxString* str); |
5f7cf62f | 92 | static void TeXUnfilter(wxString* str); // also trims spaces |
cecfc5e7 | 93 | |
ed38ec7e VZ |
94 | // get all comments associated with this context |
95 | static wxString GetAllComments(const spContext& ctx); | |
96 | ||
97 | // get the string with current time (returns pointer to static buffer) | |
98 | // timeFormat is used for the call of strftime(3) | |
1d0d1540 | 99 | static const char *GetCurrentTimeFormatted(const char *timeFormat); |
ed38ec7e | 100 | |
2f919f99 VZ |
101 | // get the string containing the program version |
102 | static const wxString GetVersionString(); | |
103 | ||
cecfc5e7 VZ |
104 | // ----------------------------------------------------------------------------- |
105 | // private classes | |
106 | // ----------------------------------------------------------------------------- | |
107 | ||
d8b6f4d9 VZ |
108 | // a function documentation entry |
109 | struct FunctionDocEntry | |
110 | { | |
111 | FunctionDocEntry(const wxString& name_, const wxString& text_) | |
112 | : name(name_), text(text_) { } | |
113 | ||
114 | // the function name | |
115 | wxString name; | |
116 | ||
117 | // the function doc text | |
118 | wxString text; | |
119 | ||
120 | // sorting stuff | |
121 | static int Compare(FunctionDocEntry **pp1, FunctionDocEntry **pp2) | |
122 | { | |
123 | // the methods should appear in the following order: ctors, dtor, all | |
124 | // the rest in the alphabetical order | |
125 | bool isCtor1 = (*pp1)->name == classname; | |
126 | bool isCtor2 = (*pp2)->name == classname; | |
127 | ||
128 | if ( isCtor1 ) { | |
129 | if ( isCtor2 ) { | |
130 | // we don't order the ctors because we don't know how to do it | |
131 | return 0; | |
132 | } | |
133 | ||
134 | // ctor comes before non-ctor | |
135 | return -1; | |
136 | } | |
137 | else { | |
138 | if ( isCtor2 ) { | |
139 | // non-ctor must come after ctor | |
140 | return 1; | |
141 | } | |
142 | ||
1d0d1540 | 143 | wxString dtorname = wxString(_T("~")) + classname; |
d8b6f4d9 VZ |
144 | |
145 | // there is only one dtor, so the logic here is simpler | |
146 | if ( (*pp1)->name == dtorname ) { | |
147 | return -1; | |
148 | } | |
149 | else if ( (*pp2)->name == dtorname ) { | |
150 | return 1; | |
151 | } | |
152 | ||
153 | // two normal methods | |
1d0d1540 | 154 | return wxStrcmp((*pp1)->name, (*pp2)->name); |
d8b6f4d9 VZ |
155 | } |
156 | } | |
157 | ||
158 | static wxString classname; | |
159 | }; | |
160 | ||
161 | wxString FunctionDocEntry::classname; | |
162 | ||
163 | WX_DECLARE_OBJARRAY(FunctionDocEntry, FunctionDocEntries); | |
164 | ||
165 | #include "wx/arrimpl.cpp" | |
166 | ||
167 | WX_DEFINE_OBJARRAY(FunctionDocEntries); | |
168 | ||
169 | // add a function which sanitazes the string before writing it to the file and | |
170 | // also capable of delaying output and sorting it before really writing it to | |
171 | // the file (done from FlushAll()) | |
cecfc5e7 VZ |
172 | class wxTeXFile : public wxFile |
173 | { | |
174 | public: | |
59734eb5 | 175 | wxTeXFile() { } |
cecfc5e7 | 176 | |
a7adaeda VZ |
177 | // write a string to file verbatim (should only be used for the strings |
178 | // inside verbatim environment) | |
d8b6f4d9 | 179 | void WriteVerbatim(const wxString& s) |
a7adaeda | 180 | { |
d8b6f4d9 | 181 | m_text += s; |
a7adaeda VZ |
182 | } |
183 | ||
184 | // write a string quoting TeX specials in it | |
d8b6f4d9 | 185 | void WriteTeX(const wxString& s) |
cecfc5e7 VZ |
186 | { |
187 | wxString t(s); | |
188 | TeXFilter(&t); | |
189 | ||
d8b6f4d9 VZ |
190 | m_text += t; |
191 | } | |
192 | ||
193 | // do write everything to file | |
194 | bool FlushAll() | |
195 | { | |
196 | if ( m_text.empty() ) | |
8ad74db3 | 197 | return true; |
d8b6f4d9 VZ |
198 | |
199 | if ( !Write(m_text) ) { | |
1d0d1540 | 200 | wxLogError(_T("Failed to output generated documentation.")); |
d8b6f4d9 | 201 | |
8ad74db3 | 202 | return false; |
d8b6f4d9 VZ |
203 | } |
204 | ||
205 | m_text.clear(); | |
206 | ||
8ad74db3 | 207 | return true; |
cecfc5e7 | 208 | } |
59734eb5 VZ |
209 | |
210 | private: | |
211 | wxTeXFile(const wxTeXFile&); | |
212 | wxTeXFile& operator=(const wxTeXFile&); | |
d8b6f4d9 VZ |
213 | |
214 | wxString m_text; | |
cecfc5e7 VZ |
215 | }; |
216 | ||
d12e3536 VZ |
217 | // helper class which manages the classes and function names to ignore for |
218 | // the documentation purposes (used by both HelpGenVisitor and DocManager) | |
219 | class IgnoreNamesHandler | |
220 | { | |
221 | public: | |
222 | IgnoreNamesHandler() : m_ignore(CompareIgnoreListEntries) { } | |
223 | ~IgnoreNamesHandler() { WX_CLEAR_ARRAY(m_ignore); } | |
224 | ||
225 | // load file with classes/functions to ignore (add them to the names we | |
226 | // already have) | |
227 | bool AddNamesFromFile(const wxString& filename); | |
228 | ||
8ad74db3 | 229 | // return true if we ignore this function |
d12e3536 VZ |
230 | bool IgnoreMethod(const wxString& classname, |
231 | const wxString& funcname) const | |
232 | { | |
233 | if ( IgnoreClass(classname) ) | |
8ad74db3 | 234 | return true; |
d12e3536 VZ |
235 | |
236 | IgnoreListEntry ignore(classname, funcname); | |
237 | ||
238 | return m_ignore.Index(&ignore) != wxNOT_FOUND; | |
239 | } | |
240 | ||
8ad74db3 | 241 | // return true if we ignore this class entirely |
d12e3536 VZ |
242 | bool IgnoreClass(const wxString& classname) const |
243 | { | |
1d0d1540 | 244 | IgnoreListEntry ignore(classname, _T("")); |
d12e3536 VZ |
245 | |
246 | return m_ignore.Index(&ignore) != wxNOT_FOUND; | |
247 | } | |
248 | ||
249 | protected: | |
250 | struct IgnoreListEntry | |
251 | { | |
252 | IgnoreListEntry(const wxString& classname, | |
253 | const wxString& funcname) | |
254 | : m_classname(classname), m_funcname(funcname) | |
255 | { | |
256 | } | |
257 | ||
258 | wxString m_classname; | |
259 | wxString m_funcname; // if empty, ignore class entirely | |
260 | }; | |
261 | ||
262 | static int CompareIgnoreListEntries(IgnoreListEntry *first, | |
263 | IgnoreListEntry *second); | |
264 | ||
265 | // for efficiency, let's sort it | |
c58cff9a | 266 | public: // FIXME: macro requires it |
d12e3536 VZ |
267 | WX_DEFINE_SORTED_ARRAY(IgnoreListEntry *, ArrayNamesToIgnore); |
268 | ||
c58cff9a | 269 | protected: |
d12e3536 VZ |
270 | ArrayNamesToIgnore m_ignore; |
271 | ||
272 | private: | |
273 | IgnoreNamesHandler(const IgnoreNamesHandler&); | |
274 | IgnoreNamesHandler& operator=(const IgnoreNamesHandler&); | |
275 | }; | |
276 | ||
5f7cf62f | 277 | // visitor implementation which writes all collected data to a .tex file |
cecfc5e7 VZ |
278 | class HelpGenVisitor : public spVisitor |
279 | { | |
280 | public: | |
281 | // ctor | |
d12e3536 | 282 | HelpGenVisitor(const wxString& directoryOut, bool overwrite); |
cecfc5e7 VZ |
283 | |
284 | virtual void VisitFile( spFile& fl ); | |
285 | virtual void VisitClass( spClass& cl ); | |
286 | virtual void VisitEnumeration( spEnumeration& en ); | |
287 | virtual void VisitTypeDef( spTypeDef& td ); | |
59734eb5 | 288 | virtual void VisitPreprocessorLine( spPreprocessorLine& pd ); |
cecfc5e7 VZ |
289 | virtual void VisitAttribute( spAttribute& attr ); |
290 | virtual void VisitOperation( spOperation& op ); | |
291 | virtual void VisitParameter( spParameter& param ); | |
292 | ||
293 | void EndVisit(); | |
294 | ||
d12e3536 VZ |
295 | // get our `ignore' object |
296 | IgnoreNamesHandler& GetIgnoreHandler() { return m_ignoreNames; } | |
297 | ||
cecfc5e7 VZ |
298 | // shut up g++ warning (ain't it stupid?) |
299 | virtual ~HelpGenVisitor() { } | |
300 | ||
301 | protected: | |
302 | // (re)initialize the state | |
303 | void Reset(); | |
304 | ||
305 | // insert documentation for enums/typedefs coming immediately before the | |
306 | // class declaration into the class documentation | |
307 | void InsertTypedefDocs(); | |
308 | void InsertEnumDocs(); | |
309 | ||
310 | // write the headers for corresponding sections (only once) | |
311 | void InsertDataStructuresHeader(); | |
312 | void InsertMethodsHeader(); | |
59734eb5 | 313 | |
cecfc5e7 VZ |
314 | // terminate the function documentation if it was started |
315 | void CloseFunction(); | |
316 | ||
d8b6f4d9 VZ |
317 | // write out all function docs when there are no more left in this class |
318 | // after sorting them in alphabetical order | |
319 | void CloseClass(); | |
320 | ||
d12e3536 VZ |
321 | wxString m_directoryOut, // directory for the output |
322 | m_fileHeader; // name of the .h file we parse | |
323 | bool m_overwrite; // overwrite existing files? | |
59734eb5 | 324 | wxTeXFile m_file; // file we're writing to now |
cecfc5e7 VZ |
325 | |
326 | // state variables | |
8ad74db3 | 327 | bool m_inClass, // true after file successfully opened |
cecfc5e7 VZ |
328 | m_inTypesSection, // enums & typedefs go there |
329 | m_inMethodSection, // functions go here | |
d8b6f4d9 VZ |
330 | m_isFirstParam; // first parameter of current function? |
331 | ||
332 | // non empty while parsing a class | |
333 | wxString m_classname; | |
334 | ||
335 | // these are only non-empty while parsing a method: | |
336 | wxString m_funcName, // the function name | |
337 | m_textFunc; // the function doc text | |
338 | ||
339 | // the array containing the documentation entries for the functions in the | |
340 | // class currently being parsed | |
341 | FunctionDocEntries m_arrayFuncDocs; | |
cecfc5e7 VZ |
342 | |
343 | // holders for "saved" documentation | |
a7adaeda | 344 | wxString m_textStoredTypedefs, |
cecfc5e7 | 345 | m_textStoredFunctionComment; |
ed38ec7e | 346 | |
a7adaeda VZ |
347 | // for enums we have to use an array as we can't intermix the normal text |
348 | // and the text inside verbatim environment | |
349 | wxArrayString m_storedEnums, | |
350 | m_storedEnumsVerb; | |
351 | ||
59734eb5 | 352 | // headers included by this file |
ed38ec7e | 353 | wxArrayString m_headers; |
59734eb5 | 354 | |
d12e3536 VZ |
355 | // ignore handler: tells us which classes to ignore for doc generation |
356 | // purposes | |
357 | IgnoreNamesHandler m_ignoreNames; | |
358 | ||
59734eb5 VZ |
359 | private: |
360 | HelpGenVisitor(const HelpGenVisitor&); | |
361 | HelpGenVisitor& operator=(const HelpGenVisitor&); | |
cecfc5e7 VZ |
362 | }; |
363 | ||
5f7cf62f VZ |
364 | // documentation manager - a class which parses TeX files and remembers the |
365 | // functions documented in them and can later compare them with all functions | |
366 | // found under ctxTop by C++ parser | |
367 | class DocManager | |
368 | { | |
369 | public: | |
d12e3536 | 370 | DocManager(bool checkParamNames); |
5f7cf62f VZ |
371 | ~DocManager(); |
372 | ||
8ad74db3 | 373 | // returns false on failure |
5f7cf62f VZ |
374 | bool ParseTeXFile(const wxString& filename); |
375 | ||
8ad74db3 | 376 | // returns false if there were any differences |
5f7cf62f VZ |
377 | bool DumpDifferences(spContext *ctxTop) const; |
378 | ||
d12e3536 VZ |
379 | // get our `ignore' object |
380 | IgnoreNamesHandler& GetIgnoreHandler() { return m_ignoreNames; } | |
381 | ||
5f7cf62f VZ |
382 | protected: |
383 | // parsing TeX files | |
384 | // ----------------- | |
385 | ||
386 | // returns the length of 'match' if the string 'str' starts with it or 0 | |
387 | // otherwise | |
1d0d1540 | 388 | static size_t TryMatch(const wxChar *str, const wxChar *match); |
5f7cf62f VZ |
389 | |
390 | // skip spaces: returns pointer to first non space character (also | |
391 | // updates the value of m_line) | |
392 | const char *SkipSpaces(const char *p) | |
393 | { | |
394 | while ( isspace(*p) ) { | |
395 | if ( *p++ == '\n' ) | |
396 | m_line++; | |
397 | } | |
398 | ||
399 | return p; | |
400 | } | |
401 | ||
402 | // skips characters until the next 'c' in '*pp' unless it ends before in | |
8ad74db3 | 403 | // which case false is returned and pp points to '\0', otherwise true is |
5f7cf62f VZ |
404 | // returned and pp points to 'c' |
405 | bool SkipUntil(const char **pp, char c); | |
406 | ||
407 | // the same as SkipUntil() but only spaces are skipped: on first non space | |
8ad74db3 | 408 | // character different from 'c' the function stops and returns false |
5f7cf62f VZ |
409 | bool SkipSpaceUntil(const char **pp, char c); |
410 | ||
411 | // extract the string between {} and modify '*pp' to point at the | |
412 | // character immediately after the closing '}'. The returned string is empty | |
413 | // on error. | |
414 | wxString ExtractStringBetweenBraces(const char **pp); | |
415 | ||
416 | // the current file and line while we're in ParseTeXFile (for error | |
417 | // messages) | |
418 | wxString m_filename; | |
419 | size_t m_line; | |
420 | ||
421 | // functions and classes to ignore during diff | |
422 | // ------------------------------------------- | |
5f7cf62f | 423 | |
d12e3536 | 424 | IgnoreNamesHandler m_ignoreNames; |
5f7cf62f VZ |
425 | |
426 | // information about all functions documented in the TeX file(s) | |
427 | // ------------------------------------------------------------- | |
428 | ||
3f378995 MW |
429 | public: // Note: Sun C++ 5.5 requires TypeInfo and ParamInfo to be public |
430 | ||
5f7cf62f VZ |
431 | // info about a type: for now stored as text string, but must be parsed |
432 | // further later (to know that "char *" == "char []" - TODO) | |
433 | class TypeInfo | |
434 | { | |
435 | public: | |
436 | TypeInfo(const wxString& type) : m_type(type) { } | |
437 | ||
438 | bool operator==(const wxString& type) const { return m_type == type; } | |
439 | bool operator!=(const wxString& type) const { return m_type != type; } | |
440 | ||
441 | const wxString& GetName() const { return m_type; } | |
442 | ||
443 | private: | |
444 | wxString m_type; | |
445 | }; | |
446 | ||
c58cff9a MB |
447 | friend class ParamInfo; // for access to TypeInfo |
448 | ||
5f7cf62f VZ |
449 | // info abotu a function parameter |
450 | class ParamInfo | |
451 | { | |
452 | public: | |
453 | ParamInfo(const wxString& type, | |
454 | const wxString& name, | |
455 | const wxString& value) | |
456 | : m_type(type), m_name(name), m_value(value) | |
457 | { | |
458 | } | |
459 | ||
460 | const TypeInfo& GetType() const { return m_type; } | |
461 | const wxString& GetName() const { return m_name; } | |
462 | const wxString& GetDefValue() const { return m_value; } | |
463 | ||
464 | private: | |
465 | TypeInfo m_type; // type of parameter | |
466 | wxString m_name; // name | |
467 | wxString m_value; // default value | |
468 | }; | |
469 | ||
c58cff9a | 470 | public: // FIXME: macro requires it |
8ad74db3 | 471 | WX_DEFINE_ARRAY_PTR(ParamInfo *, ArrayParamInfo); |
5f7cf62f VZ |
472 | |
473 | // info about a function | |
474 | struct MethodInfo | |
475 | { | |
476 | public: | |
477 | enum MethodFlags | |
478 | { | |
479 | Const = 0x0001, | |
480 | Virtual = 0x0002, | |
481 | Pure = 0x0004, | |
482 | Static = 0x0008, | |
483 | Vararg = 0x0010 | |
484 | }; | |
485 | ||
486 | MethodInfo(const wxString& type, | |
487 | const wxString& name, | |
488 | const ArrayParamInfo& params) | |
489 | : m_typeRet(type), m_name(name), m_params(params) | |
490 | { | |
491 | m_flags = 0; | |
492 | } | |
493 | ||
494 | void SetFlag(MethodFlags flag) { m_flags |= flag; } | |
495 | ||
496 | const TypeInfo& GetType() const { return m_typeRet; } | |
497 | const wxString& GetName() const { return m_name; } | |
498 | const ParamInfo& GetParam(size_t n) const { return *(m_params[n]); } | |
499 | size_t GetParamCount() const { return m_params.GetCount(); } | |
500 | ||
501 | bool HasFlag(MethodFlags flag) const { return (m_flags & flag) != 0; } | |
502 | ||
503 | ~MethodInfo() { WX_CLEAR_ARRAY(m_params); } | |
504 | ||
505 | private: | |
506 | TypeInfo m_typeRet; // return type | |
507 | wxString m_name; | |
508 | int m_flags; // bit mask of the value from the enum above | |
509 | ||
510 | ArrayParamInfo m_params; | |
511 | }; | |
512 | ||
8ad74db3 WS |
513 | WX_DEFINE_ARRAY_PTR(MethodInfo *, ArrayMethodInfo); |
514 | WX_DEFINE_ARRAY_PTR(ArrayMethodInfo *, ArrayMethodInfos); | |
5f7cf62f | 515 | |
c58cff9a | 516 | private: |
5f7cf62f VZ |
517 | // first array contains the names of all classes we found, the second has a |
518 | // pointer to the array of methods of the given class at the same index as | |
519 | // the class name appears in m_classes | |
520 | wxArrayString m_classes; | |
521 | ArrayMethodInfos m_methods; | |
d12e3536 VZ |
522 | |
523 | // are we checking parameter names? | |
524 | bool m_checkParamNames; | |
525 | ||
526 | private: | |
527 | DocManager(const DocManager&); | |
528 | DocManager& operator=(const DocManager&); | |
5f7cf62f VZ |
529 | }; |
530 | ||
cecfc5e7 VZ |
531 | // ============================================================================= |
532 | // implementation | |
533 | // ============================================================================= | |
534 | ||
cd0b9157 VZ |
535 | static char **g_argv = NULL; |
536 | ||
ed38ec7e VZ |
537 | // this function never returns |
538 | static void usage() | |
539 | { | |
cd0b9157 | 540 | wxString prog = g_argv[0]; |
f6bcfd97 | 541 | wxString basename = prog.AfterLast('/'); |
5f7cf62f VZ |
542 | #ifdef __WXMSW__ |
543 | if ( !basename ) | |
f6bcfd97 | 544 | basename = prog.AfterLast('\\'); |
5f7cf62f VZ |
545 | #endif |
546 | if ( !basename ) | |
547 | basename = prog; | |
548 | ||
a7adaeda | 549 | wxLogMessage( |
5f7cf62f VZ |
550 | "usage: %s [global options] <mode> [mode options] <files...>\n" |
551 | "\n" | |
552 | " where global options are:\n" | |
553 | " -q be quiet\n" | |
554 | " -v be verbose\n" | |
555 | " -H give this usage message\n" | |
556 | " -V print the version info\n" | |
d12e3536 | 557 | " -i file file with classes/function to ignore\n" |
5f7cf62f VZ |
558 | "\n" |
559 | " where mode is one of: dump, diff\n" | |
560 | "\n" | |
561 | " dump means generate .tex files for TeX2RTF converter from specified\n" | |
562 | " headers files, mode options are:\n" | |
d12e3536 | 563 | " -f overwrite existing files\n" |
5f7cf62f VZ |
564 | " -o outdir directory for generated files\n" |
565 | "\n" | |
566 | " diff means compare the set of methods documented .tex file with the\n" | |
567 | " methods declared in the header:\n" | |
568 | " %s diff <file.h> <files.tex...>.\n" | |
d12e3536 VZ |
569 | " mode specific options are:\n" |
570 | " -p do check parameter names (not done by default)\n" | |
5f7cf62f | 571 | "\n", basename.c_str(), basename.c_str()); |
a7adaeda | 572 | |
ed38ec7e VZ |
573 | exit(1); |
574 | } | |
575 | ||
d5eddfef | 576 | int main(int argc, char **argv) |
cecfc5e7 | 577 | { |
cd0b9157 VZ |
578 | g_argv = argv; |
579 | ||
d5eddfef VZ |
580 | wxInitializer initializer; |
581 | if ( !initializer ) | |
582 | { | |
be5a51fb | 583 | fprintf(stderr, "Failed to initialize the wxWidgets library, aborting."); |
d5eddfef VZ |
584 | |
585 | return -1; | |
586 | } | |
587 | ||
5f7cf62f VZ |
588 | enum |
589 | { | |
590 | Mode_None, | |
591 | Mode_Dump, | |
592 | Mode_Diff | |
593 | } mode = Mode_None; | |
594 | ||
cecfc5e7 | 595 | if ( argc < 2 ) { |
ed38ec7e | 596 | usage(); |
cecfc5e7 VZ |
597 | } |
598 | ||
5f7cf62f | 599 | wxArrayString filesH, filesTeX; |
d12e3536 VZ |
600 | wxString directoryOut, // directory for 'dmup' output |
601 | ignoreFile; // file with classes/functions to ignore | |
8ad74db3 WS |
602 | bool overwrite = false, // overwrite existing files during 'dump'? |
603 | paramNames = false; // check param names during 'diff'? | |
59734eb5 | 604 | |
5f7cf62f | 605 | for ( int current = 1; current < argc ; current++ ) { |
59734eb5 | 606 | // all options have one letter |
5f7cf62f VZ |
607 | if ( argv[current][0] == '-' ) { |
608 | if ( argv[current][2] == '\0' ) { | |
609 | switch ( argv[current][1] ) { | |
610 | case 'v': | |
611 | // be verbose | |
612 | wxLog::GetActiveTarget()->SetVerbose(); | |
613 | continue; | |
614 | ||
615 | case 'q': | |
616 | // be quiet | |
8ad74db3 | 617 | wxLog::GetActiveTarget()->SetVerbose(false); |
5f7cf62f VZ |
618 | continue; |
619 | ||
620 | case 'H': | |
621 | // help requested | |
622 | usage(); | |
a7adaeda VZ |
623 | // doesn't return |
624 | ||
625 | case 'V': | |
626 | // version requested | |
627 | wxLogMessage("HelpGen version %s\n" | |
628 | "(c) 1999-2001 Vadim Zeitlin\n", | |
2f919f99 | 629 | GetVersionString().c_str()); |
a7adaeda | 630 | return 0; |
5f7cf62f VZ |
631 | |
632 | case 'i': | |
d12e3536 VZ |
633 | current++; |
634 | if ( current >= argc ) { | |
635 | wxLogError("-i option requires an argument."); | |
636 | ||
637 | break; | |
638 | } | |
639 | ||
640 | ignoreFile = argv[current]; | |
641 | continue; | |
642 | ||
643 | case 'p': | |
5f7cf62f | 644 | if ( mode != Mode_Diff ) { |
d12e3536 | 645 | wxLogError("-p is only valid with diff."); |
5f7cf62f VZ |
646 | |
647 | break; | |
648 | } | |
59734eb5 | 649 | |
8ad74db3 | 650 | paramNames = true; |
d12e3536 VZ |
651 | continue; |
652 | ||
653 | case 'f': | |
654 | if ( mode != Mode_Dump ) { | |
655 | wxLogError("-f is only valid with dump."); | |
59734eb5 | 656 | |
5f7cf62f VZ |
657 | break; |
658 | } | |
59734eb5 | 659 | |
8ad74db3 | 660 | overwrite = true; |
5f7cf62f VZ |
661 | continue; |
662 | ||
663 | case 'o': | |
664 | if ( mode != Mode_Dump ) { | |
665 | wxLogError("-o is only valid with dump."); | |
666 | ||
667 | break; | |
668 | } | |
669 | ||
670 | current++; | |
671 | if ( current >= argc ) { | |
672 | wxLogError("-o option requires an argument."); | |
673 | ||
674 | break; | |
675 | } | |
59734eb5 | 676 | |
5f7cf62f | 677 | directoryOut = argv[current]; |
8bc17f14 | 678 | if ( !directoryOut.empty() ) { |
5f7cf62f VZ |
679 | // terminate with a '/' if it doesn't have it |
680 | switch ( directoryOut.Last() ) { | |
681 | case '/': | |
59734eb5 | 682 | #ifdef __WXMSW__ |
5f7cf62f | 683 | case '\\': |
59734eb5 | 684 | #endif |
5f7cf62f | 685 | break; |
ed38ec7e | 686 | |
5f7cf62f VZ |
687 | default: |
688 | directoryOut += '/'; | |
689 | } | |
59734eb5 | 690 | } |
5f7cf62f | 691 | //else: it's empty, do nothing |
59734eb5 | 692 | |
5f7cf62f | 693 | continue; |
ed38ec7e | 694 | |
5f7cf62f | 695 | default: |
d12e3536 | 696 | wxLogError("unknown option '%s'", argv[current]); |
5f7cf62f VZ |
697 | break; |
698 | } | |
59734eb5 | 699 | } |
d12e3536 VZ |
700 | else { |
701 | wxLogError("only one letter options are allowed, not '%s'.", | |
702 | argv[current]); | |
703 | } | |
59734eb5 | 704 | |
5f7cf62f | 705 | // only get here after a break from switch or from else branch of if |
59734eb5 | 706 | |
5f7cf62f VZ |
707 | usage(); |
708 | } | |
709 | else { | |
710 | if ( mode == Mode_None ) { | |
711 | if ( strcmp(argv[current], "diff") == 0 ) | |
712 | mode = Mode_Diff; | |
713 | else if ( strcmp(argv[current], "dump") == 0 ) | |
714 | mode = Mode_Dump; | |
715 | else { | |
d12e3536 | 716 | wxLogError("unknown mode '%s'.", argv[current]); |
5f7cf62f VZ |
717 | |
718 | usage(); | |
719 | } | |
720 | } | |
721 | else { | |
722 | if ( mode == Mode_Dump || filesH.IsEmpty() ) { | |
723 | filesH.Add(argv[current]); | |
724 | } | |
725 | else { | |
726 | // 2nd files and further are TeX files in diff mode | |
727 | wxASSERT( mode == Mode_Diff ); | |
728 | ||
729 | filesTeX.Add(argv[current]); | |
730 | } | |
731 | } | |
732 | } | |
ed38ec7e | 733 | } |
cecfc5e7 VZ |
734 | |
735 | // create a parser object and a visitor derivation | |
736 | CJSourceParser parser; | |
d12e3536 | 737 | HelpGenVisitor visitor(directoryOut, overwrite); |
8bc17f14 | 738 | if ( !ignoreFile.empty() && mode == Mode_Dump ) |
d12e3536 VZ |
739 | visitor.GetIgnoreHandler().AddNamesFromFile(ignoreFile); |
740 | ||
5f7cf62f | 741 | spContext *ctxTop = NULL; |
cecfc5e7 | 742 | |
5f7cf62f VZ |
743 | // parse all header files |
744 | size_t nFiles = filesH.GetCount(); | |
745 | for ( size_t n = 0; n < nFiles; n++ ) { | |
746 | wxString header = filesH[n]; | |
747 | ctxTop = parser.ParseFile(header); | |
cecfc5e7 | 748 | if ( !ctxTop ) { |
5f7cf62f VZ |
749 | wxLogWarning("Header file '%s' couldn't be processed.", |
750 | header.c_str()); | |
cecfc5e7 | 751 | } |
5f7cf62f VZ |
752 | else if ( mode == Mode_Dump ) { |
753 | ((spFile *)ctxTop)->mFileName = header; | |
cecfc5e7 VZ |
754 | visitor.VisitAll(*ctxTop); |
755 | visitor.EndVisit(); | |
756 | } | |
d12e3536 VZ |
757 | |
758 | #ifdef __WXDEBUG__ | |
759 | if ( 0 && ctxTop ) | |
760 | ctxTop->Dump(""); | |
761 | #endif // __WXDEBUG__ | |
cecfc5e7 VZ |
762 | } |
763 | ||
5f7cf62f VZ |
764 | // parse all TeX files |
765 | if ( mode == Mode_Diff ) { | |
766 | if ( !ctxTop ) { | |
767 | wxLogError("Can't complete diff."); | |
768 | ||
769 | // failure | |
8ad74db3 | 770 | return false; |
5f7cf62f VZ |
771 | } |
772 | ||
d12e3536 | 773 | DocManager docman(paramNames); |
5f7cf62f VZ |
774 | |
775 | size_t nFiles = filesTeX.GetCount(); | |
776 | for ( size_t n = 0; n < nFiles; n++ ) { | |
777 | wxString file = filesTeX[n]; | |
778 | if ( !docman.ParseTeXFile(file) ) { | |
779 | wxLogWarning("TeX file '%s' couldn't be processed.", | |
780 | file.c_str()); | |
781 | } | |
782 | } | |
783 | ||
8bc17f14 | 784 | if ( !ignoreFile.empty() ) |
d12e3536 | 785 | docman.GetIgnoreHandler().AddNamesFromFile(ignoreFile); |
5f7cf62f VZ |
786 | |
787 | docman.DumpDifferences(ctxTop); | |
788 | } | |
789 | ||
a7adaeda | 790 | return 0; |
cecfc5e7 VZ |
791 | } |
792 | ||
793 | // ----------------------------------------------------------------------------- | |
794 | // HelpGenVisitor implementation | |
795 | // ----------------------------------------------------------------------------- | |
796 | ||
d12e3536 VZ |
797 | HelpGenVisitor::HelpGenVisitor(const wxString& directoryOut, |
798 | bool overwrite) | |
799 | : m_directoryOut(directoryOut) | |
800 | { | |
801 | m_overwrite = overwrite; | |
802 | ||
803 | Reset(); | |
804 | } | |
805 | ||
cecfc5e7 VZ |
806 | void HelpGenVisitor::Reset() |
807 | { | |
808 | m_inClass = | |
cecfc5e7 | 809 | m_inTypesSection = |
8ad74db3 | 810 | m_inMethodSection = false; |
ed38ec7e | 811 | |
d8b6f4d9 VZ |
812 | m_classname = |
813 | m_funcName = | |
814 | m_textFunc = | |
ed38ec7e | 815 | m_textStoredTypedefs = |
ed38ec7e | 816 | m_textStoredFunctionComment = ""; |
a7adaeda | 817 | |
d8b6f4d9 VZ |
818 | m_arrayFuncDocs.Empty(); |
819 | ||
a7adaeda VZ |
820 | m_storedEnums.Empty(); |
821 | m_storedEnumsVerb.Empty(); | |
ed38ec7e | 822 | m_headers.Empty(); |
cecfc5e7 VZ |
823 | } |
824 | ||
825 | void HelpGenVisitor::InsertTypedefDocs() | |
826 | { | |
827 | m_file.WriteTeX(m_textStoredTypedefs); | |
828 | m_textStoredTypedefs.Empty(); | |
829 | } | |
830 | ||
831 | void HelpGenVisitor::InsertEnumDocs() | |
832 | { | |
a7adaeda VZ |
833 | size_t count = m_storedEnums.GetCount(); |
834 | for ( size_t n = 0; n < count; n++ ) | |
835 | { | |
836 | m_file.WriteTeX(m_storedEnums[n]); | |
837 | m_file.WriteVerbatim(m_storedEnumsVerb[n] + '\n'); | |
838 | } | |
839 | ||
840 | m_storedEnums.Empty(); | |
841 | m_storedEnumsVerb.Empty(); | |
cecfc5e7 VZ |
842 | } |
843 | ||
844 | void HelpGenVisitor::InsertDataStructuresHeader() | |
845 | { | |
846 | if ( !m_inTypesSection ) { | |
8ad74db3 | 847 | m_inTypesSection = true; |
cecfc5e7 | 848 | |
d8b6f4d9 | 849 | m_file.WriteVerbatim("\\wxheading{Data structures}\n\n"); |
cecfc5e7 VZ |
850 | } |
851 | } | |
852 | ||
853 | void HelpGenVisitor::InsertMethodsHeader() | |
854 | { | |
855 | if ( !m_inMethodSection ) { | |
8ad74db3 | 856 | m_inMethodSection = true; |
cecfc5e7 | 857 | |
d8b6f4d9 | 858 | m_file.WriteVerbatim( "\\latexignore{\\rtfignore{\\wxheading{Members}}}\n\n"); |
cecfc5e7 VZ |
859 | } |
860 | } | |
861 | ||
862 | void HelpGenVisitor::CloseFunction() | |
863 | { | |
d8b6f4d9 | 864 | if ( !m_funcName.empty() ) { |
cecfc5e7 VZ |
865 | if ( m_isFirstParam ) { |
866 | // no params found | |
d8b6f4d9 VZ |
867 | m_textFunc << "\\void"; |
868 | } | |
869 | ||
870 | m_textFunc << "}\n\n"; | |
871 | ||
8bc17f14 | 872 | if ( !m_textStoredFunctionComment.empty() ) { |
d8b6f4d9 | 873 | m_textFunc << m_textStoredFunctionComment << '\n'; |
cecfc5e7 VZ |
874 | } |
875 | ||
d8b6f4d9 | 876 | m_arrayFuncDocs.Add(new FunctionDocEntry(m_funcName, m_textFunc)); |
cecfc5e7 | 877 | |
d8b6f4d9 VZ |
878 | m_funcName.clear(); |
879 | } | |
880 | } | |
881 | ||
882 | void HelpGenVisitor::CloseClass() | |
883 | { | |
8ad74db3 | 884 | CloseFunction(); |
df6e7577 | 885 | |
254a2129 | 886 | if ( m_inClass ) |
8ad74db3 | 887 | { |
d8b6f4d9 | 888 | size_t count = m_arrayFuncDocs.GetCount(); |
254a2129 | 889 | if ( count ) |
8ad74db3 WS |
890 | { |
891 | size_t n; | |
d8b6f4d9 | 892 | FunctionDocEntry::classname = m_classname; |
df6e7577 | 893 | |
d8b6f4d9 VZ |
894 | m_arrayFuncDocs.Sort(FunctionDocEntry::Compare); |
895 | ||
8ad74db3 WS |
896 | // Now examine each first line and if it's been seen, cut it |
897 | // off (it's a duplicate \membersection) | |
898 | wxHashTable membersections(wxKEY_STRING); | |
df6e7577 JS |
899 | |
900 | for ( n = 0; n < count; n++ ) | |
8ad74db3 | 901 | { |
df6e7577 JS |
902 | wxString section(m_arrayFuncDocs[n].text); |
903 | ||
8ad74db3 WS |
904 | // Strip leading whitespace |
905 | int pos = section.Find("\\membersection"); | |
906 | if (pos > -1) | |
907 | { | |
908 | section = section.Mid(pos); | |
909 | } | |
910 | ||
911 | wxString ms(section.BeforeFirst(wxT('\n'))); | |
912 | if (membersections.Get(ms)) | |
913 | { | |
914 | m_arrayFuncDocs[n].text = section.AfterFirst(wxT('\n')); | |
915 | } | |
916 | else | |
917 | { | |
e48f6880 | 918 | membersections.Put(ms.c_str(), & membersections); |
8ad74db3 | 919 | } |
df6e7577 JS |
920 | } |
921 | ||
922 | for ( n = 0; n < count; n++ ) { | |
d8b6f4d9 VZ |
923 | m_file.WriteTeX(m_arrayFuncDocs[n].text); |
924 | } | |
925 | ||
926 | m_arrayFuncDocs.Empty(); | |
927 | } | |
928 | ||
8ad74db3 | 929 | m_inClass = false; |
d8b6f4d9 | 930 | m_classname.clear(); |
cecfc5e7 | 931 | } |
8ad74db3 | 932 | m_file.FlushAll(); |
cecfc5e7 VZ |
933 | } |
934 | ||
935 | void HelpGenVisitor::EndVisit() | |
936 | { | |
937 | CloseFunction(); | |
ed38ec7e | 938 | |
d8b6f4d9 VZ |
939 | CloseClass(); |
940 | ||
d12e3536 VZ |
941 | m_fileHeader.Empty(); |
942 | ||
d8b6f4d9 | 943 | m_file.FlushAll(); |
8ad74db3 WS |
944 | if (m_file.IsOpened()) |
945 | { | |
946 | m_file.Flush(); | |
947 | m_file.Close(); | |
948 | } | |
d8b6f4d9 | 949 | |
5f7cf62f | 950 | wxLogVerbose("%s: finished generating for the current file.", |
1d0d1540 | 951 | GetCurrentTimeFormatted("%H:%M:%S")); |
cecfc5e7 VZ |
952 | } |
953 | ||
954 | void HelpGenVisitor::VisitFile( spFile& file ) | |
955 | { | |
d12e3536 | 956 | m_fileHeader = file.mFileName; |
5f7cf62f | 957 | wxLogVerbose("%s: started generating docs for classes from file '%s'...", |
1d0d1540 | 958 | GetCurrentTimeFormatted("%H:%M:%S"), m_fileHeader.c_str()); |
cecfc5e7 VZ |
959 | } |
960 | ||
961 | void HelpGenVisitor::VisitClass( spClass& cl ) | |
962 | { | |
d8b6f4d9 | 963 | CloseClass(); |
d12e3536 | 964 | |
8ad74db3 WS |
965 | if (m_file.IsOpened()) |
966 | { | |
967 | m_file.Flush(); | |
968 | m_file.Close(); | |
969 | } | |
3689307f | 970 | |
cecfc5e7 VZ |
971 | wxString name = cl.GetName(); |
972 | ||
d12e3536 VZ |
973 | if ( m_ignoreNames.IgnoreClass(name) ) { |
974 | wxLogVerbose("Skipping ignored class '%s'.", name.c_str()); | |
975 | ||
976 | return; | |
977 | } | |
978 | ||
cecfc5e7 VZ |
979 | // the file name is built from the class name by removing the leading "wx" |
980 | // if any and converting it to the lower case | |
f6bcfd97 | 981 | wxString filename; |
59734eb5 VZ |
982 | if ( name(0, 2) == "wx" ) { |
983 | filename << name.c_str() + 2; | |
984 | } | |
985 | else { | |
986 | filename << name; | |
cecfc5e7 VZ |
987 | } |
988 | ||
989 | filename.MakeLower(); | |
990 | filename += ".tex"; | |
f6bcfd97 | 991 | filename.Prepend(m_directoryOut); |
cecfc5e7 | 992 | |
d12e3536 VZ |
993 | if ( !m_overwrite && wxFile::Exists(filename) ) { |
994 | wxLogError("Won't overwrite existing file '%s' - please use '-f'.", | |
5f7cf62f VZ |
995 | filename.c_str()); |
996 | ||
5f7cf62f VZ |
997 | return; |
998 | } | |
999 | ||
cecfc5e7 VZ |
1000 | m_inClass = m_file.Open(filename, wxFile::write); |
1001 | if ( !m_inClass ) { | |
1002 | wxLogError("Can't generate documentation for the class '%s'.", | |
1003 | name.c_str()); | |
1004 | ||
1005 | return; | |
1006 | } | |
1007 | ||
1008 | m_inMethodSection = | |
8ad74db3 | 1009 | m_inTypesSection = false; |
cecfc5e7 VZ |
1010 | |
1011 | wxLogInfo("Created new file '%s' for class '%s'.", | |
1012 | filename.c_str(), name.c_str()); | |
1013 | ||
a7adaeda VZ |
1014 | // write out the header |
1015 | wxString header; | |
1016 | header.Printf("%%\n" | |
1017 | "%% automatically generated by HelpGen %s from\n" | |
1018 | "%% %s at %s\n" | |
1019 | "%%\n" | |
1020 | "\n" | |
1021 | "\n" | |
1022 | "\\section{\\class{%s}}\\label{%s}\n\n", | |
2f919f99 | 1023 | GetVersionString().c_str(), |
a7adaeda | 1024 | m_fileHeader.c_str(), |
1d0d1540 | 1025 | GetCurrentTimeFormatted("%d/%b/%y %H:%M:%S"), |
a7adaeda VZ |
1026 | name.c_str(), |
1027 | wxString(name).MakeLower().c_str()); | |
1028 | ||
d8b6f4d9 | 1029 | m_file.WriteVerbatim(header); |
a7adaeda | 1030 | |
cecfc5e7 VZ |
1031 | // the entire text we're writing to file |
1032 | wxString totalText; | |
1033 | ||
ed38ec7e VZ |
1034 | // if the header includes other headers they must be related to it... try to |
1035 | // automatically generate the "See also" clause | |
1036 | if ( !m_headers.IsEmpty() ) { | |
be5a51fb | 1037 | // correspondence between wxWidgets headers and class names |
ed38ec7e VZ |
1038 | static const char *headers[] = { |
1039 | "object", | |
1040 | "defs", | |
1041 | "string", | |
1042 | "dynarray", | |
59734eb5 | 1043 | "file", |
ed38ec7e VZ |
1044 | "time", |
1045 | }; | |
1046 | ||
1047 | // NULL here means not to insert anything in "See also" for the | |
1048 | // corresponding header | |
1049 | static const char *classes[] = { | |
1050 | NULL, | |
1051 | NULL, | |
1052 | NULL, | |
1053 | NULL, | |
1054 | "wxFile", | |
1055 | "wxTime", | |
1056 | }; | |
1057 | ||
1058 | wxASSERT_MSG( WXSIZEOF(headers) == WXSIZEOF(classes), | |
1059 | "arrays must be in sync!" ); | |
1060 | ||
1061 | wxArrayInt interestingClasses; | |
1062 | ||
1063 | size_t count = m_headers.Count(), index; | |
1064 | for ( size_t n = 0; n < count; n++ ) { | |
1065 | wxString baseHeaderName = m_headers[n].Before('.'); | |
1066 | if ( baseHeaderName(0, 3) != "wx/" ) | |
1067 | continue; | |
1068 | ||
1069 | baseHeaderName.erase(0, 3); | |
1070 | for ( index = 0; index < WXSIZEOF(headers); index++ ) { | |
1071 | if ( Stricmp(baseHeaderName, headers[index]) == 0 ) | |
1072 | break; | |
1073 | } | |
1074 | ||
1075 | if ( (index < WXSIZEOF(headers)) && classes[index] ) { | |
1076 | // interesting header | |
1077 | interestingClasses.Add(index); | |
1078 | } | |
1079 | } | |
1080 | ||
1081 | if ( !interestingClasses.IsEmpty() ) { | |
1082 | // do generate "See also" clause | |
1083 | totalText << "\\wxheading{See also:}\n\n"; | |
1084 | ||
1085 | count = interestingClasses.Count(); | |
1086 | for ( index = 0; index < count; index++ ) { | |
1087 | if ( index > 0 ) | |
1088 | totalText << ", "; | |
1089 | ||
1090 | totalText << MakeHelpref(classes[interestingClasses[index]]); | |
1091 | } | |
1092 | ||
1093 | totalText << "\n\n"; | |
1094 | } | |
1095 | } | |
1096 | ||
cecfc5e7 VZ |
1097 | // the comment before the class generally explains what is it for so put it |
1098 | // in place of the class description | |
1099 | if ( cl.HasComments() ) { | |
ed38ec7e | 1100 | wxString comment = GetAllComments(cl); |
cecfc5e7 VZ |
1101 | |
1102 | totalText << '\n' << comment << '\n'; | |
1103 | } | |
1104 | ||
1105 | // derived from section | |
1106 | wxString derived = "\\wxheading{Derived from}\n\n"; | |
1107 | ||
1108 | const StrListT& baseClasses = cl.mSuperClassNames; | |
1109 | if ( baseClasses.size() == 0 ) { | |
1110 | derived << "No base class"; | |
1111 | } | |
1112 | else { | |
8ad74db3 | 1113 | bool first = true; |
cecfc5e7 VZ |
1114 | for ( StrListT::const_iterator i = baseClasses.begin(); |
1115 | i != baseClasses.end(); | |
1116 | i++ ) { | |
1117 | if ( !first ) { | |
1118 | // separate from the previous one | |
1119 | derived << "\\\\\n"; | |
1120 | } | |
1121 | else { | |
8ad74db3 | 1122 | first = false; |
cecfc5e7 VZ |
1123 | } |
1124 | ||
1125 | wxString baseclass = *i; | |
dface61c | 1126 | derived << "\\helpref{" << baseclass << "}"; |
59734eb5 | 1127 | derived << "{" << baseclass.MakeLower() << "}"; |
cecfc5e7 VZ |
1128 | } |
1129 | } | |
1130 | totalText << derived << "\n\n"; | |
1131 | ||
5bdad898 JS |
1132 | // include file section |
1133 | wxString includeFile = "\\wxheading{Include files}\n\n"; | |
1134 | includeFile << "<" << m_fileHeader << ">"; | |
1135 | ||
1136 | totalText << includeFile << "\n\n"; | |
1137 | ||
cecfc5e7 VZ |
1138 | // write all this to file |
1139 | m_file.WriteTeX(totalText); | |
1140 | ||
1141 | // if there were any enums/typedefs before, insert their documentation now | |
1142 | InsertDataStructuresHeader(); | |
1143 | InsertTypedefDocs(); | |
1144 | InsertEnumDocs(); | |
3689307f | 1145 | |
8ad74db3 | 1146 | //m_file.Flush(); |
cecfc5e7 VZ |
1147 | } |
1148 | ||
1149 | void HelpGenVisitor::VisitEnumeration( spEnumeration& en ) | |
1150 | { | |
1151 | CloseFunction(); | |
1152 | ||
1153 | if ( m_inMethodSection ) { | |
1154 | // FIXME that's a bug, but tell the user aboit it nevertheless... we | |
1155 | // should be smart enough to process even the enums which come after the | |
1156 | // functions | |
1157 | wxLogWarning("enum '%s' ignored, please put it before the class " | |
1158 | "methods.", en.GetName().c_str()); | |
1159 | return; | |
1160 | } | |
1161 | ||
1162 | // simply copy the enum text in the docs | |
a7adaeda VZ |
1163 | wxString enumeration = GetAllComments(en), |
1164 | enumerationVerb; | |
1165 | ||
c69a7d10 WS |
1166 | enumerationVerb << _T("\\begin{verbatim}\n") |
1167 | << en.m_EnumContent | |
1168 | << _T("\n\\end{verbatim}\n"); | |
cecfc5e7 VZ |
1169 | |
1170 | // remember for later use if we're not inside a class yet | |
1171 | if ( !m_inClass ) { | |
a7adaeda VZ |
1172 | m_storedEnums.Add(enumeration); |
1173 | m_storedEnumsVerb.Add(enumerationVerb); | |
cecfc5e7 VZ |
1174 | } |
1175 | else { | |
1176 | // write the header for this section if not done yet | |
1177 | InsertDataStructuresHeader(); | |
1178 | ||
cecfc5e7 | 1179 | m_file.WriteTeX(enumeration); |
a7adaeda | 1180 | m_file.WriteVerbatim(enumerationVerb); |
d8b6f4d9 | 1181 | m_file.WriteVerbatim('\n'); |
cecfc5e7 VZ |
1182 | } |
1183 | } | |
1184 | ||
1185 | void HelpGenVisitor::VisitTypeDef( spTypeDef& td ) | |
1186 | { | |
1187 | CloseFunction(); | |
1188 | ||
ed38ec7e VZ |
1189 | if ( m_inMethodSection ) { |
1190 | // FIXME that's a bug, but tell the user aboit it nevertheless... | |
1191 | wxLogWarning("typedef '%s' ignored, please put it before the class " | |
1192 | "methods.", td.GetName().c_str()); | |
1193 | return; | |
1194 | } | |
1195 | ||
1196 | wxString typedefdoc; | |
c69a7d10 WS |
1197 | typedefdoc << _T("{\\small \\begin{verbatim}\n") |
1198 | << _T("typedef ") << td.m_OriginalType << _T(' ') << td.GetName() | |
1199 | << _T("\n\\end{verbatim}}\n") | |
ed38ec7e VZ |
1200 | << GetAllComments(td); |
1201 | ||
1202 | // remember for later use if we're not inside a class yet | |
1203 | if ( !m_inClass ) { | |
8bc17f14 | 1204 | if ( !m_textStoredTypedefs.empty() ) { |
ed38ec7e VZ |
1205 | m_textStoredTypedefs << '\n'; |
1206 | } | |
1207 | ||
1208 | m_textStoredTypedefs << typedefdoc; | |
1209 | } | |
1210 | else { | |
1211 | // write the header for this section if not done yet | |
1212 | InsertDataStructuresHeader(); | |
1213 | ||
1214 | typedefdoc << '\n'; | |
1215 | m_file.WriteTeX(typedefdoc); | |
1216 | } | |
1217 | } | |
1218 | ||
1219 | void HelpGenVisitor::VisitPreprocessorLine( spPreprocessorLine& pd ) | |
1220 | { | |
1221 | switch ( pd.GetStatementType() ) { | |
1222 | case SP_PREP_DEF_INCLUDE_FILE: | |
1223 | m_headers.Add(pd.CPP_GetIncludedFileNeme()); | |
1224 | break; | |
1225 | ||
1226 | case SP_PREP_DEF_DEFINE_SYMBOL: | |
1227 | // TODO decide if it's a constant and document it if it is | |
1228 | break; | |
1229 | } | |
cecfc5e7 VZ |
1230 | } |
1231 | ||
1232 | void HelpGenVisitor::VisitAttribute( spAttribute& attr ) | |
1233 | { | |
1234 | CloseFunction(); | |
1235 | ||
1236 | // only document the public member variables | |
1237 | if ( !m_inClass || !attr.IsPublic() ) | |
1238 | return; | |
1239 | ||
ed38ec7e | 1240 | wxLogWarning("Ignoring member variable '%s'.", attr.GetName().c_str()); |
cecfc5e7 VZ |
1241 | } |
1242 | ||
1243 | void HelpGenVisitor::VisitOperation( spOperation& op ) | |
1244 | { | |
1245 | CloseFunction(); | |
1246 | ||
d12e3536 VZ |
1247 | if ( !m_inClass ) { |
1248 | // we don't generate docs right now - either we ignore this class | |
1249 | // entirely or we couldn't open the file | |
1250 | return; | |
1251 | } | |
1252 | ||
1253 | if ( !op.IsInClass() ) { | |
1254 | // TODO document global functions | |
cecfc5e7 VZ |
1255 | wxLogWarning("skipped global function '%s'.", op.GetName().c_str()); |
1256 | ||
1257 | return; | |
1258 | } | |
1259 | ||
1260 | if ( op.mVisibility == SP_VIS_PRIVATE ) { | |
1261 | // FIXME should we document protected functions? | |
1262 | return; | |
1263 | } | |
1264 | ||
d8b6f4d9 VZ |
1265 | m_classname = op.GetClass().GetName(); |
1266 | wxString funcname = op.GetName(); | |
1267 | ||
1268 | if ( m_ignoreNames.IgnoreMethod(m_classname, funcname) ) { | |
d12e3536 | 1269 | wxLogVerbose("Skipping ignored '%s::%s'.", |
d8b6f4d9 | 1270 | m_classname.c_str(), funcname.c_str()); |
d12e3536 VZ |
1271 | |
1272 | return; | |
1273 | } | |
1274 | ||
cecfc5e7 VZ |
1275 | InsertMethodsHeader(); |
1276 | ||
1277 | // save state info | |
d8b6f4d9 | 1278 | m_funcName = funcname; |
8ad74db3 | 1279 | m_isFirstParam = true; |
cecfc5e7 | 1280 | |
ed38ec7e | 1281 | m_textStoredFunctionComment = GetAllComments(op); |
cecfc5e7 VZ |
1282 | |
1283 | // start function documentation | |
1284 | wxString totalText; | |
59734eb5 | 1285 | |
cecfc5e7 VZ |
1286 | // check for the special case of dtor |
1287 | wxString dtor; | |
7f2e78ed | 1288 | if ( (funcname[0u] == '~') && (m_classname == funcname.c_str() + 1) ) { |
d8b6f4d9 | 1289 | dtor.Printf("\\destruct{%s}", m_classname.c_str()); |
cecfc5e7 VZ |
1290 | funcname = dtor; |
1291 | } | |
1292 | ||
8ad74db3 WS |
1293 | m_textFunc.Printf("\n" |
1294 | "\\membersection{%s::%s}\\label{%s}\n", | |
1295 | m_classname.c_str(), funcname.c_str(), | |
1296 | MakeLabel(m_classname, funcname).c_str()); | |
eb420090 | 1297 | |
8ad74db3 WS |
1298 | wxString func; |
1299 | func.Printf("\n" | |
eb420090 | 1300 | "\\%sfunc{%s%s}{%s}{", |
d8b6f4d9 VZ |
1301 | op.mIsConstant ? "const" : "", |
1302 | op.mIsVirtual ? "virtual " : "", | |
821d644d | 1303 | op.m_RetType.c_str(), |
d8b6f4d9 | 1304 | funcname.c_str()); |
8ad74db3 | 1305 | m_textFunc += func; |
cecfc5e7 VZ |
1306 | } |
1307 | ||
1308 | void HelpGenVisitor::VisitParameter( spParameter& param ) | |
1309 | { | |
d8b6f4d9 | 1310 | if ( m_funcName.empty() ) |
cecfc5e7 VZ |
1311 | return; |
1312 | ||
cecfc5e7 | 1313 | if ( m_isFirstParam ) { |
8ad74db3 | 1314 | m_isFirstParam = false; |
cecfc5e7 VZ |
1315 | } |
1316 | else { | |
d8b6f4d9 | 1317 | m_textFunc << ", "; |
cecfc5e7 | 1318 | } |
59734eb5 | 1319 | |
821d644d | 1320 | m_textFunc << "\\param{" << param.m_Type << " }{" << param.GetName(); |
cecfc5e7 | 1321 | wxString defvalue = param.mInitVal; |
8bc17f14 | 1322 | if ( !defvalue.empty() ) { |
d8b6f4d9 | 1323 | m_textFunc << " = " << defvalue; |
cecfc5e7 | 1324 | } |
59734eb5 | 1325 | |
d8b6f4d9 | 1326 | m_textFunc << '}'; |
cecfc5e7 VZ |
1327 | } |
1328 | ||
5f7cf62f VZ |
1329 | // --------------------------------------------------------------------------- |
1330 | // DocManager | |
1331 | // --------------------------------------------------------------------------- | |
1332 | ||
d12e3536 VZ |
1333 | DocManager::DocManager(bool checkParamNames) |
1334 | { | |
1335 | m_checkParamNames = checkParamNames; | |
1336 | } | |
1337 | ||
5f7cf62f VZ |
1338 | size_t DocManager::TryMatch(const char *str, const char *match) |
1339 | { | |
1340 | size_t lenMatch = 0; | |
1341 | while ( str[lenMatch] == match[lenMatch] ) { | |
1342 | lenMatch++; | |
1343 | ||
1344 | if ( match[lenMatch] == '\0' ) | |
1345 | return lenMatch; | |
1346 | } | |
1347 | ||
1348 | return 0; | |
1349 | } | |
1350 | ||
1351 | bool DocManager::SkipUntil(const char **pp, char c) | |
1352 | { | |
1353 | const char *p = *pp; | |
1354 | while ( *p != c ) { | |
1355 | if ( *p == '\0' ) | |
1356 | break; | |
1357 | ||
1358 | if ( *p == '\n' ) | |
1359 | m_line++; | |
1360 | ||
1361 | p++; | |
1362 | } | |
1363 | ||
1364 | *pp = p; | |
1365 | ||
1366 | return *p == c; | |
1367 | } | |
1368 | ||
1369 | bool DocManager::SkipSpaceUntil(const char **pp, char c) | |
1370 | { | |
1371 | const char *p = *pp; | |
1372 | while ( *p != c ) { | |
1373 | if ( !isspace(*p) || *p == '\0' ) | |
1374 | break; | |
1375 | ||
1376 | if ( *p == '\n' ) | |
1377 | m_line++; | |
1378 | ||
1379 | p++; | |
1380 | } | |
1381 | ||
1382 | *pp = p; | |
1383 | ||
1384 | return *p == c; | |
1385 | } | |
1386 | ||
1387 | wxString DocManager::ExtractStringBetweenBraces(const char **pp) | |
1388 | { | |
1389 | wxString result; | |
1390 | ||
1391 | if ( !SkipSpaceUntil(pp, '{') ) { | |
1392 | wxLogWarning("file %s(%d): '{' expected after '\\param'", | |
e48f6880 | 1393 | m_filename.c_str(), (int)m_line); |
5f7cf62f VZ |
1394 | |
1395 | } | |
1396 | else { | |
1397 | const char *startParam = ++*pp; // skip '{' | |
1398 | ||
1399 | if ( !SkipUntil(pp, '}') ) { | |
1400 | wxLogWarning("file %s(%d): '}' expected after '\\param'", | |
e48f6880 | 1401 | m_filename.c_str(), (int)m_line); |
5f7cf62f VZ |
1402 | } |
1403 | else { | |
1404 | result = wxString(startParam, (*pp)++ - startParam); | |
1405 | } | |
1406 | } | |
1407 | ||
1408 | return result; | |
1409 | } | |
1410 | ||
1411 | bool DocManager::ParseTeXFile(const wxString& filename) | |
1412 | { | |
1413 | m_filename = filename; | |
1414 | ||
1415 | wxFile file(m_filename, wxFile::read); | |
1416 | if ( !file.IsOpened() ) | |
8ad74db3 | 1417 | return false; |
5f7cf62f VZ |
1418 | |
1419 | off_t len = file.Length(); | |
1420 | if ( len == wxInvalidOffset ) | |
8ad74db3 | 1421 | return false; |
5f7cf62f VZ |
1422 | |
1423 | char *buf = new char[len + 1]; | |
1424 | buf[len] = '\0'; | |
1425 | ||
f8a586e0 | 1426 | if ( file.Read(buf, len) == wxInvalidOffset ) { |
5f7cf62f VZ |
1427 | delete [] buf; |
1428 | ||
8ad74db3 | 1429 | return false; |
5f7cf62f VZ |
1430 | } |
1431 | ||
1432 | // reinit everything | |
1433 | m_line = 1; | |
1434 | ||
1435 | wxLogVerbose("%s: starting to parse doc file '%s'.", | |
1d0d1540 | 1436 | GetCurrentTimeFormatted("%H:%M:%S"), m_filename.c_str()); |
5f7cf62f VZ |
1437 | |
1438 | // the name of the class from the last "\membersection" command: we assume | |
1439 | // that the following "\func" or "\constfunc" always documents a method of | |
be5a51fb | 1440 | // this class (and it should always be like that in wxWidgets documentation) |
5f7cf62f VZ |
1441 | wxString classname; |
1442 | ||
1443 | for ( const char *current = buf; current - buf < len; current++ ) { | |
1444 | // FIXME parsing is awfully inefficient | |
1445 | ||
1446 | if ( *current == '%' ) { | |
1447 | // comment, skip until the end of line | |
1448 | current++; | |
1449 | SkipUntil(¤t, '\n'); | |
1450 | ||
1451 | continue; | |
1452 | } | |
1453 | ||
1454 | // all the command we're interested in start with '\\' | |
1455 | while ( *current != '\\' && *current != '\0' ) { | |
1456 | if ( *current++ == '\n' ) | |
1457 | m_line++; | |
1458 | } | |
1459 | ||
1460 | if ( *current == '\0' ) { | |
1461 | // no more TeX commands left | |
1462 | break; | |
1463 | } | |
1464 | ||
1465 | current++; // skip '\\' | |
1466 | ||
1467 | enum | |
1468 | { | |
1469 | Nothing, | |
1470 | Func, | |
1471 | ConstFunc, | |
1472 | MemberSect | |
1473 | } foundCommand = Nothing; | |
1474 | ||
1475 | size_t lenMatch = TryMatch(current, "func"); | |
1476 | if ( lenMatch ) { | |
1477 | foundCommand = Func; | |
1478 | } | |
1479 | else { | |
1480 | lenMatch = TryMatch(current, "constfunc"); | |
1481 | if ( lenMatch ) | |
1482 | foundCommand = ConstFunc; | |
1483 | else { | |
1484 | lenMatch = TryMatch(current, "membersection"); | |
1485 | ||
1486 | if ( lenMatch ) | |
1487 | foundCommand = MemberSect; | |
1488 | } | |
1489 | } | |
1490 | ||
1491 | if ( foundCommand == Nothing ) | |
1492 | continue; | |
1493 | ||
1494 | current += lenMatch; | |
1495 | ||
1496 | if ( !SkipSpaceUntil(¤t, '{') ) { | |
1497 | wxLogWarning("file %s(%d): '{' expected after \\func, " | |
1498 | "\\constfunc or \\membersection.", | |
e48f6880 | 1499 | m_filename.c_str(), (int)m_line); |
5f7cf62f VZ |
1500 | |
1501 | continue; | |
1502 | } | |
1503 | ||
1504 | current++; | |
1505 | ||
1506 | if ( foundCommand == MemberSect ) { | |
1507 | // what follows has the form <classname>::<funcname> | |
1508 | const char *startClass = current; | |
1509 | if ( !SkipUntil(¤t, ':') || *(current + 1) != ':' ) { | |
1510 | wxLogWarning("file %s(%d): '::' expected after " | |
e48f6880 | 1511 | "\\membersection.", m_filename.c_str(), (int)m_line); |
5f7cf62f VZ |
1512 | } |
1513 | else { | |
1514 | classname = wxString(startClass, current - startClass); | |
1515 | TeXUnfilter(&classname); | |
1516 | } | |
1517 | ||
1518 | continue; | |
1519 | } | |
1520 | ||
1521 | // extract the return type | |
1522 | const char *startRetType = current; | |
1523 | ||
1524 | if ( !SkipUntil(¤t, '}') ) { | |
1525 | wxLogWarning("file %s(%d): '}' expected after return type", | |
e48f6880 | 1526 | m_filename.c_str(), (int)m_line); |
5f7cf62f VZ |
1527 | |
1528 | continue; | |
1529 | } | |
1530 | ||
1531 | wxString returnType = wxString(startRetType, current - startRetType); | |
1532 | TeXUnfilter(&returnType); | |
1533 | ||
1534 | current++; | |
8ad74db3 | 1535 | if ( !SkipSpaceUntil(¤t, '{') ) { |
5f7cf62f | 1536 | wxLogWarning("file %s(%d): '{' expected after return type", |
e48f6880 | 1537 | m_filename.c_str(), (int)m_line); |
5f7cf62f VZ |
1538 | |
1539 | continue; | |
1540 | } | |
1541 | ||
1542 | current++; | |
1543 | const char *funcEnd = current; | |
1544 | if ( !SkipUntil(&funcEnd, '}') ) { | |
1545 | wxLogWarning("file %s(%d): '}' expected after function name", | |
e48f6880 | 1546 | m_filename.c_str(), (int)m_line); |
5f7cf62f VZ |
1547 | |
1548 | continue; | |
1549 | } | |
1550 | ||
1551 | wxString funcName = wxString(current, funcEnd - current); | |
1552 | current = funcEnd + 1; | |
1553 | ||
1554 | // trim spaces from both sides | |
8ad74db3 WS |
1555 | funcName.Trim(false); |
1556 | funcName.Trim(true); | |
5f7cf62f VZ |
1557 | |
1558 | // special cases: '$...$' may be used for LaTeX inline math, remove the | |
1559 | // '$'s | |
1560 | if ( funcName.Find('$') != wxNOT_FOUND ) { | |
1561 | wxString name; | |
1562 | for ( const char *p = funcName.c_str(); *p != '\0'; p++ ) { | |
1563 | if ( *p != '$' && !isspace(*p) ) | |
1564 | name += *p; | |
1565 | } | |
1566 | ||
1567 | funcName = name; | |
1568 | } | |
1569 | ||
1570 | // \destruct{foo} is really ~foo | |
1571 | if ( funcName[0u] == '\\' ) { | |
1572 | size_t len = strlen("\\destruct{"); | |
1573 | if ( funcName(0, len) != "\\destruct{" ) { | |
1574 | wxLogWarning("file %s(%d): \\destruct expected", | |
e48f6880 | 1575 | m_filename.c_str(), (int)m_line); |
5f7cf62f VZ |
1576 | |
1577 | continue; | |
1578 | } | |
1579 | ||
1580 | funcName.erase(0, len); | |
1581 | funcName.Prepend('~'); | |
1582 | ||
1583 | if ( !SkipSpaceUntil(¤t, '}') ) { | |
1584 | wxLogWarning("file %s(%d): '}' expected after destructor", | |
e48f6880 | 1585 | m_filename.c_str(), (int)m_line); |
5f7cf62f VZ |
1586 | |
1587 | continue; | |
1588 | } | |
1589 | ||
1590 | funcEnd++; // there is an extra '}' to count | |
1591 | } | |
1592 | ||
1593 | TeXUnfilter(&funcName); | |
1594 | ||
1595 | // extract params | |
1596 | current = funcEnd + 1; // skip '}' | |
1597 | if ( !SkipSpaceUntil(¤t, '{') || | |
1598 | (current++, !SkipSpaceUntil(¤t, '\\')) ) { | |
1599 | wxLogWarning("file %s(%d): '\\param' or '\\void' expected", | |
e48f6880 | 1600 | m_filename.c_str(), (int)m_line); |
5f7cf62f VZ |
1601 | |
1602 | continue; | |
1603 | } | |
1604 | ||
1605 | wxArrayString paramNames, paramTypes, paramValues; | |
1606 | ||
8ad74db3 | 1607 | bool isVararg = false; |
5f7cf62f VZ |
1608 | |
1609 | current++; // skip '\\' | |
1610 | lenMatch = TryMatch(current, "void"); | |
1611 | if ( !lenMatch ) { | |
1612 | lenMatch = TryMatch(current, "param"); | |
d12e3536 | 1613 | while ( lenMatch && (current - buf < len) ) { |
5f7cf62f VZ |
1614 | current += lenMatch; |
1615 | ||
1616 | // now come {paramtype}{paramname} | |
1617 | wxString paramType = ExtractStringBetweenBraces(¤t); | |
8bc17f14 | 1618 | if ( !paramType.empty() ) { |
5f7cf62f | 1619 | wxString paramText = ExtractStringBetweenBraces(¤t); |
8bc17f14 | 1620 | if ( !paramText.empty() ) { |
5f7cf62f VZ |
1621 | // the param declaration may contain default value |
1622 | wxString paramName = paramText.BeforeFirst('='), | |
1623 | paramValue = paramText.AfterFirst('='); | |
1624 | ||
1625 | // sanitize all strings | |
1626 | TeXUnfilter(¶mValue); | |
1627 | TeXUnfilter(¶mName); | |
1628 | TeXUnfilter(¶mType); | |
1629 | ||
1630 | paramValues.Add(paramValue); | |
1631 | paramNames.Add(paramName); | |
1632 | paramTypes.Add(paramType); | |
1633 | } | |
1634 | } | |
1635 | else { | |
1636 | // vararg function? | |
1637 | wxString paramText = ExtractStringBetweenBraces(¤t); | |
1638 | if ( paramText == "..." ) { | |
8ad74db3 | 1639 | isVararg = true; |
5f7cf62f VZ |
1640 | } |
1641 | else { | |
1642 | wxLogWarning("Parameters of '%s::%s' are in " | |
1643 | "incorrect form.", | |
1644 | classname.c_str(), funcName.c_str()); | |
1645 | } | |
1646 | } | |
1647 | ||
1648 | // what's next? | |
1649 | current = SkipSpaces(current); | |
1650 | if ( *current == ',' || *current == '}' ) { | |
1651 | current = SkipSpaces(++current); | |
1652 | ||
1653 | lenMatch = TryMatch(current, "\\param"); | |
1654 | } | |
1655 | else { | |
1656 | wxLogWarning("file %s(%d): ',' or '}' expected after " | |
e48f6880 | 1657 | "'\\param'", m_filename.c_str(), (int)m_line); |
5f7cf62f VZ |
1658 | |
1659 | continue; | |
1660 | } | |
1661 | } | |
1662 | ||
1663 | // if we got here there was no '\\void', so must have some params | |
1664 | if ( paramNames.IsEmpty() ) { | |
1665 | wxLogWarning("file %s(%d): '\\param' or '\\void' expected", | |
e48f6880 | 1666 | m_filename.c_str(), (int)m_line); |
5f7cf62f VZ |
1667 | |
1668 | continue; | |
1669 | } | |
1670 | } | |
1671 | ||
1672 | // verbose diagnostic output | |
1673 | wxString paramsAll; | |
1674 | size_t param, paramCount = paramNames.GetCount(); | |
1675 | for ( param = 0; param < paramCount; param++ ) { | |
1676 | if ( param != 0 ) { | |
1677 | paramsAll << ", "; | |
1678 | } | |
1679 | ||
1680 | paramsAll << paramTypes[param] << ' ' << paramNames[param]; | |
1681 | } | |
1682 | ||
e48f6880 WS |
1683 | wxString constStr; |
1684 | if (foundCommand == ConstFunc) | |
1685 | constStr = _T(" const"); | |
1686 | ||
5f7cf62f | 1687 | wxLogVerbose("file %s(%d): found '%s %s::%s(%s)%s'", |
e49cde67 WS |
1688 | m_filename.c_str(), |
1689 | (int)m_line, | |
5f7cf62f VZ |
1690 | returnType.c_str(), |
1691 | classname.c_str(), | |
1692 | funcName.c_str(), | |
1693 | paramsAll.c_str(), | |
e48f6880 | 1694 | constStr.c_str()); |
5f7cf62f VZ |
1695 | |
1696 | // store the info about the just found function | |
1697 | ArrayMethodInfo *methods; | |
1698 | int index = m_classes.Index(classname); | |
1699 | if ( index == wxNOT_FOUND ) { | |
1700 | m_classes.Add(classname); | |
1701 | ||
1702 | methods = new ArrayMethodInfo; | |
1703 | m_methods.Add(methods); | |
1704 | } | |
1705 | else { | |
1706 | methods = m_methods[(size_t)index]; | |
1707 | } | |
1708 | ||
1709 | ArrayParamInfo params; | |
1710 | for ( param = 0; param < paramCount; param++ ) { | |
1711 | params.Add(new ParamInfo(paramTypes[param], | |
1712 | paramNames[param], | |
1713 | paramValues[param])); | |
1714 | } | |
1715 | ||
1716 | MethodInfo *method = new MethodInfo(returnType, funcName, params); | |
1717 | if ( foundCommand == ConstFunc ) | |
1718 | method->SetFlag(MethodInfo::Const); | |
1719 | if ( isVararg ) | |
1720 | method->SetFlag(MethodInfo::Vararg); | |
1721 | ||
1722 | methods->Add(method); | |
1723 | } | |
1724 | ||
1725 | delete [] buf; | |
1726 | ||
1727 | wxLogVerbose("%s: finished parsing doc file '%s'.\n", | |
1d0d1540 | 1728 | GetCurrentTimeFormatted("%H:%M:%S"), m_filename.c_str()); |
5f7cf62f | 1729 | |
8ad74db3 | 1730 | return true; |
5f7cf62f VZ |
1731 | } |
1732 | ||
1733 | bool DocManager::DumpDifferences(spContext *ctxTop) const | |
1734 | { | |
1735 | typedef MMemberListT::const_iterator MemberIndex; | |
1736 | ||
8ad74db3 | 1737 | bool foundDiff = false; |
5f7cf62f VZ |
1738 | |
1739 | // flag telling us whether the given class was found at all in the header | |
1740 | size_t nClass, countClassesInDocs = m_classes.GetCount(); | |
1741 | bool *classExists = new bool[countClassesInDocs]; | |
1742 | for ( nClass = 0; nClass < countClassesInDocs; nClass++ ) { | |
8ad74db3 | 1743 | classExists[nClass] = false; |
5f7cf62f VZ |
1744 | } |
1745 | ||
1746 | // ctxTop is normally an spFile | |
1747 | wxASSERT( ctxTop->GetContextType() == SP_CTX_FILE ); | |
1748 | ||
1749 | const MMemberListT& classes = ctxTop->GetMembers(); | |
1750 | for ( MemberIndex i = classes.begin(); i != classes.end(); i++ ) { | |
1751 | spContext *ctx = *i; | |
1752 | if ( ctx->GetContextType() != SP_CTX_CLASS ) { | |
1753 | // TODO process also global functions, macros, ... | |
1754 | continue; | |
1755 | } | |
1756 | ||
1757 | spClass *ctxClass = (spClass *)ctx; | |
8bc17f14 | 1758 | const wxString& nameClass = ctxClass->m_Name; |
5f7cf62f VZ |
1759 | int index = m_classes.Index(nameClass); |
1760 | if ( index == wxNOT_FOUND ) { | |
d12e3536 | 1761 | if ( !m_ignoreNames.IgnoreClass(nameClass) ) { |
8ad74db3 | 1762 | foundDiff = true; |
5f7cf62f VZ |
1763 | |
1764 | wxLogError("Class '%s' is not documented at all.", | |
1765 | nameClass.c_str()); | |
1766 | } | |
1767 | ||
1768 | // it makes no sense to check for its functions | |
1769 | continue; | |
1770 | } | |
1771 | else { | |
8ad74db3 | 1772 | classExists[index] = true; |
5f7cf62f VZ |
1773 | } |
1774 | ||
1775 | // array of method descriptions for this class | |
1776 | const ArrayMethodInfo& methods = *(m_methods[index]); | |
1777 | size_t nMethod, countMethods = methods.GetCount(); | |
1778 | ||
1779 | // flags telling if we already processed given function | |
1780 | bool *methodExists = new bool[countMethods]; | |
1781 | for ( nMethod = 0; nMethod < countMethods; nMethod++ ) { | |
8ad74db3 | 1782 | methodExists[nMethod] = false; |
5f7cf62f VZ |
1783 | } |
1784 | ||
1785 | wxArrayString aOverloadedMethods; | |
1786 | ||
1787 | const MMemberListT& functions = ctxClass->GetMembers(); | |
1788 | for ( MemberIndex j = functions.begin(); j != functions.end(); j++ ) { | |
1789 | ctx = *j; | |
1790 | if ( ctx->GetContextType() != SP_CTX_OPERATION ) | |
1791 | continue; | |
1792 | ||
1793 | spOperation *ctxMethod = (spOperation *)ctx; | |
8bc17f14 | 1794 | const wxString& nameMethod = ctxMethod->m_Name; |
5f7cf62f VZ |
1795 | |
1796 | // find all functions with the same name | |
1797 | wxArrayInt aMethodsWithSameName; | |
1798 | for ( nMethod = 0; nMethod < countMethods; nMethod++ ) { | |
1799 | if ( methods[nMethod]->GetName() == nameMethod ) | |
1800 | aMethodsWithSameName.Add(nMethod); | |
1801 | } | |
1802 | ||
1803 | if ( aMethodsWithSameName.IsEmpty() && ctxMethod->IsPublic() ) { | |
d12e3536 | 1804 | if ( !m_ignoreNames.IgnoreMethod(nameClass, nameMethod) ) { |
8ad74db3 | 1805 | foundDiff = true; |
5f7cf62f VZ |
1806 | |
1807 | wxLogError("'%s::%s' is not documented.", | |
1808 | nameClass.c_str(), | |
1809 | nameMethod.c_str()); | |
1810 | } | |
1811 | ||
1812 | // don't check params | |
1813 | continue; | |
1814 | } | |
1815 | else if ( aMethodsWithSameName.GetCount() == 1 ) { | |
1816 | index = (size_t)aMethodsWithSameName[0u]; | |
8ad74db3 | 1817 | methodExists[index] = true; |
5f7cf62f | 1818 | |
d12e3536 | 1819 | if ( m_ignoreNames.IgnoreMethod(nameClass, nameMethod) ) |
5f7cf62f VZ |
1820 | continue; |
1821 | ||
1822 | if ( !ctxMethod->IsPublic() ) { | |
1823 | wxLogWarning("'%s::%s' is documented but not public.", | |
1824 | nameClass.c_str(), | |
1825 | nameMethod.c_str()); | |
1826 | } | |
1827 | ||
1828 | // check that the flags match | |
1829 | const MethodInfo& method = *(methods[index]); | |
1830 | ||
1831 | bool isVirtual = ctxMethod->mIsVirtual; | |
1832 | if ( isVirtual != method.HasFlag(MethodInfo::Virtual) ) { | |
1833 | wxLogWarning("'%s::%s' is incorrectly documented as %s" | |
1834 | "virtual.", | |
1835 | nameClass.c_str(), | |
1836 | nameMethod.c_str(), | |
1837 | isVirtual ? "not " : ""); | |
1838 | } | |
1839 | ||
1840 | bool isConst = ctxMethod->mIsConstant; | |
1841 | if ( isConst != method.HasFlag(MethodInfo::Const) ) { | |
1842 | wxLogWarning("'%s::%s' is incorrectly documented as %s" | |
1843 | "constant.", | |
1844 | nameClass.c_str(), | |
1845 | nameMethod.c_str(), | |
1846 | isConst ? "not " : ""); | |
1847 | } | |
1848 | ||
1849 | // check that the params match | |
1850 | const MMemberListT& params = ctxMethod->GetMembers(); | |
1851 | ||
1852 | if ( params.size() != method.GetParamCount() ) { | |
1853 | wxLogError("Incorrect number of parameters for '%s::%s' " | |
1854 | "in the docs: should be %d instead of %d.", | |
1855 | nameClass.c_str(), | |
1856 | nameMethod.c_str(), | |
e48f6880 | 1857 | (int)params.size(), (int)method.GetParamCount()); |
5f7cf62f VZ |
1858 | } |
1859 | else { | |
1860 | size_t nParam = 0; | |
1861 | for ( MemberIndex k = params.begin(); | |
1862 | k != params.end(); | |
1863 | k++, nParam++ ) { | |
1864 | ctx = *k; | |
1865 | ||
1866 | // what else can a function have? | |
1867 | wxASSERT( ctx->GetContextType() == SP_CTX_PARAMETER ); | |
1868 | ||
1869 | spParameter *ctxParam = (spParameter *)ctx; | |
1870 | const ParamInfo& param = method.GetParam(nParam); | |
d12e3536 | 1871 | if ( m_checkParamNames && |
8bc17f14 | 1872 | (param.GetName() != ctxParam->m_Name.c_str()) ) { |
8ad74db3 | 1873 | foundDiff = true; |
5f7cf62f VZ |
1874 | |
1875 | wxLogError("Parameter #%d of '%s::%s' should be " | |
1876 | "'%s' and not '%s'.", | |
e48f6880 | 1877 | (int)(nParam + 1), |
5f7cf62f VZ |
1878 | nameClass.c_str(), |
1879 | nameMethod.c_str(), | |
8bc17f14 | 1880 | ctxParam->m_Name.c_str(), |
5f7cf62f VZ |
1881 | param.GetName().c_str()); |
1882 | ||
1883 | continue; | |
1884 | } | |
1885 | ||
821d644d | 1886 | if ( param.GetType() != ctxParam->m_Type ) { |
8ad74db3 | 1887 | foundDiff = true; |
5f7cf62f VZ |
1888 | |
1889 | wxLogError("Type of parameter '%s' of '%s::%s' " | |
1890 | "should be '%s' and not '%s'.", | |
8bc17f14 | 1891 | ctxParam->m_Name.c_str(), |
5f7cf62f VZ |
1892 | nameClass.c_str(), |
1893 | nameMethod.c_str(), | |
821d644d | 1894 | ctxParam->m_Type.c_str(), |
5f7cf62f VZ |
1895 | param.GetType().GetName().c_str()); |
1896 | ||
1897 | continue; | |
1898 | } | |
1899 | ||
3f378995 | 1900 | if ( param.GetDefValue() != ctxParam->mInitVal.c_str() ) { |
5f7cf62f VZ |
1901 | wxLogWarning("Default value of parameter '%s' of " |
1902 | "'%s::%s' should be '%s' and not " | |
1903 | "'%s'.", | |
8bc17f14 | 1904 | ctxParam->m_Name.c_str(), |
5f7cf62f VZ |
1905 | nameClass.c_str(), |
1906 | nameMethod.c_str(), | |
1907 | ctxParam->mInitVal.c_str(), | |
1908 | param.GetDefValue().c_str()); | |
1909 | } | |
1910 | } | |
1911 | } | |
1912 | } | |
1913 | else { | |
d12e3536 | 1914 | // TODO OVER add real support for overloaded methods |
5f7cf62f | 1915 | |
d12e3536 | 1916 | if ( m_ignoreNames.IgnoreMethod(nameClass, nameMethod) ) |
5f7cf62f VZ |
1917 | continue; |
1918 | ||
1919 | if ( aOverloadedMethods.Index(nameMethod) == wxNOT_FOUND ) { | |
1920 | // mark all methods with this name as existing | |
1921 | for ( nMethod = 0; nMethod < countMethods; nMethod++ ) { | |
1922 | if ( methods[nMethod]->GetName() == nameMethod ) | |
8ad74db3 | 1923 | methodExists[nMethod] = true; |
5f7cf62f VZ |
1924 | } |
1925 | ||
1926 | aOverloadedMethods.Add(nameMethod); | |
1927 | ||
1928 | wxLogVerbose("'%s::%s' is overloaded and I'm too " | |
1929 | "stupid to find the right match - skipping " | |
1930 | "the param and flags checks.", | |
1931 | nameClass.c_str(), | |
1932 | nameMethod.c_str()); | |
1933 | } | |
1934 | //else: warning already given | |
1935 | } | |
1936 | } | |
1937 | ||
1938 | for ( nMethod = 0; nMethod < countMethods; nMethod++ ) { | |
1939 | if ( !methodExists[nMethod] ) { | |
1940 | const wxString& nameMethod = methods[nMethod]->GetName(); | |
d12e3536 | 1941 | if ( !m_ignoreNames.IgnoreMethod(nameClass, nameMethod) ) { |
8ad74db3 | 1942 | foundDiff = true; |
5f7cf62f VZ |
1943 | |
1944 | wxLogError("'%s::%s' is documented but doesn't exist.", | |
1945 | nameClass.c_str(), | |
1946 | nameMethod.c_str()); | |
1947 | } | |
1948 | } | |
1949 | } | |
1950 | ||
1951 | delete [] methodExists; | |
1952 | } | |
1953 | ||
1954 | // check that all classes we found in the docs really exist | |
1955 | for ( nClass = 0; nClass < countClassesInDocs; nClass++ ) { | |
1956 | if ( !classExists[nClass] ) { | |
8ad74db3 | 1957 | foundDiff = true; |
5f7cf62f VZ |
1958 | |
1959 | wxLogError("Class '%s' is documented but doesn't exist.", | |
1960 | m_classes[nClass].c_str()); | |
1961 | } | |
1962 | } | |
1963 | ||
1964 | delete [] classExists; | |
1965 | ||
1966 | return !foundDiff; | |
1967 | } | |
1968 | ||
1969 | DocManager::~DocManager() | |
1970 | { | |
1971 | WX_CLEAR_ARRAY(m_methods); | |
5f7cf62f VZ |
1972 | } |
1973 | ||
d12e3536 VZ |
1974 | // --------------------------------------------------------------------------- |
1975 | // IgnoreNamesHandler implementation | |
1976 | // --------------------------------------------------------------------------- | |
1977 | ||
1978 | int IgnoreNamesHandler::CompareIgnoreListEntries(IgnoreListEntry *first, | |
1979 | IgnoreListEntry *second) | |
5f7cf62f VZ |
1980 | { |
1981 | // first compare the classes | |
1982 | int rc = first->m_classname.Cmp(second->m_classname); | |
1983 | if ( rc == 0 ) | |
1984 | rc = first->m_funcname.Cmp(second->m_funcname); | |
1985 | ||
1986 | return rc; | |
1987 | } | |
1988 | ||
d12e3536 | 1989 | bool IgnoreNamesHandler::AddNamesFromFile(const wxString& filename) |
5f7cf62f VZ |
1990 | { |
1991 | wxFile file(filename, wxFile::read); | |
1992 | if ( !file.IsOpened() ) | |
8ad74db3 | 1993 | return false; |
5f7cf62f VZ |
1994 | |
1995 | off_t len = file.Length(); | |
1996 | if ( len == wxInvalidOffset ) | |
8ad74db3 | 1997 | return false; |
5f7cf62f VZ |
1998 | |
1999 | char *buf = new char[len + 1]; | |
2000 | buf[len] = '\0'; | |
2001 | ||
f8a586e0 | 2002 | if ( file.Read(buf, len) == wxInvalidOffset ) { |
5f7cf62f VZ |
2003 | delete [] buf; |
2004 | ||
8ad74db3 | 2005 | return false; |
5f7cf62f VZ |
2006 | } |
2007 | ||
2008 | wxString line; | |
2009 | for ( const char *current = buf; ; current++ ) { | |
2010 | #ifdef __WXMSW__ | |
2011 | // skip DOS line separator | |
2012 | if ( *current == '\r' ) | |
2013 | current++; | |
2014 | #endif // wxMSW | |
2015 | ||
2016 | if ( *current == '\n' || *current == '\0' ) { | |
2017 | if ( line[0u] != '#' ) { | |
2018 | if ( line.Find(':') != wxNOT_FOUND ) { | |
2019 | wxString classname = line.BeforeFirst(':'), | |
2020 | funcname = line.AfterLast(':'); | |
2021 | m_ignore.Add(new IgnoreListEntry(classname, funcname)); | |
2022 | } | |
2023 | else { | |
2024 | // entire class | |
2025 | m_ignore.Add(new IgnoreListEntry(line, "")); | |
2026 | } | |
2027 | } | |
2028 | //else: comment | |
2029 | ||
2030 | if ( *current == '\0' ) | |
2031 | break; | |
2032 | ||
2033 | line.Empty(); | |
2034 | } | |
2035 | else { | |
2036 | line += *current; | |
2037 | } | |
2038 | } | |
2039 | ||
2040 | delete [] buf; | |
2041 | ||
8ad74db3 | 2042 | return true; |
5f7cf62f VZ |
2043 | } |
2044 | ||
cecfc5e7 VZ |
2045 | // ----------------------------------------------------------------------------- |
2046 | // global function implementation | |
2047 | // ----------------------------------------------------------------------------- | |
2048 | ||
2049 | static wxString MakeLabel(const char *classname, const char *funcname) | |
2050 | { | |
2051 | wxString label(classname); | |
ed38ec7e | 2052 | if ( funcname && funcname[0] == '\\' ) { |
cecfc5e7 VZ |
2053 | // we may have some special TeX macro - so far only \destruct exists, |
2054 | // but may be later others will be added | |
2055 | static const char *macros[] = { "destruct" }; | |
2056 | static const char *replacement[] = { "dtor" }; | |
59734eb5 | 2057 | |
cecfc5e7 VZ |
2058 | size_t n; |
2059 | for ( n = 0; n < WXSIZEOF(macros); n++ ) { | |
2060 | if ( strncmp(funcname + 1, macros[n], strlen(macros[n])) == 0 ) { | |
2061 | // found | |
2062 | break; | |
2063 | } | |
2064 | } | |
2065 | ||
2066 | if ( n == WXSIZEOF(macros) ) { | |
2067 | wxLogWarning("unknown function name '%s' - leaving as is.", | |
2068 | funcname); | |
2069 | } | |
2070 | else { | |
2071 | funcname = replacement[n]; | |
2072 | } | |
2073 | } | |
2074 | ||
d8b6f4d9 VZ |
2075 | if ( funcname ) { |
2076 | // special treatment for operatorXXX() stuff because the C operators | |
2077 | // are not valid in LaTeX labels | |
2078 | wxString oper; | |
2079 | if ( wxString(funcname).StartsWith("operator", &oper) ) { | |
2080 | label << "operator"; | |
2081 | ||
2082 | static const struct | |
2083 | { | |
2084 | const char *oper; | |
2085 | const char *name; | |
2086 | } operatorNames[] = | |
2087 | { | |
2088 | { "=", "assign" }, | |
2089 | { "==", "equal" }, | |
2090 | }; | |
2091 | ||
2092 | size_t n; | |
2093 | for ( n = 0; n < WXSIZEOF(operatorNames); n++ ) { | |
2094 | if ( oper == operatorNames[n].oper ) { | |
2095 | label << operatorNames[n].name; | |
2096 | ||
2097 | break; | |
2098 | } | |
2099 | } | |
2100 | ||
2101 | if ( n == WXSIZEOF(operatorNames) ) { | |
2102 | wxLogWarning("unknown operator '%s' - making dummy label.", | |
2103 | oper.c_str()); | |
2104 | ||
2105 | label << "unknown"; | |
2106 | } | |
2107 | } | |
2108 | else // simply use the func name | |
2109 | { | |
2110 | label << funcname; | |
2111 | } | |
2112 | } | |
cecfc5e7 VZ |
2113 | |
2114 | label.MakeLower(); | |
2115 | ||
2116 | return label; | |
2117 | } | |
2118 | ||
ed38ec7e VZ |
2119 | static wxString MakeHelpref(const char *argument) |
2120 | { | |
2121 | wxString helpref; | |
2122 | helpref << "\\helpref{" << argument << "}{" << MakeLabel(argument) << '}'; | |
2123 | ||
2124 | return helpref; | |
2125 | } | |
2126 | ||
a7adaeda VZ |
2127 | static void TeXFilter(wxString* str) |
2128 | { | |
2129 | // TeX special which can be quoted (don't include backslash nor braces as | |
8ad74db3 | 2130 | // we generate them |
a7adaeda VZ |
2131 | static wxRegEx reNonSpecialSpecials("[#$%&_]"), |
2132 | reAccents("[~^]"); | |
2133 | ||
2134 | // just quote | |
2135 | reNonSpecialSpecials.ReplaceAll(str, "\\\\\\0"); | |
2136 | ||
2137 | // can't quote these ones as they produce accents when preceded by | |
2138 | // backslash, so put them inside verb | |
2139 | reAccents.ReplaceAll(str, "\\\\verb|\\0|"); | |
2140 | } | |
2141 | ||
5f7cf62f VZ |
2142 | static void TeXUnfilter(wxString* str) |
2143 | { | |
2144 | // FIXME may be done much more quickly | |
8ad74db3 WS |
2145 | str->Trim(true); |
2146 | str->Trim(false); | |
5f7cf62f | 2147 | |
a7adaeda VZ |
2148 | // undo TeXFilter |
2149 | static wxRegEx reNonSpecialSpecials("\\\\([#$%&_{}])"), | |
d5eddfef | 2150 | reAccents("\\\\verb\\|([~^])\\|"); |
5f7cf62f | 2151 | |
a7adaeda VZ |
2152 | reNonSpecialSpecials.ReplaceAll(str, "\\1"); |
2153 | reAccents.ReplaceAll(str, "\\1"); | |
cecfc5e7 VZ |
2154 | } |
2155 | ||
ed38ec7e VZ |
2156 | static wxString GetAllComments(const spContext& ctx) |
2157 | { | |
59734eb5 VZ |
2158 | wxString comments; |
2159 | const MCommentListT& commentsList = ctx.GetCommentList(); | |
2160 | for ( MCommentListT::const_iterator i = commentsList.begin(); | |
2161 | i != commentsList.end(); | |
2162 | i++ ) { | |
2163 | wxString comment = (*i)->GetText(); | |
2164 | ||
2165 | // don't take comments like "// ----------" &c | |
8ad74db3 | 2166 | comment.Trim(false); |
8bc17f14 | 2167 | if ( !comment.empty() && |
59734eb5 VZ |
2168 | comment == wxString(comment[0u], comment.length() - 1) + '\n' ) |
2169 | comments << "\n"; | |
2170 | else | |
2171 | comments << comment; | |
ed38ec7e VZ |
2172 | } |
2173 | ||
59734eb5 | 2174 | return comments; |
ed38ec7e VZ |
2175 | } |
2176 | ||
1d0d1540 | 2177 | static const char *GetCurrentTimeFormatted(const char *timeFormat) |
ed38ec7e VZ |
2178 | { |
2179 | static char s_timeBuffer[128]; | |
2180 | time_t timeNow; | |
2181 | struct tm *ptmNow; | |
2182 | ||
2183 | time(&timeNow); | |
2184 | ptmNow = localtime(&timeNow); | |
2185 | ||
2186 | strftime(s_timeBuffer, WXSIZEOF(s_timeBuffer), timeFormat, ptmNow); | |
2187 | ||
2188 | return s_timeBuffer; | |
2189 | } | |
2190 | ||
2f919f99 VZ |
2191 | static const wxString GetVersionString() |
2192 | { | |
2193 | wxString version = "$Revision$"; | |
2194 | wxRegEx("^\\$Revision$$").ReplaceFirst(&version, "\\1"); | |
2195 | return version; | |
2196 | } | |
2197 | ||
5f7cf62f VZ |
2198 | /* |
2199 | $Log$ | |
c69a7d10 WS |
2200 | Revision 1.41 2005/05/30 13:06:15 ABX |
2201 | More warning and error fixes (work in progress with Tinderbox). | |
2202 | ||
e49cde67 WS |
2203 | Revision 1.40 2005/05/30 11:49:32 ABX |
2204 | More warning and error fixes (work in progress with Tinderbox). | |
2205 | ||
e48f6880 WS |
2206 | Revision 1.39 2005/05/30 09:26:42 ABX |
2207 | More warning and error fixes (work in progress with Tinderbox). | |
2208 | ||
821d644d WS |
2209 | Revision 1.38 2005/05/24 09:06:20 ABX |
2210 | More fixes and wxWidgets coding standards. | |
2211 | ||
8bc17f14 WS |
2212 | Revision 1.37 2005/05/23 15:22:08 ABX |
2213 | Initial HelpGen source cleaning. | |
2214 | ||
3f378995 MW |
2215 | Revision 1.36 2005/04/07 19:54:58 MW |
2216 | Workarounds to allow compilation by Sun C++ 5.5 | |
2217 | ||
ffa4348d VZ |
2218 | Revision 1.35 2004/12/12 11:03:31 VZ |
2219 | give an error message if we're built in Unicode mode (in response to bug 1079224) | |
2220 | ||
13e175ea JS |
2221 | Revision 1.34 2004/11/23 09:53:31 JS |
2222 | Changed GPL to wxWindows Licence | |
2223 | ||
f8a586e0 | 2224 | Revision 1.33 2004/11/12 03:30:07 RL |
13e175ea | 2225 | |
f8a586e0 RL |
2226 | Cruft cleanup from MJW, strip the tabs out of sound.cpp |
2227 | ||
30984dea VZ |
2228 | Revision 1.32 2004/11/10 21:02:58 VZ |
2229 | new set of fixes for problems due to huge files support: drop wxFileSize_t, use wxFileOffset only, make wxInvalidOffset an int (main part of the patch 1063498) | |
2230 | ||
254a2129 WS |
2231 | Revision 1.31 2004/10/05 15:38:29 ABX |
2232 | Warning fixes found under hardest mode of OpenWatcom. Seems clean in Borland, MinGW and DMC. | |
2233 | ||
1d0d1540 WS |
2234 | Revision 1.30 2004/06/18 19:25:50 ABX |
2235 | Small step in making HelpGen up to date unicode application. | |
2236 | ||
8ad74db3 WS |
2237 | Revision 1.29 2004/06/17 19:00:22 ABX |
2238 | Warning fixes. Code cleanup. Whitespaces and tabs removed. | |
2239 | ||
be5a51fb JS |
2240 | Revision 1.28 2004/05/25 11:19:57 JS |
2241 | More name changes | |
2242 | ||
7f2e78ed MB |
2243 | Revision 1.27 2003/10/13 17:21:30 MBN |
2244 | Compilation fixes. | |
2245 | ||
c58cff9a MB |
2246 | Revision 1.26 2003/09/29 15:18:35 MBN |
2247 | (Blind) compilation fix for Sun compiler. | |
2248 | ||
b521a6f9 MB |
2249 | Revision 1.25 2003/09/03 17:39:27 MBN |
2250 | Compilation fixes. | |
2251 | ||
cd0b9157 VZ |
2252 | Revision 1.24 2003/08/13 22:59:37 VZ |
2253 | compilation fix | |
2254 | ||
d5eddfef VZ |
2255 | Revision 1.23 2003/06/13 17:05:43 VZ |
2256 | quote '|' inside regexes (fixes dump mode); fixed crash due to strange HelpGenApp code | |
2257 | ||
5bdad898 JS |
2258 | Revision 1.22 2002/01/21 21:18:50 JS |
2259 | Now adds 'include file' heading | |
2260 | ||
df6e7577 JS |
2261 | Revision 1.21 2002/01/04 11:06:09 JS |
2262 | Fixed missing membersections bug and also bug with functions not being written | |
2263 | in the right class | |
2264 | ||
eb420090 JS |
2265 | Revision 1.20 2002/01/03 14:23:33 JS |
2266 | Added code to make it not duplicate membersections for overloaded functions | |
2267 | ||
3689307f JS |
2268 | Revision 1.19 2002/01/03 13:34:12 JS |
2269 | Added FlushAll to CloseClass, otherwise text was only flushed right at the end, | |
2270 | and appeared in one file. | |
2271 | ||
31dc7e49 JS |
2272 | Revision 1.18 2002/01/03 12:02:47 JS |
2273 | Added main() and corrected VC++ project settings | |
2274 | ||
d8b6f4d9 VZ |
2275 | Revision 1.17 2001/11/30 21:43:35 VZ |
2276 | now the methods are sorted in the correct order in the generated docs | |
2277 | ||
a3b72ffb VZ |
2278 | Revision 1.16 2001/11/28 19:27:33 VZ |
2279 | HelpGen doesn't work in GUI mode | |
2280 | ||
5aa5c1e4 GD |
2281 | Revision 1.15 2001/11/22 21:59:58 GD |
2282 | use "..." instead of <...> for wx headers | |
2283 | ||
2f919f99 VZ |
2284 | Revision 1.14 2001/07/19 13:51:29 VZ |
2285 | fixes to version string | |
2286 | ||
a7adaeda VZ |
2287 | Revision 1.13 2001/07/19 13:44:57 VZ |
2288 | 1. compilation fixes | |
2289 | 2. don't quote special characters inside verbatim environment | |
2290 | ||
4e28924c | 2291 | Revision 1.12 2000/10/09 13:53:33 juliansmart |
a7adaeda | 2292 | |
4e28924c JS |
2293 | Doc corrections; added HelpGen project files |
2294 | ||
f6bcfd97 BP |
2295 | Revision 1.11 2000/07/15 19:50:42 cvsuser |
2296 | merged 2.2 branch | |
2297 | ||
2298 | Revision 1.10.2.2 2000/03/27 15:33:10 VZ | |
2299 | don't trasnform output dir name to lower case | |
2300 | ||
de528224 VS |
2301 | Revision 1.10 2000/03/11 10:05:23 VS |
2302 | now compiles with wxBase | |
2303 | ||
b136d1fe VS |
2304 | Revision 1.9 2000/01/16 13:25:21 VS |
2305 | compilation fixes (gcc) | |
2306 | ||
28468136 | 2307 | Revision 1.8 1999/09/13 14:29:39 JS |
b136d1fe | 2308 | |
28468136 JS |
2309 | Made HelpGen into a wxWin app (still uses command-line args); moved includes |
2310 | into src for simplicity; added VC++ 5 project file | |
2311 | ||
d12e3536 VZ |
2312 | Revision 1.7 1999/02/21 22:32:32 VZ |
2313 | 1. more C++ parser fixes - now it almost parses wx/string.h | |
2314 | a) #if/#ifdef/#else (very) limited support | |
2315 | b) param type fix - now indirection chars are correctly handled | |
2316 | c) class/struct/union distinction | |
2317 | d) public/private fixes | |
2318 | e) Dump() function added - very useful for debugging | |
2319 | ||
2320 | 2. option to ignore parameter names during 'diff' (in fact, they're ignored | |
2321 | by default, and this option switches it on) | |
2322 | ||
5f7cf62f VZ |
2323 | Revision 1.6 1999/02/20 23:00:26 VZ |
2324 | 1. new 'diff' mode which seems to work | |
2325 | 2. output files are not overwritten in 'dmup' mode | |
2326 | 3. fixes for better handling of const functions and operators | |
d12e3536 VZ |
2327 | ---------------------------- |
2328 | revision 1.5 | |
2329 | date: 1999/02/15 23:07:25; author: VZ; state: Exp; lines: +106 -45 | |
2330 | 1. Parser improvements | |
2331 | a) const and virtual methods are parsed correctly (not static yet) | |
2332 | b) "const" which is part of the return type is not swallowed | |
2333 | ||
2334 | 2. HelpGen improvements: -o outputdir parameter added to the cmd line, | |
2335 | "//---------" kind comments discarded now. | |
2336 | ---------------------------- | |
2337 | revision 1.4 | |
2338 | date: 1999/01/13 14:23:31; author: JS; state: Exp; lines: +4 -4 | |
2339 | ||
2340 | some tweaks to HelpGen | |
2341 | ---------------------------- | |
2342 | revision 1.3 | |
2343 | date: 1999/01/09 20:18:03; author: JS; state: Exp; lines: +7 -2 | |
2344 | ||
2345 | HelpGen starting to compile with VC++ | |
2346 | ---------------------------- | |
2347 | revision 1.2 | |
2348 | date: 1999/01/08 19:46:22; author: VZ; state: Exp; lines: +208 -35 | |
2349 | ||
2350 | supports typedefs, generates "See also:" and adds "virtual " for virtual | |
2351 | functions | |
2352 | ---------------------------- | |
2353 | revision 1.1 | |
2354 | date: 1999/01/08 17:45:55; author: VZ; state: Exp; | |
2355 | ||
2356 | HelpGen is a prototype of the tool for automatic generation of the .tex files | |
be5a51fb | 2357 | for wxWidgets documentation from C++ headers |
5f7cf62f VZ |
2358 | */ |
2359 | ||
cecfc5e7 | 2360 | /* vi: set tw=80 et ts=4 sw=4: */ |