| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337 |
- /*============================================================================
- CMake - Cross Platform Makefile Generator
- Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
- Distributed under the OSI-approved BSD License (the "License");
- see accompanying file Copyright.txt for details.
- This software is distributed WITHOUT ANY WARRANTY; without even the
- implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- See the License for more information.
- ============================================================================*/
- #include "cmCPackIFWRepository.h"
- #include "cmCPackIFWGenerator.h"
- #include <CPack/cmCPackLog.h>
- #include <cmGeneratedFileStream.h>
- #include <cmXMLParser.h>
- #include <cmXMLWriter.h>
- #ifdef cmCPackLogger
- #undef cmCPackLogger
- #endif
- #define cmCPackLogger(logType, msg) \
- do { \
- std::ostringstream cmCPackLog_msg; \
- cmCPackLog_msg << msg; \
- if (Generator) { \
- Generator->Logger->Log(logType, __FILE__, __LINE__, \
- cmCPackLog_msg.str().c_str()); \
- } \
- } while (0)
- cmCPackIFWRepository::cmCPackIFWRepository()
- : Update(None)
- , Generator(0)
- {
- }
- bool cmCPackIFWRepository::IsValid() const
- {
- bool valid = true;
- switch (Update) {
- case None:
- valid = !Url.empty();
- break;
- case Add:
- valid = !Url.empty();
- break;
- case Remove:
- valid = !Url.empty();
- break;
- case Replace:
- valid = !OldUrl.empty() && !NewUrl.empty();
- break;
- }
- return valid;
- }
- const char* cmCPackIFWRepository::GetOption(const std::string& op) const
- {
- return Generator ? Generator->GetOption(op) : 0;
- }
- bool cmCPackIFWRepository::IsOn(const std::string& op) const
- {
- return Generator ? Generator->IsOn(op) : false;
- }
- bool cmCPackIFWRepository::IsVersionLess(const char* version)
- {
- return Generator ? Generator->IsVersionLess(version) : false;
- }
- bool cmCPackIFWRepository::IsVersionGreater(const char* version)
- {
- return Generator ? Generator->IsVersionGreater(version) : false;
- }
- bool cmCPackIFWRepository::IsVersionEqual(const char* version)
- {
- return Generator ? Generator->IsVersionEqual(version) : false;
- }
- bool cmCPackIFWRepository::ConfigureFromOptions()
- {
- // Name;
- if (Name.empty())
- return false;
- std::string prefix =
- "CPACK_IFW_REPOSITORY_" + cmsys::SystemTools::UpperCase(Name) + "_";
- // Update
- if (IsOn(prefix + "ADD")) {
- Update = Add;
- } else if (IsOn(prefix + "REMOVE")) {
- Update = Remove;
- } else if (IsOn(prefix + "REPLACE")) {
- Update = Replace;
- } else {
- Update = None;
- }
- // Url
- if (const char* url = GetOption(prefix + "URL")) {
- Url = url;
- } else {
- Url = "";
- }
- // Old url
- if (const char* oldUrl = GetOption(prefix + "OLD_URL")) {
- OldUrl = oldUrl;
- } else {
- OldUrl = "";
- }
- // New url
- if (const char* newUrl = GetOption(prefix + "NEW_URL")) {
- NewUrl = newUrl;
- } else {
- NewUrl = "";
- }
- // Enabled
- if (IsOn(prefix + "DISABLED")) {
- Enabled = "0";
- } else {
- Enabled = "";
- }
- // Username
- if (const char* username = GetOption(prefix + "USERNAME")) {
- Username = username;
- } else {
- Username = "";
- }
- // Password
- if (const char* password = GetOption(prefix + "PASSWORD")) {
- Password = password;
- } else {
- Password = "";
- }
- // DisplayName
- if (const char* displayName = GetOption(prefix + "DISPLAY_NAME")) {
- DisplayName = displayName;
- } else {
- DisplayName = "";
- }
- return IsValid();
- }
- /** \class cmCPackeIFWUpdatesPatcher
- * \brief Helper class that parses and patch Updates.xml file (QtIFW)
- */
- class cmCPackeIFWUpdatesPatcher : public cmXMLParser
- {
- public:
- cmCPackeIFWUpdatesPatcher(cmCPackIFWRepository* r, cmXMLWriter& x)
- : repository(r)
- , xout(x)
- , patched(false)
- {
- }
- cmCPackIFWRepository* repository;
- cmXMLWriter& xout;
- bool patched;
- protected:
- virtual void StartElement(const std::string& name, const char** atts)
- {
- xout.StartElement(name);
- StartFragment(atts);
- }
- void StartFragment(const char** atts)
- {
- for (size_t i = 0; atts[i]; i += 2) {
- const char* key = atts[i];
- const char* value = atts[i + 1];
- xout.Attribute(key, value);
- }
- }
- virtual void EndElement(const std::string& name)
- {
- if (name == "Updates" && !patched) {
- repository->WriteRepositoryUpdates(xout);
- patched = true;
- }
- xout.EndElement();
- if (patched)
- return;
- if (name == "Checksum") {
- repository->WriteRepositoryUpdates(xout);
- patched = true;
- }
- }
- virtual void CharacterDataHandler(const char* data, int length)
- {
- std::string content(data, data + length);
- if (content == "" || content == " " || content == " " || content == "\n")
- return;
- xout.Content(content);
- }
- };
- bool cmCPackIFWRepository::PatchUpdatesXml()
- {
- // Lazy directory initialization
- if (Directory.empty() && Generator) {
- Directory = Generator->toplevel;
- }
- // Filenames
- std::string updatesXml = Directory + "/repository/Updates.xml";
- std::string updatesPatchXml = Directory + "/repository/UpdatesPatch.xml";
- // Output stream
- cmGeneratedFileStream fout(updatesPatchXml.data());
- cmXMLWriter xout(fout);
- xout.StartDocument();
- WriteGeneratedByToStrim(xout);
- // Patch
- {
- cmCPackeIFWUpdatesPatcher patcher(this, xout);
- patcher.ParseFile(updatesXml.data());
- }
- xout.EndDocument();
- fout.Close();
- return cmSystemTools::RenameFile(updatesPatchXml.data(), updatesXml.data());
- }
- void cmCPackIFWRepository::WriteRepositoryConfig(cmXMLWriter& xout)
- {
- xout.StartElement("Repository");
- // Url
- xout.Element("Url", Url);
- // Enabled
- if (!Enabled.empty()) {
- xout.Element("Enabled", Enabled);
- }
- // Username
- if (!Username.empty()) {
- xout.Element("Username", Username);
- }
- // Password
- if (!Password.empty()) {
- xout.Element("Password", Password);
- }
- // DisplayName
- if (!DisplayName.empty()) {
- xout.Element("DisplayName", DisplayName);
- }
- xout.EndElement();
- }
- void cmCPackIFWRepository::WriteRepositoryUpdate(cmXMLWriter& xout)
- {
- xout.StartElement("Repository");
- switch (Update) {
- case None:
- break;
- case Add:
- xout.Attribute("action", "add");
- break;
- case Remove:
- xout.Attribute("action", "remove");
- break;
- case Replace:
- xout.Attribute("action", "replace");
- break;
- }
- // Url
- if (Update == Add || Update == Remove) {
- xout.Attribute("url", Url);
- } else if (Update == Replace) {
- xout.Attribute("oldurl", OldUrl);
- xout.Attribute("newurl", NewUrl);
- }
- // Enabled
- if (!Enabled.empty()) {
- xout.Attribute("enabled", Enabled);
- }
- // Username
- if (!Username.empty()) {
- xout.Attribute("username", Username);
- }
- // Password
- if (!Password.empty()) {
- xout.Attribute("password", Password);
- }
- // DisplayName
- if (!DisplayName.empty()) {
- xout.Attribute("displayname", DisplayName);
- }
- xout.EndElement();
- }
- void cmCPackIFWRepository::WriteRepositoryUpdates(cmXMLWriter& xout)
- {
- if (!RepositoryUpdate.empty()) {
- xout.StartElement("RepositoryUpdate");
- for (RepositoriesVector::iterator rit = RepositoryUpdate.begin();
- rit != RepositoryUpdate.end(); ++rit) {
- (*rit)->WriteRepositoryUpdate(xout);
- }
- xout.EndElement();
- }
- }
- void cmCPackIFWRepository::WriteGeneratedByToStrim(cmXMLWriter& xout)
- {
- if (Generator)
- Generator->WriteGeneratedByToStrim(xout);
- }
|