1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XML resource compiler
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2000 Vaclav Slavik
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation
16 // For compilers that support precompilation, includes "wx/wx.h".
17 #include "wx/wxprec.h"
23 // for all others, include the necessary headers (this file is usually all you
24 // need because it includes almost all "standard" wxWindows headers
29 #include "wx/cmdline.h"
30 #include "wx/xrc/xml.h"
32 #include "wx/wfstream.h"
40 #error "You must compile the resource compiler with wxBase!"
44 class XmlResApp
: public wxApp
56 void ParseParams(const wxCmdLineParser
& cmdline
);
58 wxArrayString
PrepareTempFiles();
59 void FindFilesInXML(wxXmlNode
*node
, wxArrayString
& flist
, const wxString
& inputPath
);
61 void DeleteTempFiles(const wxArrayString
& flist
);
62 void MakePackageZIP(const wxArrayString
& flist
);
63 void MakePackageCPP(const wxArrayString
& flist
);
66 wxArrayString
FindStrings();
67 wxArrayString
FindStrings(wxXmlNode
*node
);
69 bool flagVerbose
, flagCPP
, flagGettext
;
70 wxString parOutput
, parFuncname
, parOutputPath
;
71 wxArrayString parFiles
;
75 IMPLEMENT_APP(XmlResApp
)
78 bool XmlResApp::OnInit()
80 int XmlResApp::OnRun()
83 static const wxCmdLineEntryDesc cmdLineDesc
[] =
85 { wxCMD_LINE_SWITCH
, "h", "help", "show help message" },
86 { wxCMD_LINE_SWITCH
, "v", "verbose", "be verbose" },
87 { wxCMD_LINE_SWITCH
, "c", "cpp-code", "output C++ source rather than .rsc file" },
88 { wxCMD_LINE_SWITCH
, "g", "gettext", "output list of translatable strings (to stdout or file if -o used)" },
89 { wxCMD_LINE_OPTION
, "n", "function", "C++ function name (with -c) [InitXmlResource]" },
90 { wxCMD_LINE_OPTION
, "o", "output", "output file [resource.xrs/cpp]" },
91 { wxCMD_LINE_OPTION
, "l", "list-of-handlers", "output list of neccessary handlers to this file" },
93 { wxCMD_LINE_PARAM
, NULL
, NULL
, "input file(s)",
94 wxCMD_LINE_VAL_STRING
, wxCMD_LINE_PARAM_MULTIPLE
},
100 // VS: I need reasonable output to console from wxCmdLineParser
101 wxLog::SetTimestamp(NULL
);
102 delete wxLog::SetActiveTarget(new wxLogStderr
);
105 wxCmdLineParser
parser(cmdLineDesc
, argc
, argv
);
107 switch (parser
.Parse())
140 void XmlResApp::ParseParams(const wxCmdLineParser
& cmdline
)
142 flagGettext
= cmdline
.Found("g");
143 flagVerbose
= cmdline
.Found("v");
144 flagCPP
= cmdline
.Found("c");
146 if (!cmdline
.Found("o", &parOutput
))
149 parOutput
= wxEmptyString
;
151 parOutput
= flagCPP
? "resource.cpp" : "resource.xrs";
153 parOutputPath
= wxPathOnly(parOutput
);
154 if (!parOutputPath
) parOutputPath
= ".";
156 if (!cmdline
.Found("n", &parFuncname
))
157 parFuncname
= "InitXmlResource";
159 for (size_t i
= 0; i
< cmdline
.GetParamCount(); i
++)
160 parFiles
.Add(cmdline
.GetParam(i
));
166 void XmlResApp::CompileRes()
168 wxArrayString files
= PrepareTempFiles();
170 wxRemoveFile(parOutput
);
175 MakePackageCPP(files
);
177 MakePackageZIP(files
);
180 DeleteTempFiles(files
);
185 wxArrayString
XmlResApp::PrepareTempFiles()
189 for (size_t i
= 0; i
< parFiles
.Count(); i
++)
192 wxPrintf("processing " + parFiles
[i
] + "...\n");
196 if (!doc
.Load(parFiles
[i
]))
198 wxLogError("Error parsing file " + parFiles
[i
]);
203 wxString name
, ext
, path
;
204 wxSplitPath(parFiles
[i
], &path
, &name
, &ext
);
206 FindFilesInXML(doc
.GetRoot(), flist
, path
);
208 doc
.Save(parOutputPath
+ "/" + name
+ ".xrc");
209 flist
.Add(name
+ ".xrc");
217 // find all files mentioned in structure, e.g. <bitmap>filename</bitmap>
218 void XmlResApp::FindFilesInXML(wxXmlNode
*node
, wxArrayString
& flist
, const wxString
& inputPath
)
221 if (n
== NULL
) return;
222 n
= n
->GetChildren();
226 if ((node
->GetType() == wxXML_ELEMENT_NODE
) &&
227 // parent is an element, i.e. has subnodes...
228 (n
->GetType() == wxXML_TEXT_NODE
||
229 n
->GetType() == wxXML_CDATA_SECTION_NODE
) &&
230 // ...it is textnode...
231 (node
/*not n!*/->GetName() == "bitmap"))
232 // ...and known to contain filename
235 wxString filename
= n
->GetContent();
236 if (wxIsAbsolutePath(n
->GetContent())) fullname
= n
->GetContent();
237 else fullname
= inputPath
+ "/" + n
->GetContent();
239 filename
.Replace("/", "_");
240 filename
.Replace("\\", "_");
241 filename
.Replace("*", "_");
242 filename
.Replace("?", "_");
243 n
->SetContent(filename
);
246 wxPrintf("adding " + filename
+ "...\n");
250 wxFileInputStream
sin(fullname
);
251 wxFileOutputStream
sout(parOutputPath
+ "/" + filename
);
252 sin
.Read(sout
); // copy the stream
256 if (n
->GetType() == wxXML_ELEMENT_NODE
)
257 FindFilesInXML(n
, flist
, inputPath
);
265 void XmlResApp::DeleteTempFiles(const wxArrayString
& flist
)
267 for (size_t i
= 0; i
< flist
.Count(); i
++)
268 wxRemoveFile(parOutputPath
+ "/" + flist
[i
]);
273 void XmlResApp::MakePackageZIP(const wxArrayString
& flist
)
277 for (size_t i
= 0; i
< flist
.Count(); i
++)
278 files
+= flist
[i
] + " ";
282 wxPrintf("compressing " + parOutput
+ "...\n");
284 if (wxExecute("zip -9 -j " + wxString(flagVerbose
? "" : "-q ") +
285 parOutput
+ " " + files
, TRUE
) == -1)
287 wxLogError("Unable to execute zip program. Make sure it is in the path.");
288 wxLogError("You can download it at http://www.cdrom.com/pub/infozip/");
297 static wxString
FileToCppArray(wxString filename
, int num
)
302 wxFFile
file(filename
, "rb");
303 size_t lng
= file
.Length();
305 snum
.Printf("%i", num
);
306 output
.Printf("static size_t xml_res_size_" + snum
+ " = %i;\n", lng
);
307 output
+= "static unsigned char xml_res_file_" + snum
+ "[] = {\n";
308 // we cannot use string literals because MSVC is dumb wannabe compiler
309 // with arbitrary limitation to 2048 strings :(
311 unsigned char *buffer
= new unsigned char[lng
];
312 file
.Read(buffer
, lng
);
314 for (size_t i
= 0, linelng
= 0; i
< lng
; i
++)
316 tmp
.Printf("%i", buffer
[i
]);
317 if (i
!= 0) output
<< ',';
324 linelng
+= tmp
.Length()+1;
335 void XmlResApp::MakePackageCPP(const wxArrayString
& flist
)
337 wxFFile
file(parOutput
, "wt");
341 wxPrintf("creating C++ source file " + parOutput
+ "...\n");
344 #include \"wx/wxprec.h\"\n\
346 #ifdef __BORLANDC__\n\
350 #ifndef WX_PRECOMP\n\
351 #include \"wx/wx.h\"\n\
354 #include \"wx/filesys.h\"\n\
355 #include \"wx/fs_mem.h\"\n\
356 #include \"wx/xrc/xmlres.h\"\n\
357 #include \"wx/xrc/xh_all.h\"\n\
360 for (i
= 0; i
< flist
.Count(); i
++)
361 file
.Write(FileToCppArray(flist
[i
], i
));
364 void " + parFuncname
+ "()\n\
367 // Check for memory FS. If not present, load the handler:\n\
369 wxMemoryFSHandler::AddFile(\"xml_resource/dummy_file\", \"dummy one\");\n\
370 wxFileSystem fsys;\n\
371 wxFSFile *f = fsys.OpenFile(\"memory:xml_resource/dummy_file\");\n\
372 wxMemoryFSHandler::RemoveFile(\"xml_resource/dummy_file\");\n\
374 else wxFileSystem::AddHandler(new wxMemoryFSHandler);\n\
378 for (i
= 0; i
< flist
.Count(); i
++)
381 s
.Printf(" wxMemoryFSHandler::AddFile(\"xml_resource/" + flist
[i
] +
382 "\", xml_res_file_%i, xml_res_size_%i);\n", i
, i
);
386 for (i
= 0; i
< parFiles
.Count(); i
++)
388 wxString name
, ext
, path
;
389 wxSplitPath(parFiles
[i
], &path
, &name
, &ext
);
390 file
.Write(" wxXmlResource::Get()->Load(\"memory:xml_resource/" +
391 name
+ ".xrc" + "\");\n");
401 void XmlResApp::OutputGettext()
403 wxArrayString str
= FindStrings();
406 if (!parOutput
) fout
.Attach(stdout
);
407 else fout
.Open(parOutput
, _T("wt"));
409 for (size_t i
= 0; i
< str
.GetCount(); i
++)
410 fout
.Write(_T("_(\"") + str
[i
] + _T("\")\n"));
412 if (!parOutput
) fout
.Detach();
417 wxArrayString
XmlResApp::FindStrings()
419 wxArrayString arr
, a2
;
421 for (size_t i
= 0; i
< parFiles
.Count(); i
++)
424 wxPrintf("processing " + parFiles
[i
] + "...\n");
427 if (!doc
.Load(parFiles
[i
]))
429 wxLogError("Error parsing file " + parFiles
[i
]);
433 a2
= FindStrings(doc
.GetRoot());
434 WX_APPEND_ARRAY(arr
, a2
);
442 wxArrayString
XmlResApp::FindStrings(wxXmlNode
*node
)
447 if (n
== NULL
) return arr
;
448 n
= n
->GetChildren();
452 if ((node
->GetType() == wxXML_ELEMENT_NODE
) &&
453 // parent is an element, i.e. has subnodes...
454 (n
->GetType() == wxXML_TEXT_NODE
||
455 n
->GetType() == wxXML_CDATA_SECTION_NODE
) &&
456 // ...it is textnode...
458 node
/*not n!*/->GetName() == _T("label") ||
459 (node
/*not n!*/->GetName() == _T("value") &&
460 !n
->GetContent().IsNumber()) ||
461 node
/*not n!*/->GetName() == _T("help") ||
462 node
/*not n!*/->GetName() == _T("longhelp") ||
463 node
/*not n!*/->GetName() == _T("tooltip") ||
464 node
/*not n!*/->GetName() == _T("htmlcode") ||
465 node
/*not n!*/->GetName() == _T("title")
467 // ...and known to contain filename
469 arr
.Add(n
->GetContent());
473 if (n
->GetType() == wxXML_ELEMENT_NODE
)
475 wxArrayString a2
= FindStrings(n
);
476 WX_APPEND_ARRAY(arr
, a2
);