Change feature: Now reading third party libraries in pkgs, libraries, application using Regular Expressions
return res;
}
+ std::string readFile(const std::string& file_path)
+ {
+ std::string res;
+ std::ifstream file(file_path.c_str());
+ if (file.is_open())
+ {
+ char ch = file.get();
+ while (!file.eof())
+ {
+ res.push_back(ch);
+ ch = file.get();
+ }
+ file.close();
+ }
+ return res;
+ }
+
CMLFile readCMLFile(const std::string& file_path)
{
CMLFile res;
return false;
}
+ void
+ normalizeStr(std::string& st)
+ {
+ while(st.size() && isspace(st[0]))
+ st.erase(0,1);
+ while(st.size() && isspace(st[st.size()-1]))
+ st.erase(st.size()-1,1);
+ return;
+ }
+
}
*/
typedef std::vector<syntaxElement> CMLFile;
+ /**
+ * Reads a file as string and returns the read data.
+ * @param file_path Full path of the CMakeLists file.
+ * @return A string with the contents of the given file.
+ */
+ std::string readFile(const std::string& file_path);
+
/**
* Reads a CMakeLists file and returns the read data.
* @param file_path Full path of the CMakeLists file.
*/
bool writeCMLFile(const std::string& file_path, const CMLFile& data);
+ /**
+ * @param st Strips all space character at the beginning and at the end of the string.
+ */
+ void normalizeStr(std::string& st);
+
};
#endif /* CDMUTILITIES_H_ */
if (this->HasCMakeLists())
{
- CDMUtilities::CMLFile cmlFile = CDMUtilities::readCMLFile(this->CMakeLists->GetPath().c_str());
- // look at every syntax element
- for (int i = 0; i < cmlFile.size(); ++i)
+
+ std::string CMfile = CDMUtilities::readFile(this->CMakeLists->GetPath().c_str());
+
+ boost::regex expression("^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{EXE_NAME\\}_LINK_LIBRARIES(([\\s]|#[^\\n]*\\n)+([\\$\\{\\}\\w\\d]+|\"(?:[^\"\\\\]|\\\\.)*\"))*([\\s]|#[^\\n]*\\n)*\\)");
+ std::string::const_iterator start, end;
+ start = CMfile.begin();
+ end = CMfile.end();
+ boost::match_results<std::string::const_iterator> what;
+ boost::match_flag_type flags = boost::match_default;
+ if(boost::regex_search(start, end, what, expression, flags))
{
- // if the element is a command and is a SET command
- if (cmlFile[i].first == "command" && cmlFile[i].second[0] == "SET")
+
+ expression = boost::regex("^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{EXE_NAME\\}_LINK_LIBRARIES");
+ std::string::const_iterator start1, end1;
+ start1 = what[0].first;
+ end1 = what[0].second;
+ boost::match_results<std::string::const_iterator> what1;
+ if(boost::regex_search(start1, end1, what1, expression, flags))
{
- // search first parameter
- int pos = 1;
- while (pos < cmlFile[i].second.size())
+ expression = boost::regex("(#[^\\n]*\\n|\\s*\\$\\{\\w+\\})");
+ std::string::const_iterator start2, end2;
+ start2 = what1[0].second;
+ end2 = what[0].second;
+ boost::match_results<std::string::const_iterator> what2;
+ while(boost::regex_search(start2, end2, what2, expression, flags))
{
- // see if it is ${LIBRARY_NAME}_LINK_LIBRARIES
- if (cmlFile[i].second[pos] == "${EXE_NAME}_LINK_LIBRARIES")
- {
- pos++;
- // look for all the third party libraries included
- while (pos < cmlFile[i].second.size())
- {
- if (cmlFile[i].second[pos][0] == '$' && correspondence.find(cmlFile[i].second[pos]) != correspondence.end())
- {
- res[correspondence[cmlFile[i].second[pos]]] = true;
- }
- pos++;
- }
- }
- // if it is the first parameter but is not ${LIBRARY_NAME}_LINK_LIBRARIES then finish with this command
- else if (!isspace(cmlFile[i].second[pos][0]) && cmlFile[i].second[pos][0] != '#' && cmlFile[i].second[pos][0] != '(' && cmlFile[i].second[pos][0] != ')')
+ if(what2.str()[0] != '#')
{
- break;
+ std::string dete = what2.str();
+ CDMUtilities::normalizeStr(dete);
+ if(correspondence.find(dete) != correspondence.end())
+ res[correspondence[dete]] = true;
}
- pos++;
+ start2 = what2[0].second;
}
}
}
#include <fstream>
#include <sstream>
#include <algorithm>
+#include <boost/regex.hpp>
#include "CDMUtilities.h"
#include "creaWx.h"
if (this->HasCMakeLists())
{
- CDMUtilities::CMLFile cmlFile = CDMUtilities::readCMLFile(this->CMakeLists->GetPath().c_str());
- // look at every syntax element
- for (int i = 0; i < cmlFile.size(); ++i)
+ std::string CMfile = CDMUtilities::readFile(this->CMakeLists->GetPath().c_str());
+
+ boost::regex expression("^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{LIBRARY_NAME\\}_LINK_LIBRARIES(([\\s]|#[^\\n]*\\n)+([\\$\\{\\}\\w\\d]+|\"(?:[^\"\\\\]|\\\\.)*\"))*([\\s]|#[^\\n]*\\n)*\\)");
+ std::string::const_iterator start, end;
+ start = CMfile.begin();
+ end = CMfile.end();
+ boost::match_results<std::string::const_iterator> what;
+ boost::match_flag_type flags = boost::match_default;
+ if(boost::regex_search(start, end, what, expression, flags))
{
- // if the element is a command and is a SET command
- if (cmlFile[i].first == "command" && cmlFile[i].second[0] == "SET")
+
+ expression = boost::regex("^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{LIBRARY_NAME\\}_LINK_LIBRARIES");
+ std::string::const_iterator start1, end1;
+ start1 = what[0].first;
+ end1 = what[0].second;
+ boost::match_results<std::string::const_iterator> what1;
+ if(boost::regex_search(start1, end1, what1, expression, flags))
{
- // search first parameter
- int pos = 1;
- while (pos < cmlFile[i].second.size())
+ expression = boost::regex("(#[^\\n]*\\n|\\s*\\$\\{\\w+\\})");
+ std::string::const_iterator start2, end2;
+ start2 = what1[0].second;
+ end2 = what[0].second;
+ boost::match_results<std::string::const_iterator> what2;
+ while(boost::regex_search(start2, end2, what2, expression, flags))
{
- // see if it is ${LIBRARY_NAME}_LINK_LIBRARIES
- if (cmlFile[i].second[pos] == "${LIBRARY_NAME}_LINK_LIBRARIES")
- {
- pos++;
- // look for all the third party libraries included
- while (pos < cmlFile[i].second.size())
- {
- if (cmlFile[i].second[pos][0] == '$' && correspondence.find(cmlFile[i].second[pos]) != correspondence.end())
- {
- res[correspondence[cmlFile[i].second[pos]]] = true;
- }
- pos++;
- }
- }
- // if it is the first parameter but is not ${LIBRARY_NAME}_LINK_LIBRARIES then finish with this command
- else if (!isspace(cmlFile[i].second[pos][0]) && cmlFile[i].second[pos][0] != '#' && cmlFile[i].second[pos][0] != '(' && cmlFile[i].second[pos][0] != ')')
+ if(what2.str()[0] != '#')
{
- break;
+ std::string dete = what2.str();
+ CDMUtilities::normalizeStr(dete);
+ if(correspondence.find(dete) != correspondence.end())
+ res[correspondence[dete]] = true;
}
- pos++;
+ start2 = what2[0].second;
}
}
}
#include <fstream>
#include <sstream>
#include <algorithm>
+#include <boost/regex.hpp>
#include "creaWx.h"
#include "wx/dir.h"
if (this->HasCMakeLists())
{
- CDMUtilities::CMLFile cmlFile = CDMUtilities::readCMLFile(this->CMakeLists->GetPath().c_str());
- // look at every syntax element
- for (int i = 0; i < cmlFile.size(); ++i)
+ std::string CMfile = CDMUtilities::readFile(this->CMakeLists->GetPath().c_str());
+
+ boost::regex expression("^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{BBTK_PACKAGE_NAME\\}_USE_\\w+\\s+ON");
+ std::string::const_iterator start, end;
+ start = CMfile.begin();
+ end = CMfile.end();
+ boost::match_results<std::string::const_iterator> what;
+ boost::match_flag_type flags = boost::match_default;
+ while(boost::regex_search(start, end, what, expression, flags))
{
- // if the element is a command and is a SET command
- if (cmlFile[i].first == "command" && cmlFile[i].second[0] == "SET")
+ std::cout << what[0].str() << std::endl;
+ boost::regex expression1 = boost::regex("\\$\\{BBTK_PACKAGE_NAME\\}_USE_\\w+");
+ std::string::const_iterator start1, end1;
+ start1 = what[0].first;
+ end1 = what[0].second;
+ boost::match_results<std::string::const_iterator> what1;
+ if(boost::regex_search(start1, end1, what1, expression1, flags))
{
- // search first parameter
- int pos = 1;
- while (pos < cmlFile[i].second.size())
- {
- if (!isspace(cmlFile[i].second[pos][0]) && cmlFile[i].second[pos][0] != '#' && cmlFile[i].second[pos][0] != '(' && cmlFile[i].second[pos][0] != ')')
- {
- break;
- }
- pos++;
- }
- // if the first parameter is a third party statement
- if (pos < cmlFile[i].second.size() && correspondence.find(cmlFile[i].second[pos]) != correspondence.end())
- {
- std::string foundLibrary = cmlFile[i].second[pos];
- // search for second parameter
- pos++;
- while (pos < cmlFile[i].second.size())
- {
- if (!isspace(cmlFile[i].second[pos][0]) && cmlFile[i].second[pos][0] != '#' && cmlFile[i].second[pos][0] != '(' && cmlFile[i].second[pos][0] != ')')
- {
- break;
- }
- pos++;
- }
- // if the second parameter is ON
- if (pos < cmlFile[i].second.size() && cmlFile[i].second[pos] == "ON")
- {
- res[correspondence[foundLibrary]] = true;
- }
- }
+ std::string dete = what1.str();
+ CDMUtilities::normalizeStr(dete);
+ std::cout << dete << std::endl;
+ if(correspondence.find(dete) != correspondence.end())
+ res[correspondence[dete]] = true;
}
+ start = what[0].second;
}
}
return res;