wxArrayString PrepareTempFiles();
void FindFilesInXML(wxXmlNode *node, wxArrayString& flist, const wxString& inputPath);
+ wxString GetInternalFileName(const wxString& name, const wxArrayString& flist);
void DeleteTempFiles(const wxArrayString& flist);
void MakePackageZIP(const wxArrayString& flist);
void MakePackageCPP(const wxArrayString& flist);
{
static const wxCmdLineEntryDesc cmdLineDesc[] =
{
- { wxCMD_LINE_SWITCH, "h", "help", "show help message" },
+ { wxCMD_LINE_SWITCH, "h", "help", "show help message",
+ wxCMD_LINE_VAL_NONE, wxCMD_LINE_OPTION_HELP },
{ wxCMD_LINE_SWITCH, "v", "verbose", "be verbose" },
{ wxCMD_LINE_SWITCH, "c", "cpp-code", "output C++ source rather than .rsc file" },
{ wxCMD_LINE_SWITCH, "g", "gettext", "output list of translatable strings (to stdout or file if -o used)" },
{ wxCMD_LINE_OPTION, "n", "function", "C++ function name (with -c) [InitXmlResource]" },
{ wxCMD_LINE_OPTION, "o", "output", "output file [resource.xrs/cpp]" },
+#if 0 // not yet implemented
{ wxCMD_LINE_OPTION, "l", "list-of-handlers", "output list of neccessary handlers to this file" },
-
+#endif
{ wxCMD_LINE_PARAM, NULL, NULL, "input file(s)",
- wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_MULTIPLE },
+ wxCMD_LINE_VAL_STRING,
+ wxCMD_LINE_PARAM_MULTIPLE | wxCMD_LINE_OPTION_MANDATORY },
{ wxCMD_LINE_NONE }
};
-#if wxUSE_GUI
+#if wxUSE_GUI && !defined(__WXMSW__)
// VS: I need reasonable output to console from wxCmdLineParser
+ // - temporary, will hopefully be fixed in future in wxWin
wxLog::SetTimestamp(NULL);
delete wxLog::SetActiveTarget(new wxLogStderr);
#endif
}
+wxString XmlResApp::GetInternalFileName(const wxString& name, const wxArrayString& flist)
+{
+ wxString name2 = name;
+ name2.Replace(":", "_");
+ name2.Replace("/", "_");
+ name2.Replace("\\", "_");
+ name2.Replace("*", "_");
+ name2.Replace("?", "_");
+
+ wxString s = wxFileNameFromPath(parOutput) + "$" + name2;
+
+ if (wxFileExists(s) && flist.Index(s) == wxNOT_FOUND)
+ {
+ for (int i = 0;; i++)
+ {
+ s.Printf(wxFileNameFromPath(parOutput) + "$%03i-" + name2, i);
+ if (!wxFileExists(s) || flist.Index(s) != wxNOT_FOUND)
+ break;
+ }
+ }
+ return s;
+}
wxArrayString XmlResApp::PrepareTempFiles()
{
FindFilesInXML(doc.GetRoot(), flist, path);
- doc.Save(parOutputPath + "/" + name + ".xrc");
- flist.Add(name + ".xrc");
+ wxString internalName = GetInternalFileName(parFiles[i], flist);
+
+ doc.Save(parOutputPath + "/" + internalName);
+ flist.Add(internalName);
}
return flist;
// ...and known to contain filename
{
wxString fullname;
- wxString filename = n->GetContent();
- if (wxIsAbsolutePath(n->GetContent())) fullname = n->GetContent();
+ if (wxIsAbsolutePath(n->GetContent()) || inputPath == "") fullname = n->GetContent();
else fullname = inputPath + "/" + n->GetContent();
+
+ if (flagVerbose)
+ wxPrintf("adding " + fullname + "...\n");
- filename.Replace("/", "_");
- filename.Replace("\\", "_");
- filename.Replace("*", "_");
- filename.Replace("?", "_");
+ wxString filename = GetInternalFileName(n->GetContent(), flist);
n->SetContent(filename);
-
- if (flagVerbose)
- wxPrintf("adding " + filename + "...\n");
flist.Add(filename);
wxPrintf("creating C++ source file " + parOutput + "...\n");
file.Write("\
-#include \"wx/wxprec.h\"\n\
+#include <wx/wxprec.h>\n\
\n\
#ifdef __BORLANDC__\n\
#pragma hdrstop\n\
#endif\n\
\n\
#ifndef WX_PRECOMP\n\
- #include \"wx/wx.h\"\n\
+ #include <wx/wx.h>\n\
#endif\n\
\
-#include \"wx/filesys.h\"\n\
-#include \"wx/fs_mem.h\"\n\
-#include \"wx/xrc/xmlres.h\"\n\
-#include \"wx/xrc/xh_all.h\"\n\
+#include <wx/filesys.h>\n\
+#include <wx/fs_mem.h>\n\
+#include <wx/xrc/xmlres.h>\n\
+#include <wx/xrc/xh_all.h>\n\
\n");
for (i = 0; i < flist.Count(); i++)
\n\
// Check for memory FS. If not present, load the handler:\n\
{\n\
- wxMemoryFSHandler::AddFile(\"xml_resource/dummy_file\", \"dummy one\");\n\
+ wxMemoryFSHandler::AddFile(\"XRC_resource/dummy_file\", \"dummy one\");\n\
wxFileSystem fsys;\n\
- wxFSFile *f = fsys.OpenFile(\"memory:xml_resource/dummy_file\");\n\
- wxMemoryFSHandler::RemoveFile(\"xml_resource/dummy_file\");\n\
+ wxFSFile *f = fsys.OpenFile(\"memory:XRC_resource/dummy_file\");\n\
+ wxMemoryFSHandler::RemoveFile(\"XRC_resource/dummy_file\");\n\
if (f) delete f;\n\
else wxFileSystem::AddHandler(new wxMemoryFSHandler);\n\
}\n\
for (i = 0; i < flist.Count(); i++)
{
wxString s;
- s.Printf(" wxMemoryFSHandler::AddFile(\"xml_resource/" + flist[i] +
+ s.Printf(" wxMemoryFSHandler::AddFile(\"XRC_resource/" + flist[i] +
"\", xml_res_file_%i, xml_res_size_%i);\n", i, i);
file.Write(s);
}
for (i = 0; i < parFiles.Count(); i++)
{
- wxString name, ext, path;
- wxSplitPath(parFiles[i], &path, &name, &ext);
- file.Write(" wxXmlResource::Get()->Load(\"memory:xml_resource/" +
- name + ".xrc" + "\");\n");
+ file.Write(" wxXmlResource::Get()->Load(\"memory:XRC_resource/" +
+ GetInternalFileName(parFiles[i], flist) + "\");\n");
}
file.Write("}\n");