//////////////////////////////////////////////////////////////////////////////// // // Copyright 2006 - 2015, Paul Beckingham, Federico Hernandez. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. // // http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// #include #include #include #include #include #include #include #include #include extern Context context; //////////////////////////////////////////////////////////////////////////////// CmdConfig::CmdConfig () { _keyword = "config"; _usage = "task config [name [value | '']]"; _description = STRING_CMD_CONFIG_USAGE; _read_only = true; _displays_id = false; } //////////////////////////////////////////////////////////////////////////////// int CmdConfig::execute (std::string& output) { int rc = 0; std::stringstream out; // Get the non-attribute, non-fancy command line arguments. std::vector words = context.cli.getWords (); // Support: // task config name value # set name to value // task config name "" # set name to blank // task config name # remove name if (words.size ()) { bool confirmation = context.config.getBoolean ("confirmation"); std::string name = words[0]; std::string value = ""; if (words.size () > 1) { for (unsigned int i = 1; i < words.size (); ++i) { if (i > 1) value += " "; value += words[i]; } } if (name != "") { bool change = false; // Read .taskrc (or equivalent) std::vector contents; File::read (context.config._original_file, contents); // task config name value // task config name "" if (words.size () > 1) { bool found = false; std::vector ::iterator line; for (line = contents.begin (); line != contents.end (); ++line) { // If there is a comment on the line, it must follow the pattern. std::string::size_type comment = line->find ("#"); std::string::size_type pos = line->find (name + "="); if (pos != std::string::npos && (comment == std::string::npos || comment > pos)) { found = true; if (!confirmation || confirm (format (STRING_CMD_CONFIG_CONFIRM, name, context.config.get (name), value))) { if (comment != std::string::npos) *line = name + "=" + json::encode (value) + " " + line->substr (comment); else *line = name + "=" + json::encode (value); change = true; } } } // Not found, so append instead. if (!found && (!confirmation || confirm (format (STRING_CMD_CONFIG_CONFIRM2, name, value)))) { contents.push_back (name + "=" + json::encode (value)); change = true; } } // task config name else { bool found = false; std::vector ::iterator line; for (line = contents.begin (); line != contents.end (); ++line) { // If there is a comment on the line, it must follow the pattern. std::string::size_type comment = line->find ("#"); std::string::size_type pos = line->find (name + "="); if (pos != std::string::npos && (comment == std::string::npos || comment > pos)) { found = true; // Remove name if (!confirmation || confirm (format (STRING_CMD_CONFIG_CONFIRM3, name))) { *line = ""; change = true; } } } if (!found) throw format (STRING_CMD_CONFIG_NO_ENTRY, name); } // Write .taskrc (or equivalent) if (change) { File::write (context.config._original_file, contents); out << format (STRING_CMD_CONFIG_FILE_MOD, context.config._original_file._data) << "\n"; } else out << STRING_CMD_CONFIG_NO_CHANGE << "\n"; } else throw std::string (STRING_CMD_CONFIG_NO_NAME); output = out.str (); } else throw std::string (STRING_CMD_CONFIG_NO_NAME); return rc; } //////////////////////////////////////////////////////////////////////////////// CmdCompletionConfig::CmdCompletionConfig () { _keyword = "_config"; _usage = "task _config"; _description = STRING_CMD_HCONFIG_USAGE; _read_only = true; _displays_id = false; } //////////////////////////////////////////////////////////////////////////////// int CmdCompletionConfig::execute (std::string& output) { std::vector configs; context.config.all (configs); std::sort (configs.begin (), configs.end ()); std::vector ::iterator config; for (config = configs.begin (); config != configs.end (); ++config) output += *config + "\n"; return 0; } ////////////////////////////////////////////////////////////////////////////////