mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
84 lines
2.2 KiB
C++
84 lines
2.2 KiB
C++
#include "ide.h"
|
|
|
|
bool IsDoc(String s)
|
|
{
|
|
s = ToLower(s);
|
|
return s.Find("readme") >= 0 || s.Find("copying") >= 0 || s.Find("license") >= 0 ||
|
|
s.Find("authors") >= 0;
|
|
}
|
|
|
|
void CopyFolder(const char *_dst, const char *_src, Index<String>& used, bool all)
|
|
{
|
|
String dst = NativePath(_dst);
|
|
String src = NativePath(_src);
|
|
if(dst == src)
|
|
return;
|
|
FindFile ff(AppendFileName(src, "*"));
|
|
bool realize = true;
|
|
while(ff) {
|
|
String s = AppendFileName(src, ff.GetName());
|
|
String d = AppendFileName(dst, ff.GetName());
|
|
if(ff.IsFolder())
|
|
CopyFolder(d, s, used, all);
|
|
else
|
|
if(ff.IsFile() && (all || IsDoc(s) || used.Find(s) >= 0)) {
|
|
if(realize) {
|
|
RealizeDirectory(dst);
|
|
realize = false;
|
|
}
|
|
SaveFile(d, LoadFile(s));
|
|
SetFileTime(d, ff.GetLastWriteTime());
|
|
}
|
|
ff.Next();
|
|
}
|
|
}
|
|
|
|
void Ide::ExportMakefile(const String& ep)
|
|
{
|
|
SaveMakeFile(AppendFileName(ep, "Makefile"), true);
|
|
}
|
|
|
|
void Ide::ExportProject(const String& ep, bool all, bool gui)
|
|
{
|
|
SaveFile(false);
|
|
::Workspace wspc;
|
|
wspc.Scan(main);
|
|
Index<String> used;
|
|
HdependClearDependencies();
|
|
for(int i = 0; i < wspc.GetCount(); i++) {
|
|
const Package& p = wspc.GetPackage(i);
|
|
String pn = wspc[i];
|
|
for(int j = 0; j < p.GetCount(); j++) {
|
|
const Package::File& f = p[j];
|
|
if(!f.separator) {
|
|
String p = SourcePath(pn, f);
|
|
used.FindAdd(p);
|
|
Vector<String> d = HdependGetDependencies(p);
|
|
for(int q = 0; q < d.GetCount(); q++)
|
|
used.FindAdd(d[q]);
|
|
for(int q = 0; q < f.depends.GetCount(); q++)
|
|
used.FindAdd(SourcePath(pn, f.depends[q].text));
|
|
}
|
|
}
|
|
used.FindAdd(SourcePath(pn, "init"));
|
|
}
|
|
if(FileExists(ep)) {
|
|
if(gui && !PromptYesNo(DeQtf(ep) + " is existing file.&"
|
|
"Do you want to delete it?")) return;
|
|
FileDelete(ep);
|
|
}
|
|
if(DirectoryExists(ep)) {
|
|
if(gui && !PromptYesNo(DeQtf(ep) + " is existing directory.&"
|
|
"Do you want to replace it?")) return;
|
|
DeleteFolderDeep(ep);
|
|
}
|
|
|
|
Progress pi("Exporting project");
|
|
pi.SetTotal(wspc.GetCount());
|
|
for(int i = 0; i < wspc.GetCount(); i++) {
|
|
if(gui && pi.StepCanceled())
|
|
return;
|
|
CopyFolder(AppendFileName(ep, wspc[i]), PackageDirectory(wspc[i]), used, all);
|
|
}
|
|
ExportMakefile(ep);
|
|
}
|