| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420 |
- /*=========================================================================
- Program: Insight Segmentation & Registration Toolkit
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2000 National Library of Medicine
- All rights reserved.
- See COPYRIGHT.txt for copyright details.
- =========================================================================*/
- #include "cmDSPMakefile.h"
- #include "cmStandardIncludes.h"
- #include "cmSystemTools.h"
- #include "cmRegularExpression.h"
- #include "cmCacheManager.h"
- cmDSPMakefile::~cmDSPMakefile()
- {
- }
- cmDSPMakefile::cmDSPMakefile(cmMakefile*mf)
- {
- m_Makefile = mf;
- }
- void cmDSPMakefile::OutputDSPFile()
- {
- // If not an in source build, then create the output directory
- if(strcmp(m_Makefile->GetStartOutputDirectory(),
- m_Makefile->GetHomeDirectory()) != 0)
- {
- if(!cmSystemTools::MakeDirectory(m_Makefile->GetStartOutputDirectory()))
- {
- cmSystemTools::Error("Error creating directory ",
- m_Makefile->GetStartOutputDirectory());
- }
- }
- // Setup /I and /LIBPATH options for the resulting DSP file
- std::vector<std::string>& includes = m_Makefile->GetIncludeDirectories();
- std::vector<std::string>::iterator i;
- for(i = includes.begin(); i != includes.end(); ++i)
- {
- m_IncludeOptions += "/I \"";
- m_IncludeOptions += *i;
- m_IncludeOptions += "\" ";
- }
- std::vector<std::string>& libs = m_Makefile->GetLinkLibraries();
- for(i = libs.begin(); i != libs.end(); ++i)
- {
- m_DebugLibraryOptions += " ";
- m_DebugLibraryOptions += *i;
- m_DebugLibraryOptions += ".lib ";
- }
- std::vector<std::string>& libswin32 = m_Makefile->GetLinkLibrariesWin32();
- for(i = libswin32.begin(); i != libswin32.end(); ++i)
- {
- m_DebugLibraryOptions += " ";
- m_DebugLibraryOptions += *i;
- m_DebugLibraryOptions += ".lib ";
- }
- std::vector<std::string>& libdirs = m_Makefile->GetLinkDirectories();
- for(i = libdirs.begin(); i != libdirs.end(); ++i)
- {
- m_DebugLibraryOptions += " /LIBPATH:\"";
- m_DebugLibraryOptions += *i;
- if(i->find("Debug") == std::string::npos)
- {
- if(i->find("Release") == std::string::npos)
- {
- m_DebugLibraryOptions += "/$(OUTDIR)\" ";
- }
- }
- }
- m_DebugLibraryOptions += "/STACK:10000000 ";
- // add any extra define flags
- m_ReleaseLibraryOptions = m_DebugLibraryOptions;
- m_DebugDLLLibraryOptions = m_DebugLibraryOptions;
- m_ReleaseDLLLibraryOptions = m_DebugDLLLibraryOptions;
- m_ReleaseMinSizeLibraryOptions = m_ReleaseLibraryOptions;
-
- // Create the DSP or set of DSP's for libraries and executables
- if(strlen(m_Makefile->GetLibraryName()) != 0)
- {
- const char* cacheValue
- = cmCacheManager::GetInstance()->GetCacheValue("BUILD_SHARED_LIBS");
- if(cacheValue && strcmp(cacheValue,"0"))
- {
- this->SetBuildType(DLL);
- }
- else
- {
- this->SetBuildType(STATIC_LIBRARY);
- }
- this->CreateSingleDSP();
- }
- // if there are executables build them
- if (m_Makefile->HasExecutables())
- {
- this->CreateExecutableDSPFiles();
- }
- }
- void cmDSPMakefile::CreateExecutableDSPFiles()
- {
- std::vector<cmClassFile>& Classes = m_Makefile->GetClasses();
- for(int i = 0; i < Classes.size(); ++i)
- {
- cmClassFile& classfile = Classes[i];
- if (classfile.m_IsExecutable)
- {
- std::string fname = m_Makefile->GetStartOutputDirectory();
- fname += "/";
- fname += classfile.m_ClassName;
- fname += ".dsp";
- std::ofstream fout(fname.c_str());
- if(!fout)
- {
- cmSystemTools::Error("Error Writing ",
- fname.c_str());
- }
- else
- {
- m_Makefile->SetLibraryName(classfile.m_ClassName.c_str());
- this->SetBuildType(EXECUTABLE);
- std::string pname = m_Makefile->GetLibraryName();
- m_CreatedProjectNames.push_back(pname);
-
- this->WriteDSPHeader(fout);
- this->WriteDSPBeginGroup(fout, "Source Files", "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat");
- this->WriteDSPBuildRule(fout, classfile.m_FullPath.c_str());
- this->WriteDSPEndGroup(fout);
- this->WriteDSPBuildRule(fout);
- this->WriteDSPFooter(fout);
- }
- }
- }
- }
- void cmDSPMakefile::CreateSingleDSP()
- {
- std::string fname;
- fname = m_Makefile->GetStartOutputDirectory();
- fname += "/";
- fname += m_Makefile->GetLibraryName();
- fname += ".dsp";
- m_CreatedProjectNames.clear();
- std::string pname = m_Makefile->GetLibraryName();
- m_CreatedProjectNames.push_back(pname);
- std::ofstream fout(fname.c_str());
- if(!fout)
- {
- cmSystemTools::Error("Error Writing ",
- fname.c_str());
- }
- this->WriteDSPFile(fout);
- }
- void cmDSPMakefile::WriteDSPBuildRule(std::ostream& fout)
- {
- std::string dspname = *(m_CreatedProjectNames.end()-1);
- dspname += ".dsp";
- std::string makefileIn = m_Makefile->GetStartDirectory();
- makefileIn += "/";
- makefileIn += "CMakeLists.txt";
- std::string dsprule = m_Makefile->GetHomeDirectory();
- dsprule += "/CMake/Source/CMakeSetupCMD ";
- dsprule += makefileIn;
- dsprule += " -DSP -H";
- dsprule += m_Makefile->GetHomeDirectory();
- dsprule += " -S";
- dsprule += m_Makefile->GetStartDirectory();
- dsprule += " -O";
- dsprule += m_Makefile->GetStartOutputDirectory();
- dsprule += " -B";
- dsprule += m_Makefile->GetHomeOutputDirectory();
- std::vector<std::string> depends;
- this->WriteCustomRule(fout, makefileIn.c_str(),
- dspname.c_str(),
- dsprule.c_str(),
- depends);
- }
- void cmDSPMakefile::WriteDSPFile(std::ostream& fout)
- {
- this->WriteDSPHeader(fout);
- this->WriteDSPBeginGroup(fout, "Source Files", "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat");
- this->WriteDSPBuildRules(fout,"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat");
- this->WriteDSPEndGroup(fout);
- this->WriteDSPBeginGroup(fout, "Header Files", "h;hpp;hxx;hm;inl");
- this->WriteDSPBuildRules(fout,"h;hpp;hxx;hm;inl");
- this->WriteDSPEndGroup(fout);
- this->WriteDSPBeginGroup(fout, "XML Files", "xml");
- this->WriteDSPBuildRules(fout,"xml");
- this->WriteDSPEndGroup(fout);
- this->WriteDSPBuildRule(fout);
- this->WriteDSPFooter(fout);
- }
- void cmDSPMakefile::WriteCustomRule(std::ostream& fout,
- const char* source,
- const char* result,
- const char* command,
- std::vector<std::string>& depends)
- {
- fout << "# Begin Source File\n\n";
- fout << "SOURCE=" << source << "\n\n";
- std::vector<std::string>::iterator i;
- for(i = m_Configurations.begin(); i != m_Configurations.end(); ++i)
- {
- if (i == m_Configurations.begin())
- {
- fout << "!IF \"$(CFG)\" == " << i->c_str() << std::endl;
- }
- else
- {
- fout << "!ELSEIF \"$(CFG)\" == " << i->c_str() << std::endl;
- }
- fout << "# Begin Custom Build\n\n";
- fout << '\"' << result << "\" : \"$(SOURCE)\" \"$(INTDIR)\" \"$(OUTDIR)\" ";
- for (int i = 0; i < depends.size(); i++)
- {
- fout << "\"" << depends[i].c_str() << "\" ";
- }
- fout << "\n " << command << "\n\n";
- fout << "# End Custom Build\n\n";
- }
-
- fout << "!ENDIF\n\n";
- fout << "# End Source File\n";
- }
- void cmDSPMakefile::WriteDSPBeginGroup(std::ostream& fout,
- const char* group,
- const char* filter)
- {
- fout << "# Begin Group \"" << group << "\"\n"
- "# PROP Default_Filter \"" << filter << "\"\n";
- }
- void cmDSPMakefile::WriteDSPEndGroup(std::ostream& fout)
- {
- fout << "# End Group\n";
- }
- void cmDSPMakefile::SetBuildType(BuildType b)
- {
- m_BuildType = b;
- switch(b)
- {
- case STATIC_LIBRARY:
- m_DSPHeaderTemplate = m_Makefile->GetHomeDirectory();
- m_DSPHeaderTemplate += "/CMake/Source/staticLibHeader.dsptemplate";
- m_DSPFooterTemplate = m_Makefile->GetHomeDirectory();
- m_DSPFooterTemplate += "/CMake/Source/staticLibFooter.dsptemplate";
- break;
- case DLL:
- m_DSPHeaderTemplate = m_Makefile->GetHomeDirectory();
- m_DSPHeaderTemplate += "/CMake/Source/DLLHeader.dsptemplate";
- m_DSPFooterTemplate = m_Makefile->GetHomeDirectory();
- m_DSPFooterTemplate += "/CMake/Source/DLLFooter.dsptemplate";
- break;
- case EXECUTABLE:
- m_DSPHeaderTemplate = m_Makefile->GetHomeDirectory();
- m_DSPHeaderTemplate += "/CMake/Source/EXEHeader.dsptemplate";
- m_DSPFooterTemplate = m_Makefile->GetHomeDirectory();
- m_DSPFooterTemplate += "/CMake/Source/EXEFooter.dsptemplate";
- break;
- }
- // once the build type is set, determine what configurations are
- // possible
- std::ifstream fin(m_DSPHeaderTemplate.c_str());
- cmRegularExpression reg("# Name ");
- if(!fin)
- {
- cmSystemTools::Error("Error Reading ", m_DSPHeaderTemplate.c_str());
- }
- char buffer[2048];
- while(fin)
- {
- fin.getline(buffer, 2048);
- std::string line = buffer;
- cmSystemTools::ReplaceString(line, "OUTPUT_LIBNAME",
- m_Makefile->GetLibraryName());
- if (reg.find(line))
- {
- m_Configurations.push_back(line.substr(reg.end()));
- }
- }
- }
-
- void cmDSPMakefile::WriteDSPHeader(std::ostream& fout)
- {
- std::ifstream fin(m_DSPHeaderTemplate.c_str());
- if(!fin)
- {
- cmSystemTools::Error("Error Reading ", m_DSPHeaderTemplate.c_str());
- }
- char buffer[2048];
- while(fin)
- {
- fin.getline(buffer, 2048);
- std::string line = buffer;
- cmSystemTools::ReplaceString(line, "CM_RELEASE_LIBRARIES",
- m_ReleaseLibraryOptions.c_str());
- cmSystemTools::ReplaceString(line, "CM_RELEASEMINSIZE_LIBRARIES",
- m_ReleaseMinSizeLibraryOptions.c_str());
- cmSystemTools::ReplaceString(line, "CM_DEBUG_LIBRARIES",
- m_DebugLibraryOptions.c_str());
- cmSystemTools::ReplaceString(line, "CM_RELEASEDLL_LIBRARIES",
- m_ReleaseDLLLibraryOptions.c_str());
- cmSystemTools::ReplaceString(line, "CM_DEBUGDLL_LIBRARIES",
- m_DebugDLLLibraryOptions.c_str());
- cmSystemTools::ReplaceString(line, "BUILD_INCLUDES",
- m_IncludeOptions.c_str());
- cmSystemTools::ReplaceString(line, "OUTPUT_LIBNAME",
- m_Makefile->GetLibraryName());
- cmSystemTools::ReplaceString(line,
- "EXTRA_DEFINES",
- m_Makefile->GetDefineFlags());
- fout << line.c_str() << std::endl;
- }
- }
- void cmDSPMakefile::WriteDSPFooter(std::ostream& fout)
- {
- std::ifstream fin(m_DSPFooterTemplate.c_str());
- if(!fin)
- {
- cmSystemTools::Error("Error Reading ",
- m_DSPFooterTemplate.c_str());
- }
- char buffer[2048];
- while(fin)
- {
- fin.getline(buffer, 2048);
- fout << buffer << std::endl;
- }
- }
-
- void cmDSPMakefile::WriteDSPBuildRules(std::ostream& fout, const char *ext)
- {
- // make a list if matching extentions
- std::vector<std::string> exts;
- std::string inExts = ext;
-
- std::string::size_type pos = inExts.find(';');
- std::string::size_type lastPos = 0;
- while (pos != std::string::npos)
- {
- std::string anExt = inExts.substr(lastPos, pos - lastPos);
- exts.push_back(anExt);
- lastPos = pos + 1;
- pos = inExts.find(';',lastPos);
- }
- exts.push_back(inExts.substr(lastPos,inExts.size() - lastPos));
-
- // loop over any classes
- std::vector<cmClassFile>& Classes = m_Makefile->GetClasses();
- for(int i = 0; i < Classes.size(); ++i)
- {
- if(!Classes[i].m_IsExecutable && !Classes[i].m_HeaderFileOnly)
- {
- // is this class of the appropriate type ?
- if (std::find(exts.begin(),exts.end(),Classes[i].m_ClassExtension)
- != exts.end())
- {
- this->WriteDSPBuildRule(fout, Classes[i].m_FullPath.c_str());
- }
- }
- }
- // loop over any custom commands
- std::vector<cmMakefile::customCommand>& ccoms =
- this->GetMakefile()->GetCustomCommands();
- int numCust = ccoms.size();
- for (int j = 0; j < numCust; j++)
- {
- cmMakefile::customCommand &cc = ccoms[j];
- // is the source of the command the correct type
- pos = cc.m_Source.rfind('.');
- if(pos != std::string::npos)
- {
- if (std::find(exts.begin(),exts.end(),
- cc.m_Source.substr(pos+1,cc.m_Source.size() - pos - 1))
- != exts.end())
- {
- this->WriteCustomRule(fout, cc.m_Source.c_str(),
- cc.m_Result.c_str(),
- cc.m_Command.c_str(),
- cc.m_Depends);
- }
- }
- }
- }
- void cmDSPMakefile::WriteDSPBuildRule(std::ostream& fout, const char* path)
- {
- fout << "# Begin Source File\n\n";
- fout << "SOURCE="
- << path << "\n";
- fout << "# End Source File\n";
- }
|