]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wxrc.cpp | |
3 | // Purpose: XML resource compiler | |
4 | // Author: Vaclav Slavik, Eduardo Marques <edrdo@netcabo.pt> | |
5 | // Created: 2000/03/05 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2000 Vaclav Slavik | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | // For compilers that support precompilation, includes "wx/wx.h". | |
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #ifdef __BORLANDC__ | |
15 | #pragma hdrstop | |
16 | #endif | |
17 | ||
18 | // for all others, include the necessary headers | |
19 | #ifndef WX_PRECOMP | |
20 | #include "wx/app.h" | |
21 | #include "wx/log.h" | |
22 | #include "wx/wxcrtvararg.h" | |
23 | #endif | |
24 | ||
25 | #include "wx/cmdline.h" | |
26 | #include "wx/xml/xml.h" | |
27 | #include "wx/ffile.h" | |
28 | #include "wx/filename.h" | |
29 | #include "wx/wfstream.h" | |
30 | #include "wx/utils.h" | |
31 | #include "wx/hashset.h" | |
32 | #include "wx/mimetype.h" | |
33 | #include "wx/vector.h" | |
34 | ||
35 | WX_DECLARE_HASH_SET(wxString, wxStringHash, wxStringEqual, StringSet); | |
36 | ||
37 | class XRCWidgetData | |
38 | { | |
39 | public: | |
40 | XRCWidgetData(const wxString& vname,const wxString& vclass) | |
41 | : m_class(vclass), m_name(vname) {} | |
42 | const wxString& GetName() const { return m_name; } | |
43 | const wxString& GetClass() const { return m_class; } | |
44 | private: | |
45 | wxString m_class; | |
46 | wxString m_name; | |
47 | }; | |
48 | ||
49 | #include "wx/arrimpl.cpp" | |
50 | WX_DECLARE_OBJARRAY(XRCWidgetData,ArrayOfXRCWidgetData); | |
51 | WX_DEFINE_OBJARRAY(ArrayOfXRCWidgetData) | |
52 | ||
53 | class XRCWndClassData | |
54 | { | |
55 | private: | |
56 | wxString m_className; | |
57 | wxString m_parentClassName; | |
58 | StringSet m_ancestorClassNames; | |
59 | ArrayOfXRCWidgetData m_wdata; | |
60 | ||
61 | void BrowseXmlNode(wxXmlNode* node) | |
62 | { | |
63 | wxString classValue; | |
64 | wxString nameValue; | |
65 | wxXmlNode* children; | |
66 | while (node) | |
67 | { | |
68 | if (node->GetName() == _T("object") | |
69 | && node->GetAttribute(_T("class"),&classValue) | |
70 | && node->GetAttribute(_T("name"),&nameValue)) | |
71 | { | |
72 | m_wdata.Add(XRCWidgetData(nameValue,classValue)); | |
73 | } | |
74 | children = node->GetChildren(); | |
75 | if (children) | |
76 | BrowseXmlNode(children); | |
77 | node = node->GetNext(); | |
78 | } | |
79 | } | |
80 | ||
81 | public: | |
82 | XRCWndClassData(const wxString& className, | |
83 | const wxString& parentClassName, | |
84 | const wxXmlNode* node) : | |
85 | m_className(className) , m_parentClassName(parentClassName) | |
86 | { | |
87 | if ( className == _T("wxMenu") ) | |
88 | { | |
89 | m_ancestorClassNames.insert(_T("wxMenu")); | |
90 | m_ancestorClassNames.insert(_T("wxMenuBar")); | |
91 | } | |
92 | else if ( className == _T("wxMDIChildFrame") ) | |
93 | { | |
94 | m_ancestorClassNames.insert(_T("wxMDIParentFrame")); | |
95 | } | |
96 | else if( className == _T("wxMenuBar") || | |
97 | className == _T("wxStatusBar") || | |
98 | className == _T("wxToolBar") ) | |
99 | { | |
100 | m_ancestorClassNames.insert(_T("wxFrame")); | |
101 | } | |
102 | else | |
103 | { | |
104 | m_ancestorClassNames.insert(_T("wxWindow")); | |
105 | } | |
106 | ||
107 | BrowseXmlNode(node->GetChildren()); | |
108 | } | |
109 | ||
110 | const ArrayOfXRCWidgetData& GetWidgetData() | |
111 | { | |
112 | return m_wdata; | |
113 | } | |
114 | ||
115 | bool CanBeUsedWithXRCCTRL(const wxString& name) | |
116 | { | |
117 | if (name == _T("tool") || | |
118 | name == _T("data") || | |
119 | name == _T("unknown") || | |
120 | name == _T("notebookpage") || | |
121 | name == _T("separator") || | |
122 | name == _T("sizeritem") || | |
123 | name == _T("wxMenu") || | |
124 | name == _T("wxMenuBar") || | |
125 | name == _T("wxMenuItem") || | |
126 | name.EndsWith(_T("Sizer")) ) | |
127 | { | |
128 | return false; | |
129 | } | |
130 | return true; | |
131 | } | |
132 | ||
133 | void GenerateHeaderCode(wxFFile& file) | |
134 | { | |
135 | ||
136 | file.Write(_T("class ") + m_className + _T(" : public ") + m_parentClassName | |
137 | + _T(" {\nprotected:\n")); | |
138 | size_t i; | |
139 | for(i=0;i<m_wdata.GetCount();++i) | |
140 | { | |
141 | const XRCWidgetData& w = m_wdata.Item(i); | |
142 | if( !CanBeUsedWithXRCCTRL(w.GetClass()) ) continue; | |
143 | if( w.GetName().Length() == 0 ) continue; | |
144 | file.Write( | |
145 | _T(" ") + w.GetClass() + _T("* ") + w.GetName() | |
146 | + _T(";\n")); | |
147 | } | |
148 | file.Write(_T("\nprivate:\n void InitWidgetsFromXRC(wxWindow *parent){\n") | |
149 | _T(" wxXmlResource::Get()->LoadObject(this,parent,_T(\"") | |
150 | + m_className | |
151 | + _T("\"), _T(\"") | |
152 | + m_parentClassName | |
153 | + _T("\"));\n")); | |
154 | for(i=0;i<m_wdata.GetCount();++i) | |
155 | { | |
156 | const XRCWidgetData& w = m_wdata.Item(i); | |
157 | if( !CanBeUsedWithXRCCTRL(w.GetClass()) ) continue; | |
158 | if( w.GetName().Length() == 0 ) continue; | |
159 | file.Write( _T(" ") | |
160 | + w.GetName() | |
161 | + _T(" = XRCCTRL(*this,\"") | |
162 | + w.GetName() | |
163 | + _T("\",") | |
164 | + w.GetClass() | |
165 | + _T(");\n")); | |
166 | } | |
167 | file.Write(_T(" }\n")); | |
168 | ||
169 | file.Write( _T("public:\n")); | |
170 | ||
171 | if ( m_ancestorClassNames.size() == 1 ) | |
172 | { | |
173 | file.Write | |
174 | ( | |
175 | m_className + | |
176 | _T("(") + | |
177 | *m_ancestorClassNames.begin() + | |
178 | _T(" *parent=NULL){\n") + | |
179 | _T(" InitWidgetsFromXRC((wxWindow *)parent);\n") | |
180 | _T(" }\n") | |
181 | _T("};\n") | |
182 | ); | |
183 | } | |
184 | else | |
185 | { | |
186 | file.Write(m_className + _T("(){\n") + | |
187 | _T(" InitWidgetsFromXRC(NULL);\n") | |
188 | _T(" }\n") | |
189 | _T("};\n")); | |
190 | ||
191 | for ( StringSet::const_iterator it = m_ancestorClassNames.begin(); | |
192 | it != m_ancestorClassNames.end(); | |
193 | ++it ) | |
194 | { | |
195 | file.Write(m_className + _T("(") + *it + _T(" *parent){\n") + | |
196 | _T(" InitWidgetsFromXRC((wxWindow *)parent);\n") | |
197 | _T(" }\n") | |
198 | _T("};\n")); | |
199 | } | |
200 | } | |
201 | } | |
202 | }; | |
203 | WX_DECLARE_OBJARRAY(XRCWndClassData,ArrayOfXRCWndClassData); | |
204 | WX_DEFINE_OBJARRAY(ArrayOfXRCWndClassData) | |
205 | ||
206 | struct ExtractedString | |
207 | { | |
208 | ExtractedString() : lineNo(-1) {} | |
209 | ExtractedString(const wxString& str_, | |
210 | const wxString& filename_, int lineNo_) | |
211 | : str(str_), filename(filename_), lineNo(lineNo_) | |
212 | {} | |
213 | ||
214 | wxString str; | |
215 | ||
216 | wxString filename; | |
217 | int lineNo; | |
218 | }; | |
219 | ||
220 | typedef wxVector<ExtractedString> ExtractedStrings; | |
221 | ||
222 | ||
223 | class XmlResApp : public wxAppConsole | |
224 | { | |
225 | public: | |
226 | // don't use builtin cmd line parsing: | |
227 | virtual bool OnInit() { return true; } | |
228 | virtual int OnRun(); | |
229 | ||
230 | private: | |
231 | void ParseParams(const wxCmdLineParser& cmdline); | |
232 | void CompileRes(); | |
233 | wxArrayString PrepareTempFiles(); | |
234 | void FindFilesInXML(wxXmlNode *node, wxArrayString& flist, const wxString& inputPath); | |
235 | ||
236 | wxString GetInternalFileName(const wxString& name, const wxArrayString& flist); | |
237 | void DeleteTempFiles(const wxArrayString& flist); | |
238 | void MakePackageZIP(const wxArrayString& flist); | |
239 | void MakePackageCPP(const wxArrayString& flist); | |
240 | void MakePackagePython(const wxArrayString& flist); | |
241 | ||
242 | void OutputGettext(); | |
243 | ExtractedStrings FindStrings(); | |
244 | ExtractedStrings FindStrings(const wxString& filename, wxXmlNode *node); | |
245 | ||
246 | bool flagVerbose, flagCPP, flagPython, flagGettext; | |
247 | wxString parOutput, parFuncname, parOutputPath; | |
248 | wxArrayString parFiles; | |
249 | int retCode; | |
250 | ||
251 | ArrayOfXRCWndClassData aXRCWndClassData; | |
252 | bool flagH; | |
253 | void GenCPPHeader(); | |
254 | }; | |
255 | ||
256 | IMPLEMENT_APP_CONSOLE(XmlResApp) | |
257 | ||
258 | int XmlResApp::OnRun() | |
259 | { | |
260 | static const wxCmdLineEntryDesc cmdLineDesc[] = | |
261 | { | |
262 | { wxCMD_LINE_SWITCH, "h", "help", "show help message", wxCMD_LINE_VAL_NONE, wxCMD_LINE_OPTION_HELP }, | |
263 | { wxCMD_LINE_SWITCH, "v", "verbose", "be verbose" }, | |
264 | { wxCMD_LINE_SWITCH, "e", "extra-cpp-code", "output C++ header file with XRC derived classes" }, | |
265 | { wxCMD_LINE_SWITCH, "c", "cpp-code", "output C++ source rather than .rsc file" }, | |
266 | { wxCMD_LINE_SWITCH, "p", "python-code", "output wxPython source rather than .rsc file" }, | |
267 | { wxCMD_LINE_SWITCH, "g", "gettext", "output list of translatable strings (to stdout or file if -o used)" }, | |
268 | { wxCMD_LINE_OPTION, "n", "function", "C++/Python function name (with -c or -p) [InitXmlResource]" }, | |
269 | { wxCMD_LINE_OPTION, "o", "output", "output file [resource.xrs/cpp]" }, | |
270 | #if 0 // not yet implemented | |
271 | { wxCMD_LINE_OPTION, "l", "list-of-handlers", "output list of necessary handlers to this file" }, | |
272 | #endif | |
273 | { wxCMD_LINE_PARAM, NULL, NULL, "input file(s)", | |
274 | wxCMD_LINE_VAL_STRING, | |
275 | wxCMD_LINE_PARAM_MULTIPLE | wxCMD_LINE_OPTION_MANDATORY }, | |
276 | ||
277 | wxCMD_LINE_DESC_END | |
278 | }; | |
279 | ||
280 | wxCmdLineParser parser(cmdLineDesc, argc, argv); | |
281 | ||
282 | switch (parser.Parse()) | |
283 | { | |
284 | case -1: | |
285 | return 0; | |
286 | ||
287 | case 0: | |
288 | retCode = 0; | |
289 | ParseParams(parser); | |
290 | if (flagGettext) | |
291 | OutputGettext(); | |
292 | else | |
293 | CompileRes(); | |
294 | return retCode; | |
295 | } | |
296 | return 1; | |
297 | } | |
298 | ||
299 | ||
300 | ||
301 | ||
302 | void XmlResApp::ParseParams(const wxCmdLineParser& cmdline) | |
303 | { | |
304 | flagGettext = cmdline.Found("g"); | |
305 | flagVerbose = cmdline.Found("v"); | |
306 | flagCPP = cmdline.Found("c"); | |
307 | flagPython = cmdline.Found("p"); | |
308 | flagH = flagCPP && cmdline.Found("e"); | |
309 | ||
310 | ||
311 | if (!cmdline.Found("o", &parOutput)) | |
312 | { | |
313 | if (flagGettext) | |
314 | parOutput = wxEmptyString; | |
315 | else | |
316 | { | |
317 | if (flagCPP) | |
318 | parOutput = _T("resource.cpp"); | |
319 | else if (flagPython) | |
320 | parOutput = _T("resource.py"); | |
321 | else | |
322 | parOutput = _T("resource.xrs"); | |
323 | } | |
324 | } | |
325 | if (!parOutput.empty()) | |
326 | { | |
327 | wxFileName fn(parOutput); | |
328 | fn.Normalize(); | |
329 | parOutput = fn.GetFullPath(); | |
330 | parOutputPath = wxPathOnly(parOutput); | |
331 | } | |
332 | if (!parOutputPath) parOutputPath = _T("."); | |
333 | ||
334 | if (!cmdline.Found("n", &parFuncname)) | |
335 | parFuncname = _T("InitXmlResource"); | |
336 | ||
337 | for (size_t i = 0; i < cmdline.GetParamCount(); i++) | |
338 | { | |
339 | #ifdef __WINDOWS__ | |
340 | wxString fn=wxFindFirstFile(cmdline.GetParam(i), wxFILE); | |
341 | while (!fn.empty()) | |
342 | { | |
343 | parFiles.Add(fn); | |
344 | fn=wxFindNextFile(); | |
345 | } | |
346 | #else | |
347 | parFiles.Add(cmdline.GetParam(i)); | |
348 | #endif | |
349 | } | |
350 | } | |
351 | ||
352 | ||
353 | ||
354 | ||
355 | void XmlResApp::CompileRes() | |
356 | { | |
357 | wxArrayString files = PrepareTempFiles(); | |
358 | ||
359 | wxRemoveFile(parOutput); | |
360 | ||
361 | if (!retCode) | |
362 | { | |
363 | if (flagCPP){ | |
364 | MakePackageCPP(files); | |
365 | if (flagH) | |
366 | GenCPPHeader(); | |
367 | } | |
368 | else if (flagPython) | |
369 | MakePackagePython(files); | |
370 | else | |
371 | MakePackageZIP(files); | |
372 | } | |
373 | ||
374 | DeleteTempFiles(files); | |
375 | } | |
376 | ||
377 | ||
378 | wxString XmlResApp::GetInternalFileName(const wxString& name, const wxArrayString& flist) | |
379 | { | |
380 | wxString name2 = name; | |
381 | name2.Replace(_T(":"), _T("_")); | |
382 | name2.Replace(_T("/"), _T("_")); | |
383 | name2.Replace(_T("\\"), _T("_")); | |
384 | name2.Replace(_T("*"), _T("_")); | |
385 | name2.Replace(_T("?"), _T("_")); | |
386 | ||
387 | wxString s = wxFileNameFromPath(parOutput) + _T("$") + name2; | |
388 | ||
389 | if (wxFileExists(s) && flist.Index(s) == wxNOT_FOUND) | |
390 | { | |
391 | for (int i = 0;; i++) | |
392 | { | |
393 | s.Printf(wxFileNameFromPath(parOutput) + _T("$%03i-") + name2, i); | |
394 | if (!wxFileExists(s) || flist.Index(s) != wxNOT_FOUND) | |
395 | break; | |
396 | } | |
397 | } | |
398 | return s; | |
399 | } | |
400 | ||
401 | wxArrayString XmlResApp::PrepareTempFiles() | |
402 | { | |
403 | wxArrayString flist; | |
404 | ||
405 | for (size_t i = 0; i < parFiles.GetCount(); i++) | |
406 | { | |
407 | if (flagVerbose) | |
408 | wxPrintf(_T("processing ") + parFiles[i] + _T("...\n")); | |
409 | ||
410 | wxXmlDocument doc; | |
411 | ||
412 | if (!doc.Load(parFiles[i])) | |
413 | { | |
414 | wxLogError(_T("Error parsing file ") + parFiles[i]); | |
415 | retCode = 1; | |
416 | continue; | |
417 | } | |
418 | ||
419 | wxString name, ext, path; | |
420 | wxFileName::SplitPath(parFiles[i], &path, &name, &ext); | |
421 | ||
422 | FindFilesInXML(doc.GetRoot(), flist, path); | |
423 | if (flagH) | |
424 | { | |
425 | wxXmlNode* node = (doc.GetRoot())->GetChildren(); | |
426 | wxString classValue,nameValue; | |
427 | while(node){ | |
428 | if(node->GetName() == _T("object") | |
429 | && node->GetAttribute(_T("class"),&classValue) | |
430 | && node->GetAttribute(_T("name"),&nameValue)){ | |
431 | ||
432 | aXRCWndClassData.Add( | |
433 | XRCWndClassData(nameValue,classValue,node) | |
434 | ); | |
435 | } | |
436 | node = node -> GetNext(); | |
437 | } | |
438 | } | |
439 | wxString internalName = GetInternalFileName(parFiles[i], flist); | |
440 | ||
441 | doc.Save(parOutputPath + wxFILE_SEP_PATH + internalName); | |
442 | flist.Add(internalName); | |
443 | } | |
444 | ||
445 | return flist; | |
446 | } | |
447 | ||
448 | ||
449 | // Does 'node' contain filename information at all? | |
450 | static bool NodeContainsFilename(wxXmlNode *node) | |
451 | { | |
452 | const wxString name = node->GetName(); | |
453 | ||
454 | // Any bitmaps (bitmap2 is used for disabled toolbar buttons): | |
455 | if ( name == _T("bitmap") || name == _T("bitmap2") ) | |
456 | return true; | |
457 | ||
458 | if ( name == _T("icon") ) | |
459 | return true; | |
460 | ||
461 | // wxBitmapButton: | |
462 | wxXmlNode *parent = node->GetParent(); | |
463 | if (parent != NULL && | |
464 | parent->GetAttribute(_T("class"), _T("")) == _T("wxBitmapButton") && | |
465 | (name == _T("focus") || | |
466 | name == _T("disabled") || | |
467 | name == _T("hover") || | |
468 | name == _T("selected"))) | |
469 | return true; | |
470 | ||
471 | // wxBitmap or wxIcon toplevel resources: | |
472 | if ( name == _T("object") ) | |
473 | { | |
474 | wxString klass = node->GetAttribute(_T("class"), wxEmptyString); | |
475 | if (klass == _T("wxBitmap") || | |
476 | klass == _T("wxIcon") || | |
477 | klass == _T("data") ) | |
478 | return true; | |
479 | } | |
480 | ||
481 | // URLs in wxHtmlWindow: | |
482 | if ( name == _T("url") && | |
483 | parent != NULL && | |
484 | parent->GetAttribute(_T("class"), _T("")) == _T("wxHtmlWindow") ) | |
485 | { | |
486 | // FIXME: this is wrong for e.g. http:// URLs | |
487 | return true; | |
488 | } | |
489 | ||
490 | return false; | |
491 | } | |
492 | ||
493 | // find all files mentioned in structure, e.g. <bitmap>filename</bitmap> | |
494 | void XmlResApp::FindFilesInXML(wxXmlNode *node, wxArrayString& flist, const wxString& inputPath) | |
495 | { | |
496 | // Is 'node' XML node element? | |
497 | if (node == NULL) return; | |
498 | if (node->GetType() != wxXML_ELEMENT_NODE) return; | |
499 | ||
500 | bool containsFilename = NodeContainsFilename(node); | |
501 | ||
502 | wxXmlNode *n = node->GetChildren(); | |
503 | while (n) | |
504 | { | |
505 | if (containsFilename && | |
506 | (n->GetType() == wxXML_TEXT_NODE || | |
507 | n->GetType() == wxXML_CDATA_SECTION_NODE)) | |
508 | { | |
509 | wxString fullname; | |
510 | if (wxIsAbsolutePath(n->GetContent()) || inputPath.empty()) | |
511 | fullname = n->GetContent(); | |
512 | else | |
513 | fullname = inputPath + wxFILE_SEP_PATH + n->GetContent(); | |
514 | ||
515 | if (flagVerbose) | |
516 | wxPrintf(_T("adding ") + fullname + _T("...\n")); | |
517 | ||
518 | wxString filename = GetInternalFileName(n->GetContent(), flist); | |
519 | n->SetContent(filename); | |
520 | ||
521 | if (flist.Index(filename) == wxNOT_FOUND) | |
522 | flist.Add(filename); | |
523 | ||
524 | wxFileInputStream sin(fullname); | |
525 | wxFileOutputStream sout(parOutputPath + wxFILE_SEP_PATH + filename); | |
526 | sin.Read(sout); // copy the stream | |
527 | } | |
528 | ||
529 | // subnodes: | |
530 | if (n->GetType() == wxXML_ELEMENT_NODE) | |
531 | FindFilesInXML(n, flist, inputPath); | |
532 | ||
533 | n = n->GetNext(); | |
534 | } | |
535 | } | |
536 | ||
537 | ||
538 | ||
539 | void XmlResApp::DeleteTempFiles(const wxArrayString& flist) | |
540 | { | |
541 | for (size_t i = 0; i < flist.GetCount(); i++) | |
542 | wxRemoveFile(parOutputPath + wxFILE_SEP_PATH + flist[i]); | |
543 | } | |
544 | ||
545 | ||
546 | ||
547 | void XmlResApp::MakePackageZIP(const wxArrayString& flist) | |
548 | { | |
549 | wxString files; | |
550 | ||
551 | for (size_t i = 0; i < flist.GetCount(); i++) | |
552 | files += flist[i] + _T(" "); | |
553 | files.RemoveLast(); | |
554 | ||
555 | if (flagVerbose) | |
556 | wxPrintf(_T("compressing ") + parOutput + _T("...\n")); | |
557 | ||
558 | wxString cwd = wxGetCwd(); | |
559 | wxSetWorkingDirectory(parOutputPath); | |
560 | int execres = wxExecute(_T("zip -9 -j ") + | |
561 | wxString(flagVerbose ? _T("\"") : _T("-q \"")) + | |
562 | parOutput + _T("\" ") + files, true); | |
563 | wxSetWorkingDirectory(cwd); | |
564 | if (execres == -1) | |
565 | { | |
566 | wxLogError(_T("Unable to execute zip program. Make sure it is in the path.")); | |
567 | wxLogError(_T("You can download it at http://www.cdrom.com/pub/infozip/")); | |
568 | retCode = 1; | |
569 | return; | |
570 | } | |
571 | } | |
572 | ||
573 | ||
574 | ||
575 | static wxString FileToCppArray(wxString filename, int num) | |
576 | { | |
577 | wxString output; | |
578 | wxString tmp; | |
579 | wxString snum; | |
580 | wxFFile file(filename, wxT("rb")); | |
581 | wxFileOffset offset = file.Length(); | |
582 | wxASSERT_MSG( offset >= 0 , wxT("Invalid file length") ); | |
583 | ||
584 | const size_t lng = wx_truncate_cast(size_t, offset); | |
585 | wxASSERT_MSG( static_cast<wxFileOffset>(lng) == offset, | |
586 | wxT("Huge file not supported") ); | |
587 | ||
588 | snum.Printf(_T("%i"), num); | |
589 | output.Printf(_T("static size_t xml_res_size_") + snum + _T(" = %i;\n"), lng); | |
590 | output += _T("static unsigned char xml_res_file_") + snum + _T("[] = {\n"); | |
591 | // we cannot use string literals because MSVC is dumb wannabe compiler | |
592 | // with arbitrary limitation to 2048 strings :( | |
593 | ||
594 | unsigned char *buffer = new unsigned char[lng]; | |
595 | file.Read(buffer, lng); | |
596 | ||
597 | for (size_t i = 0, linelng = 0; i < lng; i++) | |
598 | { | |
599 | tmp.Printf(_T("%i"), buffer[i]); | |
600 | if (i != 0) output << _T(','); | |
601 | if (linelng > 70) | |
602 | { | |
603 | linelng = 0; | |
604 | output << _T("\n"); | |
605 | } | |
606 | output << tmp; | |
607 | linelng += tmp.Length()+1; | |
608 | } | |
609 | ||
610 | delete[] buffer; | |
611 | ||
612 | output += _T("};\n\n"); | |
613 | ||
614 | return output; | |
615 | } | |
616 | ||
617 | ||
618 | void XmlResApp::MakePackageCPP(const wxArrayString& flist) | |
619 | { | |
620 | wxFFile file(parOutput, wxT("wt")); | |
621 | size_t i; | |
622 | ||
623 | if (flagVerbose) | |
624 | wxPrintf(_T("creating C++ source file ") + parOutput + _T("...\n")); | |
625 | ||
626 | file.Write("" | |
627 | "//\n" | |
628 | "// This file was automatically generated by wxrc, do not edit by hand.\n" | |
629 | "//\n\n" | |
630 | "#include <wx/wxprec.h>\n" | |
631 | "\n" | |
632 | "#ifdef __BORLANDC__\n" | |
633 | " #pragma hdrstop\n" | |
634 | "#endif\n" | |
635 | "\n" | |
636 | "" | |
637 | "#include <wx/filesys.h>\n" | |
638 | "#include <wx/fs_mem.h>\n" | |
639 | "#include <wx/xrc/xmlres.h>\n" | |
640 | "#include <wx/xrc/xh_all.h>\n" | |
641 | "\n" | |
642 | "#if wxCHECK_VERSION(2,8,5) && wxABI_VERSION >= 20805\n" | |
643 | " #define XRC_ADD_FILE(name, data, size, mime) \\\n" | |
644 | " wxMemoryFSHandler::AddFileWithMimeType(name, data, size, mime)\n" | |
645 | "#else\n" | |
646 | " #define XRC_ADD_FILE(name, data, size, mime) \\\n" | |
647 | " wxMemoryFSHandler::AddFile(name, data, size)\n" | |
648 | "#endif\n" | |
649 | "\n"); | |
650 | ||
651 | for (i = 0; i < flist.GetCount(); i++) | |
652 | file.Write( | |
653 | FileToCppArray(parOutputPath + wxFILE_SEP_PATH + flist[i], i)); | |
654 | ||
655 | file.Write("" | |
656 | "void " + parFuncname + "()\n" | |
657 | "{\n" | |
658 | "\n" | |
659 | " // Check for memory FS. If not present, load the handler:\n" | |
660 | " {\n" | |
661 | " wxMemoryFSHandler::AddFile(wxT(\"XRC_resource/dummy_file\"), wxT(\"dummy one\"));\n" | |
662 | " wxFileSystem fsys;\n" | |
663 | " wxFSFile *f = fsys.OpenFile(wxT(\"memory:XRC_resource/dummy_file\"));\n" | |
664 | " wxMemoryFSHandler::RemoveFile(wxT(\"XRC_resource/dummy_file\"));\n" | |
665 | " if (f) delete f;\n" | |
666 | " else wxFileSystem::AddHandler(new wxMemoryFSHandler);\n" | |
667 | " }\n" | |
668 | "\n"); | |
669 | ||
670 | for (i = 0; i < flist.GetCount(); i++) | |
671 | { | |
672 | wxString s; | |
673 | ||
674 | wxString mime; | |
675 | wxString ext = wxFileName(flist[i]).GetExt(); | |
676 | if ( ext.Lower() == _T("xrc") ) | |
677 | mime = _T("text/xml"); | |
678 | #if wxUSE_MIMETYPE | |
679 | else | |
680 | { | |
681 | wxFileType *ft = wxTheMimeTypesManager->GetFileTypeFromExtension(ext); | |
682 | if ( ft ) | |
683 | { | |
684 | ft->GetMimeType(&mime); | |
685 | delete ft; | |
686 | } | |
687 | } | |
688 | #endif // wxUSE_MIMETYPE | |
689 | ||
690 | s.Printf(" XRC_ADD_FILE(wxT(\"XRC_resource/" + flist[i] + | |
691 | "\"), xml_res_file_%i, xml_res_size_%i, _T(\"%s\"));\n", | |
692 | i, i, mime.c_str()); | |
693 | file.Write(s); | |
694 | } | |
695 | ||
696 | for (i = 0; i < parFiles.GetCount(); i++) | |
697 | { | |
698 | file.Write(" wxXmlResource::Get()->Load(wxT(\"memory:XRC_resource/" + | |
699 | GetInternalFileName(parFiles[i], flist) + "\"));\n"); | |
700 | } | |
701 | ||
702 | file.Write("}\n"); | |
703 | ||
704 | ||
705 | } | |
706 | ||
707 | void XmlResApp::GenCPPHeader() | |
708 | { | |
709 | wxString fileSpec = ((parOutput.BeforeLast('.')).AfterLast('/')).AfterLast('\\'); | |
710 | wxString heaFileName = fileSpec + _T(".h"); | |
711 | ||
712 | wxFFile file(heaFileName, wxT("wt")); | |
713 | file.Write( | |
714 | "//\n" | |
715 | "// This file was automatically generated by wxrc, do not edit by hand.\n" | |
716 | "//\n\n" | |
717 | "#ifndef __" + fileSpec + "_h__\n" | |
718 | "#define __" + fileSpec + "_h__\n" | |
719 | ); | |
720 | for(size_t i=0;i<aXRCWndClassData.GetCount();++i){ | |
721 | aXRCWndClassData.Item(i).GenerateHeaderCode(file); | |
722 | } | |
723 | file.Write( | |
724 | "\nvoid \n" | |
725 | + parFuncname | |
726 | + "();\n#endif\n"); | |
727 | } | |
728 | ||
729 | static wxString FileToPythonArray(wxString filename, int num) | |
730 | { | |
731 | wxString output; | |
732 | wxString tmp; | |
733 | wxString snum; | |
734 | wxFFile file(filename, wxT("rb")); | |
735 | wxFileOffset offset = file.Length(); | |
736 | wxASSERT_MSG( offset >= 0 , wxT("Invalid file length") ); | |
737 | ||
738 | const size_t lng = wx_truncate_cast(size_t, offset); | |
739 | wxASSERT_MSG( static_cast<wxFileOffset>(lng) == offset, | |
740 | wxT("Huge file not supported") ); | |
741 | ||
742 | snum.Printf(_T("%i"), num); | |
743 | output = " xml_res_file_" + snum + " = '''\\\n"; | |
744 | ||
745 | unsigned char *buffer = new unsigned char[lng]; | |
746 | file.Read(buffer, lng); | |
747 | ||
748 | for (size_t i = 0, linelng = 0; i < lng; i++) | |
749 | { | |
750 | unsigned char c = buffer[i]; | |
751 | if (c == '\n') | |
752 | { | |
753 | tmp = (wxChar)c; | |
754 | linelng = 0; | |
755 | } | |
756 | else if (c < 32 || c > 127 || c == '\'') | |
757 | tmp.Printf(_T("\\x%02x"), c); | |
758 | else if (c == '\\') | |
759 | tmp = _T("\\\\"); | |
760 | else | |
761 | tmp = (wxChar)c; | |
762 | if (linelng > 70) | |
763 | { | |
764 | linelng = 0; | |
765 | output << _T("\\\n"); | |
766 | } | |
767 | output << tmp; | |
768 | linelng += tmp.Length(); | |
769 | } | |
770 | ||
771 | delete[] buffer; | |
772 | ||
773 | output += _T("'''\n\n"); | |
774 | ||
775 | return output; | |
776 | } | |
777 | ||
778 | ||
779 | void XmlResApp::MakePackagePython(const wxArrayString& flist) | |
780 | { | |
781 | wxFFile file(parOutput, wxT("wt")); | |
782 | size_t i; | |
783 | ||
784 | if (flagVerbose) | |
785 | wxPrintf(_T("creating Python source file ") + parOutput + _T("...\n")); | |
786 | ||
787 | file.Write( | |
788 | "#\n" | |
789 | "# This file was automatically generated by wxrc, do not edit by hand.\n" | |
790 | "#\n\n" | |
791 | "import wx\n" | |
792 | "import wx.xrc\n\n" | |
793 | ); | |
794 | ||
795 | ||
796 | file.Write("def " + parFuncname + "():\n"); | |
797 | ||
798 | for (i = 0; i < flist.GetCount(); i++) | |
799 | file.Write( | |
800 | FileToPythonArray(parOutputPath + wxFILE_SEP_PATH + flist[i], i)); | |
801 | ||
802 | file.Write( | |
803 | " # check if the memory filesystem handler has been loaded yet, and load it if not\n" | |
804 | " wx.MemoryFSHandler.AddFile('XRC_resource/dummy_file', 'dummy value')\n" | |
805 | " fsys = wx.FileSystem()\n" | |
806 | " f = fsys.OpenFile('memory:XRC_resource/dummy_file')\n" | |
807 | " wx.MemoryFSHandler.RemoveFile('XRC_resource/dummy_file')\n" | |
808 | " if f is not None:\n" | |
809 | " f.Destroy()\n" | |
810 | " else:\n" | |
811 | " wx.FileSystem.AddHandler(wx.MemoryFSHandler())\n" | |
812 | "\n" | |
813 | " # load all the strings as memory files and load into XmlRes\n" | |
814 | ); | |
815 | ||
816 | ||
817 | for (i = 0; i < flist.GetCount(); i++) | |
818 | { | |
819 | wxString s; | |
820 | s.Printf(" wx.MemoryFSHandler.AddFile('XRC_resource/" + flist[i] + | |
821 | "', xml_res_file_%i)\n", i); | |
822 | file.Write(s); | |
823 | } | |
824 | for (i = 0; i < parFiles.GetCount(); i++) | |
825 | { | |
826 | file.Write(" wx.xrc.XmlResource.Get().Load('memory:XRC_resource/" + | |
827 | GetInternalFileName(parFiles[i], flist) + "')\n"); | |
828 | } | |
829 | ||
830 | file.Write("\n"); | |
831 | } | |
832 | ||
833 | ||
834 | ||
835 | void XmlResApp::OutputGettext() | |
836 | { | |
837 | ExtractedStrings str = FindStrings(); | |
838 | ||
839 | wxFFile fout; | |
840 | if (parOutput.empty()) | |
841 | fout.Attach(stdout); | |
842 | else | |
843 | fout.Open(parOutput, wxT("wt")); | |
844 | ||
845 | for (ExtractedStrings::const_iterator i = str.begin(); i != str.end(); ++i) | |
846 | { | |
847 | wxString s; | |
848 | ||
849 | s.Printf("#line %d \"%s\"\n", i->lineNo, i->filename); | |
850 | fout.Write(s); | |
851 | fout.Write("_(\"" + i->str + "\");\n"); | |
852 | } | |
853 | ||
854 | if (!parOutput) fout.Detach(); | |
855 | } | |
856 | ||
857 | ||
858 | ||
859 | ExtractedStrings XmlResApp::FindStrings() | |
860 | { | |
861 | ExtractedStrings arr, a2; | |
862 | ||
863 | for (size_t i = 0; i < parFiles.GetCount(); i++) | |
864 | { | |
865 | if (flagVerbose) | |
866 | wxPrintf(_T("processing ") + parFiles[i] + _T("...\n")); | |
867 | ||
868 | wxXmlDocument doc; | |
869 | if (!doc.Load(parFiles[i])) | |
870 | { | |
871 | wxLogError(_T("Error parsing file ") + parFiles[i]); | |
872 | retCode = 1; | |
873 | continue; | |
874 | } | |
875 | a2 = FindStrings(parFiles[i], doc.GetRoot()); | |
876 | ||
877 | WX_APPEND_ARRAY(arr, a2); | |
878 | } | |
879 | ||
880 | return arr; | |
881 | } | |
882 | ||
883 | ||
884 | ||
885 | static wxString ConvertText(const wxString& str) | |
886 | { | |
887 | wxString str2; | |
888 | const wxChar *dt; | |
889 | ||
890 | for (dt = str.c_str(); *dt; dt++) | |
891 | { | |
892 | if (*dt == wxT('_')) | |
893 | { | |
894 | if ( *(++dt) == wxT('_') ) | |
895 | str2 << wxT('_'); | |
896 | else | |
897 | str2 << wxT('&') << *dt; | |
898 | } | |
899 | else | |
900 | { | |
901 | switch (*dt) | |
902 | { | |
903 | case wxT('\n') : str2 << wxT("\\n"); break; | |
904 | case wxT('\t') : str2 << wxT("\\t"); break; | |
905 | case wxT('\r') : str2 << wxT("\\r"); break; | |
906 | case wxT('\\') : if ((*(dt+1) != 'n') && | |
907 | (*(dt+1) != 't') && | |
908 | (*(dt+1) != 'r')) | |
909 | str2 << wxT("\\\\"); | |
910 | else | |
911 | str2 << wxT("\\"); | |
912 | break; | |
913 | case wxT('"') : str2 << wxT("\\\""); break; | |
914 | default : str2 << *dt; break; | |
915 | } | |
916 | } | |
917 | } | |
918 | ||
919 | return str2; | |
920 | } | |
921 | ||
922 | ||
923 | ExtractedStrings | |
924 | XmlResApp::FindStrings(const wxString& filename, wxXmlNode *node) | |
925 | { | |
926 | ExtractedStrings arr; | |
927 | ||
928 | wxXmlNode *n = node; | |
929 | if (n == NULL) return arr; | |
930 | n = n->GetChildren(); | |
931 | ||
932 | while (n) | |
933 | { | |
934 | if ((node->GetType() == wxXML_ELEMENT_NODE) && | |
935 | // parent is an element, i.e. has subnodes... | |
936 | (n->GetType() == wxXML_TEXT_NODE || | |
937 | n->GetType() == wxXML_CDATA_SECTION_NODE) && | |
938 | // ...it is textnode... | |
939 | ( | |
940 | node/*not n!*/->GetName() == _T("label") || | |
941 | (node/*not n!*/->GetName() == _T("value") && | |
942 | !n->GetContent().IsNumber()) || | |
943 | node/*not n!*/->GetName() == _T("help") || | |
944 | node/*not n!*/->GetName() == _T("longhelp") || | |
945 | node/*not n!*/->GetName() == _T("tooltip") || | |
946 | node/*not n!*/->GetName() == _T("htmlcode") || | |
947 | node/*not n!*/->GetName() == _T("title") || | |
948 | node/*not n!*/->GetName() == _T("item") | |
949 | )) | |
950 | // ...and known to contain translatable string | |
951 | { | |
952 | if (!flagGettext || | |
953 | node->GetAttribute(_T("translate"), _T("1")) != _T("0")) | |
954 | { | |
955 | arr.push_back | |
956 | ( | |
957 | ExtractedString | |
958 | ( | |
959 | ConvertText(n->GetContent()), | |
960 | filename, | |
961 | n->GetLineNumber() | |
962 | ) | |
963 | ); | |
964 | } | |
965 | } | |
966 | ||
967 | // subnodes: | |
968 | if (n->GetType() == wxXML_ELEMENT_NODE) | |
969 | { | |
970 | ExtractedStrings a2 = FindStrings(filename, n); | |
971 | WX_APPEND_ARRAY(arr, a2); | |
972 | } | |
973 | ||
974 | n = n->GetNext(); | |
975 | } | |
976 | return arr; | |
977 | } |