| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112 |
- /*=========================================================================
- Program: CMake - Cross-Platform Makefile Generator
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
- See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the above copyright notices for more information.
- =========================================================================*/
- #include "cmInstallCommand.h"
- #include "cmInstallDirectoryGenerator.h"
- #include "cmInstallFilesGenerator.h"
- #include "cmInstallScriptGenerator.h"
- #include "cmInstallTargetGenerator.h"
- #include "cmInstallExportGenerator.h"
- #include "cmInstallCommandArguments.h"
- #include <cmsys/Glob.hxx>
- static cmInstallTargetGenerator* CreateInstallTargetGenerator(cmTarget& target,
- const cmInstallCommandArguments& args, bool impLib, bool forceOpt = false)
- {
- return new cmInstallTargetGenerator(target, args.GetDestination().c_str(),
- impLib, args.GetPermissions().c_str(),
- args.GetConfigurations(), args.GetComponent().c_str(),
- args.GetOptional() || forceOpt);
- }
- static cmInstallFilesGenerator* CreateInstallFilesGenerator(
- const std::vector<std::string>& absFiles,
- const cmInstallCommandArguments& args, bool programs)
- {
- return new cmInstallFilesGenerator(absFiles, args.GetDestination().c_str(),
- programs, args.GetPermissions().c_str(),
- args.GetConfigurations(), args.GetComponent().c_str(),
- args.GetRename().c_str(), args.GetOptional());
- }
- // cmInstallCommand
- bool cmInstallCommand::InitialPass(std::vector<std::string> const& args)
- {
- // Allow calling with no arguments so that arguments may be built up
- // using a variable that may be left empty.
- if(args.empty())
- {
- return true;
- }
- // Enable the install target.
- this->Makefile->GetLocalGenerator()
- ->GetGlobalGenerator()->EnableInstallTarget();
- // Switch among the command modes.
- if(args[0] == "SCRIPT")
- {
- return this->HandleScriptMode(args);
- }
- else if(args[0] == "CODE")
- {
- return this->HandleScriptMode(args);
- }
- else if(args[0] == "TARGETS")
- {
- return this->HandleTargetsMode(args);
- }
- else if(args[0] == "FILES")
- {
- return this->HandleFilesMode(args);
- }
- else if(args[0] == "PROGRAMS")
- {
- return this->HandleFilesMode(args);
- }
- else if(args[0] == "DIRECTORY")
- {
- return this->HandleDirectoryMode(args);
- }
- else if(args[0] == "EXPORT")
- {
- return this->HandleExportMode(args);
- }
- // Unknown mode.
- cmStdString e = "called with unknown mode ";
- e += args[0];
- this->SetError(e.c_str());
- return false;
- }
- //----------------------------------------------------------------------------
- bool cmInstallCommand::HandleScriptMode(std::vector<std::string> const& args)
- {
- bool doing_script = false;
- bool doing_code = false;
- for(size_t i=0; i < args.size(); ++i)
- {
- if(args[i] == "SCRIPT")
- {
- doing_script = true;
- doing_code = false;
- }
- else if(args[i] == "CODE")
- {
- doing_script = false;
- doing_code = true;
- }
- else if(doing_script)
- {
- doing_script = false;
- std::string script = args[i];
- if(!cmSystemTools::FileIsFullPath(script.c_str()))
- {
- script = this->Makefile->GetCurrentDirectory();
- script += "/";
- script += args[i];
- }
- if(cmSystemTools::FileIsDirectory(script.c_str()))
- {
- this->SetError("given a directory as value of SCRIPT argument.");
- return false;
- }
- this->Makefile->AddInstallGenerator(
- new cmInstallScriptGenerator(script.c_str()));
- }
- else if(doing_code)
- {
- doing_code = false;
- std::string code = args[i];
- this->Makefile->AddInstallGenerator(
- new cmInstallScriptGenerator(code.c_str(), true));
- }
- }
- if(doing_script)
- {
- this->SetError("given no value for SCRIPT argument.");
- return false;
- }
- if(doing_code)
- {
- this->SetError("given no value for CODE argument.");
- return false;
- }
- return true;
- }
- /*struct InstallPart
- {
- InstallPart(cmCommandArgumentsHelper* helper, const char* key,
- cmCommandArgumentGroup* group);
- cmCAStringVector argVector;
- cmInstallCommandArguments args;
- };*/
- //----------------------------------------------------------------------------
- bool cmInstallCommand::HandleTargetsMode(std::vector<std::string> const& args)
- {
- // This is the TARGETS mode.
- std::vector<cmTarget*> targets;
- cmCommandArgumentsHelper argHelper;
- cmCommandArgumentGroup group;
- cmCAStringVector genericArgVector (&argHelper, 0);
- cmCAStringVector archiveArgVector (&argHelper, "ARCHIVE", &group);
- cmCAStringVector libraryArgVector (&argHelper, "LIBRARY", &group);
- cmCAStringVector runtimeArgVector (&argHelper, "RUNTIME", &group);
- cmCAStringVector frameworkArgVector (&argHelper, "FRAMEWORK", &group);
- cmCAStringVector bundleArgVector (&argHelper, "BUNDLE", &group);
- cmCAStringVector resourcesArgVector (&argHelper, "RESOURCE", &group);
- cmCAStringVector publicHeaderArgVector(&argHelper, "PUBLIC_HEADER", &group);
- cmCAStringVector privateHeaderArgVector(&argHelper,"PRIVATE_HEADER", &group);
- genericArgVector.Follows(0);
- group.Follows(&genericArgVector);
- argHelper.Parse(&args, 0);
- std::vector<std::string> unknownArgs;
- cmInstallCommandArguments genericArgs;
- cmCAStringVector targetList(&genericArgs.Parser, "TARGETS");
- cmCAString exports(&genericArgs.Parser,"EXPORT", &genericArgs.ArgumentGroup);
- targetList.Follows(0);
- genericArgs.ArgumentGroup.Follows(&targetList);
- genericArgs.Parse(&genericArgVector.GetVector(), &unknownArgs);
- bool success = genericArgs.Finalize();
- cmInstallCommandArguments archiveArgs;
- cmInstallCommandArguments libraryArgs;
- cmInstallCommandArguments runtimeArgs;
- cmInstallCommandArguments frameworkArgs;
- cmInstallCommandArguments bundleArgs;
- cmInstallCommandArguments resourcesArgs;
- cmInstallCommandArguments publicHeaderArgs;
- cmInstallCommandArguments privateHeaderArgs;
- archiveArgs.Parse (&archiveArgVector.GetVector(), &unknownArgs);
- libraryArgs.Parse (&libraryArgVector.GetVector(), &unknownArgs);
- runtimeArgs.Parse (&runtimeArgVector.GetVector(), &unknownArgs);
- frameworkArgs.Parse (&frameworkArgVector.GetVector(), &unknownArgs);
- bundleArgs.Parse (&bundleArgVector.GetVector(), &unknownArgs);
- resourcesArgs.Parse (&resourcesArgVector.GetVector(), &unknownArgs);
- publicHeaderArgs.Parse (&publicHeaderArgVector.GetVector(), &unknownArgs);
- privateHeaderArgs.Parse(&privateHeaderArgVector.GetVector(), &unknownArgs);
- if(!unknownArgs.empty())
- {
- // Unknown argument.
- cmOStringStream e;
- e << "TARGETS given unknown argument \"" << unknownArgs[0] << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- // apply generic args
- archiveArgs.SetGenericArguments(&genericArgs);
- libraryArgs.SetGenericArguments(&genericArgs);
- runtimeArgs.SetGenericArguments(&genericArgs);
- frameworkArgs.SetGenericArguments(&genericArgs);
- bundleArgs.SetGenericArguments(&genericArgs);
- resourcesArgs.SetGenericArguments(&genericArgs);
- publicHeaderArgs.SetGenericArguments(&genericArgs);
- privateHeaderArgs.SetGenericArguments(&genericArgs);
- success = success && archiveArgs.Finalize();
- success = success && libraryArgs.Finalize();
- success = success && runtimeArgs.Finalize();
- success = success && frameworkArgs.Finalize();
- success = success && bundleArgs.Finalize();
- success = success && resourcesArgs.Finalize();
- success = success && publicHeaderArgs.Finalize();
- success = success && privateHeaderArgs.Finalize();
- if(!success)
- {
- return false;
- }
- // Check if there is something to do.
- if(targetList.GetVector().empty())
- {
- return true;
- }
- // Check whether this is a DLL platform.
- bool dll_platform = (this->Makefile->IsOn("WIN32") ||
- this->Makefile->IsOn("CYGWIN") ||
- this->Makefile->IsOn("MINGW"));
- for(std::vector<std::string>::const_iterator
- targetIt=targetList.GetVector().begin();
- targetIt!=targetList.GetVector().end();
- ++targetIt)
- {
- // Lookup this target in the current directory.
- if(cmTarget* target=this->Makefile->FindTarget(targetIt->c_str(), false))
- {
- // Found the target. Check its type.
- if(target->GetType() != cmTarget::EXECUTABLE &&
- target->GetType() != cmTarget::STATIC_LIBRARY &&
- target->GetType() != cmTarget::SHARED_LIBRARY &&
- target->GetType() != cmTarget::MODULE_LIBRARY)
- {
- cmOStringStream e;
- e << "TARGETS given target \"" << (*targetIt)
- << "\" which is not an executable, library, or module.";
- this->SetError(e.str().c_str());
- return false;
- }
- // Store the target in the list to be installed.
- targets.push_back(target);
- }
- else
- {
- // Did not find the target.
- cmOStringStream e;
- e << "TARGETS given target \"" << (*targetIt)
- << "\" which does not exist in this directory.";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- // Generate install script code to install the given targets.
- for(std::vector<cmTarget*>::iterator ti = targets.begin();
- ti != targets.end(); ++ti)
- {
- // Handle each target type.
- cmTarget& target = *(*ti);
- cmInstallTargetGenerator* archiveGenerator = 0;
- cmInstallTargetGenerator* libraryGenerator = 0;
- cmInstallTargetGenerator* runtimeGenerator = 0;
- cmInstallTargetGenerator* frameworkGenerator = 0;
- cmInstallTargetGenerator* bundleGenerator = 0;
- cmInstallFilesGenerator* resourcesGenerator = 0;
- cmInstallFilesGenerator* publicHeaderGenerator = 0;
- cmInstallFilesGenerator* privateHeaderGenerator = 0;
- switch(target.GetType())
- {
- case cmTarget::SHARED_LIBRARY:
- {
- // Shared libraries are handled differently on DLL and non-DLL
- // platforms. All windows platforms are DLL platforms including
- // cygwin. Currently no other platform is a DLL platform.
- if(dll_platform)
- {
- // This is a DLL platform.
- if(!archiveArgs.GetDestination().empty())
- {
- // The import library uses the ARCHIVE properties.
- archiveGenerator = CreateInstallTargetGenerator(target,
- archiveArgs, true);
- }
- if(!runtimeArgs.GetDestination().empty())
- {
- // The DLL uses the RUNTIME properties.
- runtimeGenerator = CreateInstallTargetGenerator(target,
- runtimeArgs, false);
- }
- if ((archiveGenerator==0) && (runtimeGenerator==0))
- {
- this->SetError("Library TARGETS given no DESTINATION!");
- return false;
- }
- }
- else
- {
- // This is a non-DLL platform.
- // If it is marked with FRAMEWORK property use the FRAMEWORK set of
- // INSTALL properties. Otherwise, use the LIBRARY properties.
- if(target.GetPropertyAsBool("FRAMEWORK"))
- {
- // Use the FRAMEWORK properties.
- if (!frameworkArgs.GetDestination().empty())
- {
- frameworkGenerator = CreateInstallTargetGenerator(target,
- frameworkArgs, false);
- }
- else
- {
- cmOStringStream e;
- e << "TARGETS given no FRAMEWORK DESTINATION for shared library "
- "FRAMEWORK target \"" << target.GetName() << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- else
- {
- // The shared library uses the LIBRARY properties.
- if (!libraryArgs.GetDestination().empty())
- {
- libraryGenerator = CreateInstallTargetGenerator(target,
- libraryArgs, false);
- }
- else
- {
- cmOStringStream e;
- e << "TARGETS given no LIBRARY DESTINATION for shared library "
- "target \"" << target.GetName() << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- }
- }
- break;
- case cmTarget::STATIC_LIBRARY:
- {
- // Static libraries use ARCHIVE properties.
- if (!archiveArgs.GetDestination().empty())
- {
- archiveGenerator = CreateInstallTargetGenerator(target, archiveArgs,
- false);
- }
- else
- {
- cmOStringStream e;
- e << "TARGETS given no ARCHIVE DESTINATION for static library "
- "target \"" << target.GetName() << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- break;
- case cmTarget::MODULE_LIBRARY:
- {
- // Modules use LIBRARY properties.
- if (!libraryArgs.GetDestination().empty())
- {
- libraryGenerator = CreateInstallTargetGenerator(target, libraryArgs,
- false);
- }
- else
- {
- cmOStringStream e;
- e << "TARGETS given no LIBRARY DESTINATION for module target \""
- << target.GetName() << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- break;
- case cmTarget::EXECUTABLE:
- {
- // Executables use the RUNTIME properties.
- if(target.GetPropertyAsBool("MACOSX_BUNDLE"))
- {
- if (!bundleArgs.GetDestination().empty())
- {
- bundleGenerator = CreateInstallTargetGenerator(target, bundleArgs,
- false);
- }
- else
- {
- cmOStringStream e;
- e << "TARGETS given no BUNDLE DESTINATION for MACOSX_BUNDLE "
- "executable target \"" << target.GetName() << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- else
- {
- if (!runtimeArgs.GetDestination().empty())
- {
- runtimeGenerator = CreateInstallTargetGenerator(target,
- runtimeArgs, false);
- }
- else
- {
- cmOStringStream e;
- e << "TARGETS given no RUNTIME DESTINATION for executable "
- "target \"" << target.GetName() << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- // On DLL platforms an executable may also have an import
- // library. Install it to the archive destination if it
- // exists.
- if(dll_platform && !archiveArgs.GetDestination().empty() &&
- target.GetPropertyAsBool("ENABLE_EXPORTS"))
- {
- // The import library uses the ARCHIVE properties.
- archiveGenerator = CreateInstallTargetGenerator(target,
- archiveArgs, true, true);
- }
- }
- break;
- default:
- // This should never happen due to the above type check.
- // Ignore the case.
- break;
- }
- // if(target.GetProperty("ASSOCIATED_FILES");
- const char* files = target.GetProperty("PUBLIC_HEADER");
- if ((files) && (*files))
- {
- std::vector<std::string> relFiles;
- cmSystemTools::ExpandListArgument(files, relFiles);
- std::vector<std::string> absFiles;
- if (!this->MakeFilesFullPath("PUBLIC_HEADER", relFiles, absFiles))
- {
- return false;
- }
- // Create the files install generator.
- if (!publicHeaderArgs.GetDestination().empty())
- {
- publicHeaderGenerator = CreateInstallFilesGenerator(absFiles,
- publicHeaderArgs, false);
- }
- else
- {
- cmOStringStream e;
- e << "TARGETS given no PUBLIC_HEADER DESTINATION for header files\""
- << target.GetName() << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- files = target.GetProperty("PRIVATE_HEADER");
- if ((files) && (*files))
- {
- std::vector<std::string> relFiles;
- cmSystemTools::ExpandListArgument(files, relFiles);
- std::vector<std::string> absFiles;
- if (!this->MakeFilesFullPath("PRIVATE_HEADER", relFiles, absFiles))
- {
- return false;
- }
- // Create the files install generator.
- if (!privateHeaderArgs.GetDestination().empty())
- {
- privateHeaderGenerator = CreateInstallFilesGenerator(absFiles,
- privateHeaderArgs, false);
- }
- else
- {
- cmOStringStream e;
- e << "TARGETS given no PRIVATE_HEADER DESTINATION for header files\""
- << target.GetName() << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- files = target.GetProperty("RESOURCE_FILES");
- if ((files) && (*files))
- {
- std::vector<std::string> relFiles;
- cmSystemTools::ExpandListArgument(files, relFiles);
- std::vector<std::string> absFiles;
- if (!this->MakeFilesFullPath("RESOURCE_FILES", relFiles, absFiles))
- {
- return false;
- }
- // Create the files install generator.
- if (!privateHeaderArgs.GetDestination().empty())
- {
- resourcesGenerator = CreateInstallFilesGenerator(absFiles,
- resourcesArgs, false);
- }
- else
- {
- cmOStringStream e;
- e << "TARGETS given no RESOURCES DESTINATION for resource files\""
- << target.GetName() << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- this->Makefile->AddInstallGenerator(archiveGenerator);
- this->Makefile->AddInstallGenerator(libraryGenerator);
- this->Makefile->AddInstallGenerator(runtimeGenerator);
- this->Makefile->AddInstallGenerator(frameworkGenerator);
- this->Makefile->AddInstallGenerator(bundleGenerator);
- this->Makefile->AddInstallGenerator(publicHeaderGenerator);
- this->Makefile->AddInstallGenerator(privateHeaderGenerator);
- this->Makefile->AddInstallGenerator(resourcesGenerator);
- if (!exports.GetString().empty())
- {
- this->Makefile->GetLocalGenerator()->GetGlobalGenerator()
- ->AddTargetToExports(exports.GetCString(), &target,
- archiveGenerator, runtimeGenerator,
- libraryGenerator, frameworkGenerator,
- bundleGenerator, publicHeaderGenerator);
- }
- }
- // Tell the global generator about any installation component names specified
- this->Makefile->GetLocalGenerator()->GetGlobalGenerator()
- ->AddInstallComponent(archiveArgs.GetComponent().c_str());
- this->Makefile->GetLocalGenerator()->GetGlobalGenerator()
- ->AddInstallComponent(libraryArgs.GetComponent().c_str());
- this->Makefile->GetLocalGenerator()->GetGlobalGenerator()
- ->AddInstallComponent(runtimeArgs.GetComponent().c_str());
- this->Makefile->GetLocalGenerator()->GetGlobalGenerator()
- ->AddInstallComponent(frameworkArgs.GetComponent().c_str());
- this->Makefile->GetLocalGenerator()->GetGlobalGenerator()
- ->AddInstallComponent(bundleArgs.GetComponent().c_str());
- this->Makefile->GetLocalGenerator()->GetGlobalGenerator()
- ->AddInstallComponent(resourcesArgs.GetComponent().c_str());
- this->Makefile->GetLocalGenerator()->GetGlobalGenerator()
- ->AddInstallComponent(publicHeaderArgs.GetComponent().c_str());
- this->Makefile->GetLocalGenerator()->GetGlobalGenerator()
- ->AddInstallComponent(privateHeaderArgs.GetComponent().c_str());
- return true;
- }
- //----------------------------------------------------------------------------
- bool cmInstallCommand::HandleFilesMode(std::vector<std::string> const& args)
- {
- // This is the FILES mode.
- bool programs = (args[0] == "PROGRAMS");
- cmInstallCommandArguments ica;
- cmCAStringVector files(&ica.Parser, programs ? "PROGRAMS" : "FILES");
- files.Follows(0);
- ica.ArgumentGroup.Follows(&files);
- std::vector<std::string> unknownArgs;
- ica.Parse(&args, &unknownArgs);
- if(!unknownArgs.empty())
- {
- // Unknown argument.
- cmOStringStream e;
- e << args[0] << " given unknown argument \"" << unknownArgs[0] << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
-
- // Check if there is something to do.
- if(files.GetVector().empty())
- {
- return true;
- }
- if(!ica.GetRename().empty() && files.GetVector().size() > 1)
- {
- // The rename option works only with one file.
- cmOStringStream e;
- e << args[0] << " given RENAME option with more than one file.";
- this->SetError(e.str().c_str());
- return false;
- }
- std::vector<std::string> absFiles;
- if (!this->MakeFilesFullPath(args[0].c_str(), files.GetVector(), absFiles))
- {
- return false;
- }
- if (!ica.Finalize())
- {
- return false;
- }
- if(ica.GetDestination().empty())
- {
- // A destination is required.
- cmOStringStream e;
- e << args[0] << " given no DESTINATION!";
- this->SetError(e.str().c_str());
- return false;
- }
- // Create the files install generator.
- this->Makefile->AddInstallGenerator(
- CreateInstallFilesGenerator(absFiles, ica, programs));
- // Tell the global generator about any installation component names specified.
- this->Makefile->GetLocalGenerator()->GetGlobalGenerator()
- ->AddInstallComponent(ica.GetComponent().c_str());
- return true;
- }
- //----------------------------------------------------------------------------
- bool
- cmInstallCommand::HandleDirectoryMode(std::vector<std::string> const& args)
- {
- bool doing_dirs = true;
- bool doing_destination = false;
- bool doing_pattern = false;
- bool doing_regex = false;
- bool doing_permissions_file = false;
- bool doing_permissions_dir = false;
- bool doing_permissions_match = false;
- bool doing_configurations = false;
- bool doing_component = false;
- bool in_match_mode = false;
- std::vector<std::string> dirs;
- const char* destination = 0;
- std::string permissions_file;
- std::string permissions_dir;
- std::vector<std::string> configurations;
- std::string component = "Unspecified";
- std::string literal_args;
- for(unsigned int i=1; i < args.size(); ++i)
- {
- if(args[i] == "DESTINATION")
- {
- if(in_match_mode)
- {
- cmOStringStream e;
- e << args[0] << " does not allow \""
- << args[i] << "\" after PATTERN or REGEX.";
- this->SetError(e.str().c_str());
- return false;
- }
- // Switch to setting the destination property.
- doing_dirs = false;
- doing_destination = true;
- doing_pattern = false;
- doing_regex = false;
- doing_permissions_file = false;
- doing_permissions_dir = false;
- doing_configurations = false;
- doing_component = false;
- }
- else if(args[i] == "PATTERN")
- {
- // Switch to a new pattern match rule.
- doing_dirs = false;
- doing_destination = false;
- doing_pattern = true;
- doing_regex = false;
- doing_permissions_file = false;
- doing_permissions_dir = false;
- doing_permissions_match = false;
- doing_configurations = false;
- doing_component = false;
- in_match_mode = true;
- }
- else if(args[i] == "REGEX")
- {
- // Switch to a new regex match rule.
- doing_dirs = false;
- doing_destination = false;
- doing_pattern = false;
- doing_regex = true;
- doing_permissions_file = false;
- doing_permissions_dir = false;
- doing_permissions_match = false;
- doing_configurations = false;
- doing_component = false;
- in_match_mode = true;
- }
- else if(args[i] == "EXCLUDE")
- {
- // Add this property to the current match rule.
- if(!in_match_mode || doing_pattern || doing_regex)
- {
- cmOStringStream e;
- e << args[0] << " does not allow \""
- << args[i] << "\" before a PATTERN or REGEX is given.";
- this->SetError(e.str().c_str());
- return false;
- }
- literal_args += " EXCLUDE";
- doing_permissions_match = false;
- }
- else if(args[i] == "PERMISSIONS")
- {
- if(!in_match_mode)
- {
- cmOStringStream e;
- e << args[0] << " does not allow \""
- << args[i] << "\" before a PATTERN or REGEX is given.";
- this->SetError(e.str().c_str());
- return false;
- }
- // Switch to setting the current match permissions property.
- literal_args += " PERMISSIONS";
- doing_permissions_match = true;
- }
- else if(args[i] == "FILE_PERMISSIONS")
- {
- if(in_match_mode)
- {
- cmOStringStream e;
- e << args[0] << " does not allow \""
- << args[i] << "\" after PATTERN or REGEX.";
- this->SetError(e.str().c_str());
- return false;
- }
- // Switch to setting the file permissions property.
- doing_dirs = false;
- doing_destination = false;
- doing_pattern = false;
- doing_regex = false;
- doing_permissions_file = true;
- doing_permissions_dir = false;
- doing_configurations = false;
- doing_component = false;
- }
- else if(args[i] == "DIRECTORY_PERMISSIONS")
- {
- if(in_match_mode)
- {
- cmOStringStream e;
- e << args[0] << " does not allow \""
- << args[i] << "\" after PATTERN or REGEX.";
- this->SetError(e.str().c_str());
- return false;
- }
- // Switch to setting the directory permissions property.
- doing_dirs = false;
- doing_destination = false;
- doing_pattern = false;
- doing_regex = false;
- doing_permissions_file = false;
- doing_permissions_dir = true;
- doing_configurations = false;
- doing_component = false;
- }
- else if(args[i] == "USE_SOURCE_PERMISSIONS")
- {
- if(in_match_mode)
- {
- cmOStringStream e;
- e << args[0] << " does not allow \""
- << args[i] << "\" after PATTERN or REGEX.";
- this->SetError(e.str().c_str());
- return false;
- }
- // Add this option literally.
- doing_dirs = false;
- doing_destination = false;
- doing_pattern = false;
- doing_regex = false;
- doing_permissions_file = false;
- doing_permissions_dir = false;
- doing_configurations = false;
- doing_component = false;
- literal_args += " USE_SOURCE_PERMISSIONS";
- }
- else if(args[i] == "CONFIGURATIONS")
- {
- if(in_match_mode)
- {
- cmOStringStream e;
- e << args[0] << " does not allow \""
- << args[i] << "\" after PATTERN or REGEX.";
- this->SetError(e.str().c_str());
- return false;
- }
- // Switch to setting the configurations property.
- doing_dirs = false;
- doing_destination = false;
- doing_pattern = false;
- doing_regex = false;
- doing_permissions_file = false;
- doing_permissions_dir = false;
- doing_configurations = true;
- doing_component = false;
- }
- else if(args[i] == "COMPONENT")
- {
- if(in_match_mode)
- {
- cmOStringStream e;
- e << args[0] << " does not allow \""
- << args[i] << "\" after PATTERN or REGEX.";
- this->SetError(e.str().c_str());
- return false;
- }
- // Switch to setting the component property.
- doing_dirs = false;
- doing_destination = false;
- doing_pattern = false;
- doing_regex = false;
- doing_permissions_file = false;
- doing_permissions_dir = false;
- doing_configurations = false;
- doing_component = true;
- }
- else if(doing_dirs)
- {
- // Convert this directory to a full path.
- std::string dir = args[i];
- if(!cmSystemTools::FileIsFullPath(dir.c_str()))
- {
- dir = this->Makefile->GetCurrentDirectory();
- dir += "/";
- dir += args[i];
- }
- // Make sure the name is a directory.
- if(!cmSystemTools::FileIsDirectory(dir.c_str()))
- {
- cmOStringStream e;
- e << args[0] << " given non-directory \""
- << args[i] << "\" to install.";
- this->SetError(e.str().c_str());
- return false;
- }
- // Store the directory for installation.
- dirs.push_back(dir);
- }
- else if(doing_configurations)
- {
- configurations.push_back(args[i]);
- }
- else if(doing_destination)
- {
- destination = args[i].c_str();
- doing_destination = false;
- }
- else if(doing_pattern)
- {
- // Convert the pattern to a regular expression. Require a
- // leading slash and trailing end-of-string in the matched
- // string to make sure the pattern matches only whole file
- // names.
- literal_args += " REGEX \"/";
- std::string regex = cmsys::Glob::PatternToRegex(args[i], false);
- cmSystemTools::ReplaceString(regex, "\\", "\\\\");
- literal_args += regex;
- literal_args += "$\"";
- doing_pattern = false;
- }
- else if(doing_regex)
- {
- literal_args += " REGEX \"";
- // Match rules are case-insensitive on some platforms.
- #if defined(_WIN32) || defined(__APPLE__) || defined(__CYGWIN__)
- std::string regex = cmSystemTools::LowerCase(args[i]);
- #else
- std::string regex = args[i];
- #endif
- cmSystemTools::ReplaceString(regex, "\\", "\\\\");
- literal_args += regex;
- literal_args += "\"";
- doing_regex = false;
- }
- else if(doing_component)
- {
- component = args[i];
- doing_component = false;
- }
- else if(doing_permissions_file)
- {
- // Check the requested permission.
- if(!cmInstallCommandArguments::CheckPermissions(args[i],permissions_file))
- {
- cmOStringStream e;
- e << args[0] << " given invalid file permission \""
- << args[i] << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- else if(doing_permissions_dir)
- {
- // Check the requested permission.
- if(!cmInstallCommandArguments::CheckPermissions(args[i],permissions_dir))
- {
- cmOStringStream e;
- e << args[0] << " given invalid directory permission \""
- << args[i] << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- else if(doing_permissions_match)
- {
- // Check the requested permission.
- if(!cmInstallCommandArguments::CheckPermissions(args[i], literal_args))
- {
- cmOStringStream e;
- e << args[0] << " given invalid permission \""
- << args[i] << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- else
- {
- // Unknown argument.
- cmOStringStream e;
- e << args[0] << " given unknown argument \"" << args[i] << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- // Support installing an empty directory.
- if(dirs.empty() && destination)
- {
- dirs.push_back("");
- }
- // Check if there is something to do.
- if(dirs.empty())
- {
- return true;
- }
- if(!destination)
- {
- // A destination is required.
- cmOStringStream e;
- e << args[0] << " given no DESTINATION!";
- this->SetError(e.str().c_str());
- return false;
- }
- // Compute destination path.
- std::string dest;
- cmInstallCommandArguments::ComputeDestination(destination, dest);
- // Create the directory install generator.
- this->Makefile->AddInstallGenerator(
- new cmInstallDirectoryGenerator(dirs, dest.c_str(),
- permissions_file.c_str(),
- permissions_dir.c_str(),
- configurations,
- component.c_str(),
- literal_args.c_str()));
- // Tell the global generator about any installation component names
- // specified.
- this->Makefile->GetLocalGenerator()->GetGlobalGenerator()
- ->AddInstallComponent(component.c_str());
- return true;
- }
- //----------------------------------------------------------------------------
- bool cmInstallCommand::HandleExportMode(std::vector<std::string> const& args)
- {
- // This is the EXPORT mode.
- cmInstallCommandArguments ica;
- cmCAStringVector exports(&ica.Parser, "EXPORT");
- cmCAString prefix(&ica.Parser, "PREFIX", &ica.ArgumentGroup);
- cmCAString filename(&ica.Parser, "FILE", &ica.ArgumentGroup);
- exports.Follows(0);
- ica.ArgumentGroup.Follows(&exports);
- std::vector<std::string> unknownArgs;
- ica.Parse(&args, &unknownArgs);
- if (!unknownArgs.empty())
- {
- // Unknown argument.
- cmOStringStream e;
- e << args[0] << " given unknown argument \"" << unknownArgs[0] << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- if (!ica.Finalize())
- {
- return false;
- }
- std::string cmakeDir = this->Makefile->GetHomeOutputDirectory();
- cmakeDir += cmake::GetCMakeFilesDirectory();
- for(std::vector<std::string>::const_iterator
- exportIt = exports.GetVector().begin();
- exportIt != exports.GetVector().end();
- ++exportIt)
- {
- const std::vector<cmTargetExport*>* exportSet = this->
- Makefile->GetLocalGenerator()->GetGlobalGenerator()->
- GetExportSet(exportIt->c_str());
- if (exportSet == 0)
- {
- cmOStringStream e;
- e << "EXPORT given unknown export name \"" << exportIt->c_str() << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- // Create the export install generator.
- cmInstallExportGenerator* exportGenerator = new cmInstallExportGenerator(
- ica.GetDestination().c_str(), ica.GetPermissions().c_str(),
- ica.GetConfigurations(),0 , filename.GetCString(),
- prefix.GetCString(), cmakeDir.c_str());
- if (exportGenerator->SetExportSet(exportIt->c_str(),exportSet))
- {
- this->Makefile->AddInstallGenerator(exportGenerator);
- }
- else
- {
- cmOStringStream e;
- e << "EXPORT failed, maybe a target is exported more than once.";
- this->SetError(e.str().c_str());
- delete exportGenerator;
- return false;
- }
- }
- return true;
- }
- bool cmInstallCommand::MakeFilesFullPath(const char* modeName,
- const std::vector<std::string>& relFiles,
- std::vector<std::string>& absFiles)
- {
- for(std::vector<std::string>::const_iterator fileIt = relFiles.begin();
- fileIt != relFiles.end();
- ++fileIt)
- {
- std::string file = (*fileIt);
- if(!cmSystemTools::FileIsFullPath(file.c_str()))
- {
- file = this->Makefile->GetCurrentDirectory();
- file += "/";
- file += *fileIt;
- }
- // Make sure the file is not a directory.
- if(cmSystemTools::FileIsDirectory(file.c_str()))
- {
- cmOStringStream e;
- e << modeName << " given directory \"" << (*fileIt) << "\" to install.";
- this->SetError(e.str().c_str());
- return false;
- }
- // Store the file for installation.
- absFiles.push_back(file);
- }
- return true;
- }
|