12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #include "kind.h"
- #include "Exception.h"
- #include "FileName.h"
- #include "filetools.h"
- #include "excludetools.h"
- using namespace std;
- Strings getExclusions(const KindConfig& conf)
- {
- Strings exclusions;
- if (conf.hasKey("exclude"))
- exclusions += conf.getStrings("exclude");
- if (conf.getBool("shellMode"))
- {
- string path = conf.getString("path");
- string remoteShell = conf.getString("remoteShell");
- string userAtHost = conf.getString("user") + "@" + conf.getString("host");
- string rshCommand = remoteShell;
- if (remoteShell.empty())
- rshCommand = "ssh";
- rshCommand += " " + userAtHost;
- Strings userExcludeCommands = conf.getStrings("userExcludeCommand");
- for (auto cmd : userExcludeCommands)
- {
- replacePlaceHolder(cmd, "%path", conf.getString("path"));
- verbosePrint("looking for exclusions (" + cmd + ")");
- int rc;
- Strings excludedFiles = remoteExec(rshCommand, cmd, rc, debug);
- /*
- if (rc > 0)
- {
- // return Strings should contain error messages
- throw Exception("Find excludes", "Search for excludes failed");
- }
- */
- for (unsigned int i = 0; i < excludedFiles.size(); ++i)
- {
- FileName fn(excludedFiles[i]);
- exclusions.push_back('/' + fn.getPath());
- debugPrint("Excluding: " + exclusions.back());
- }
- }
- /*
- string userExcludeFile = conf.getString("userExcludeFile");
- if (!userExcludeFile.empty())
- {
- userExcludeFile = path + "/" + userExcludeFile;
- string getExcludeFileCommand = " \" if [ -f '" + userExcludeFile + "' ]; then ";
- getExcludeFileCommand += " cat '" + userExcludeFile + "' ; fi \"";
- // cout << getExcludeFileCommand << endl;
- int rc;
- Strings excludes2 = remoteExec(rshCommand, getExcludeFileCommand, rc, debug);
- if (rc == 0)
- exclusions += excludes2;
- } // if (shellMode)
- */
- }
- return exclusions;
- }
|