Browse Source

Fix python packing logic

Adam Johnson 12 years ago
parent
commit
91b4bb2da6
  1. 13
      Sources/Plasma/Apps/plPythonPack/main.cpp

13
Sources/Plasma/Apps/plPythonPack/main.cpp

@ -63,6 +63,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#endif #endif
static const char* kPackFileName = "python.pak"; static const char* kPackFileName = "python.pak";
static const char* kModuleFile = "__init__.py";
#if HS_BUILD_FOR_WIN32 #if HS_BUILD_FOR_WIN32
static const char* kGlueFile = ".\\plasma\\glue.py"; static const char* kGlueFile = ".\\plasma\\glue.py";
#else #else
@ -338,6 +339,9 @@ void FindPackages(std::vector<plFileName>& fileNames, std::vector<plFileName>& p
std::vector<plFileName> packagePathNames; std::vector<plFileName> packagePathNames;
plFileName packagePath = plFileName::Join(path, packages[i]); plFileName packagePath = plFileName::Join(path, packages[i]);
FindFiles(packageFileNames, packagePathNames, packagePath); FindFiles(packageFileNames, packagePathNames, packagePath);
// Check for the magic file to make sure this is really a package...
if (std::find(packageFileNames.begin(), packageFileNames.end(), kModuleFile) != packageFileNames.end()) {
for (int j = 0; j < packageFileNames.size(); j++) { for (int j = 0; j < packageFileNames.size(); j++) {
fileNames.push_back(packageName+"."+packageFileNames[j].AsString()); fileNames.push_back(packageName+"."+packageFileNames[j].AsString());
pathNames.push_back(packagePathNames[j]); pathNames.push_back(packagePathNames[j]);
@ -345,6 +349,7 @@ void FindPackages(std::vector<plFileName>& fileNames, std::vector<plFileName>& p
FindPackages(fileNames, pathNames, packagePath, packageName); FindPackages(fileNames, pathNames, packagePath, packageName);
} }
} }
}
void PackDirectory(const plFileName& dir, const plFileName& rootPath, const plFileName& pakName, std::vector<plFileName>& extraDirs, bool packSysAndPlasma = false) void PackDirectory(const plFileName& dir, const plFileName& rootPath, const plFileName& pakName, std::vector<plFileName>& extraDirs, bool packSysAndPlasma = false)
{ {
@ -473,9 +478,13 @@ int main(int argc, char *argv[])
} }
PackDirectory(rootPath, rootPath, plFileName::Join(rootPath, kPackFileName), dirNames, true); PackDirectory(rootPath, rootPath, plFileName::Join(rootPath, kPackFileName), dirNames, true);
for (int i=0; i<dirNames.size(); i++) for (auto it = dirNames.begin(); it != dirNames.end(); ++it)
{ {
PackDirectory(dirNames[i], rootPath, plFileName::Join(rootPath, dirNames[i]+".pak"), dirNames); // Make sure this subdirectory is not just a python module. Those are packed into the
// main python root package...
plFileName dir = plFileName::Join(rootPath, *it);
if (plFileSystem::ListDir(dir, kModuleFile).empty())
PackDirectory(*it, rootPath, plFileName::Join(rootPath, *it + ".pak"), dirNames);
} }
return 0; return 0;

Loading…
Cancel
Save