/* easyoptions.cc - FABBER's options-handling class Adrian Groves, FMRIB Image Analysis Group Copyright (C) 2007 University of Oxford */ /* Part of FSL - FMRIB's Software Library http://www.fmrib.ox.ac.uk/fsl fsl@fmrib.ox.ac.uk Developed at FMRIB (Oxford Centre for Functional Magnetic Resonance Imaging of the Brain), Department of Clinical Neurology, Oxford University, Oxford, UK LICENCE FMRIB Software Library, Release 5.0 (c) 2012, The University of Oxford (the "Software") The Software remains the property of the University of Oxford ("the University"). The Software is distributed "AS IS" under this Licence solely for non-commercial use in the hope that it will be useful, but in order that the University as a charitable foundation protects its assets for the benefit of its educational and research purposes, the University makes clear that no condition is made or to be implied, nor is any warranty given or to be implied, as to the accuracy of the Software, or that it will be suitable for any particular purpose or for use under any specific conditions. Furthermore, the University disclaims all responsibility for the use which is made of the Software. It further disclaims any liability for the outcomes arising from using the Software. The Licensee agrees to indemnify the University and hold the University harmless from and against any and all claims, damages and liabilities asserted by third parties (including claims for negligence) which arise directly or indirectly from the use of the Software or the sale of any products based on the Software. No part of the Software may be reproduced, modified, transmitted or transferred in any form or by any means, electronic or mechanical, without the express permission of the University. The permission of the University is not required if the said reproduction, modification, transmission or transference is done without financial return, the conditions of this Licence are imposed upon the receiver of the product, and all original and amended source code is included in any transmitted product. You may be held legally responsible for any copyright infringement that is caused or encouraged by your failure to abide by these terms and conditions. You are not permitted under this Licence to use this Software commercially. Use for which any financial return is received shall be defined as commercial use, and includes (1) integration of all or part of the source code or the Software into a product for sale or license by or on behalf of Licensee to third parties or (2) use of the Software or any derivative of it for research with the final aim of developing software products for sale or license to a third party or (3) use of the Software or any derivative of it for research with the final aim of developing non-software products for sale or license to a third party, or (4) use of the Software to provide any service to an external organisation for which payment is received. If you are interested in using the Software commercially, please contact Isis Innovation Limited ("Isis"), the technology transfer company of the University, to negotiate a licence. Contact details are: innovation@isis.ox.ac.uk quoting reference DE/9564. */ #include #include "easyoptions.h" using namespace Utilities; #include #include EasyOptions::EasyOptions(int argc, char** argv) { Tracer_Plus tr("EasyOptions::EasyOptions"); // Parse argv into key-value pairs // Accepted forms: // --key=value -> args[key] == value // --key value -> args[key] == value // --key -> args[key] == "" // For the last one, use args.count(key) as a boolean flag. Do not look at // args[key] because that will create the empty key for you! // Also, the command name is stored in args[""]. // Extensions: // - use a multimap so duplicate options are okay // - accept short-form options (e.g. -k) // For completeness, store the command line as well // Easy enough to dispose of (if you remember) args[""] = argv[0]; for (int a = 1; a < argc; a++) { if (string(argv[a],0,2) == "--") { string key = argv[a] + 2; // skip the "--" AddKey(key); } else if (string(argv[a]) == "-@") { // cout << "Reading additional -@ options from " << argv[a+1] << endl; ifstream is(argv[++a]); if (!is.good()) { cout << "Couldn't read -@ input file: '" << string(argv[a]) << "'"; throw Invalid_option("Couldn't read input file: -@ " + string(argv[a])); } char c; string param; while (is.good()) { is.get(c); if (!isspace(c)) param += c; else if (param == "") { } // repeated whitespace, so do nothing else if (string(param, 0, 2) == "--") // we have an option { AddKey(string(param,2,string::npos)); param = ""; } else if (string(param, 0, 1) == "#") // comment { // discard this word and the rest of the line. param = ""; while (is.good() && c != '\n') is.get(c); } else if (string(param, 0, 2) == "-@") { throw Invalid_option("Sorry, at the moment you can only use -@ on the command line (no recursion).\n"); } else { throw Invalid_option("Invalid option '" + param + "' found in file '" + argv[a] + "'\n"); } } } else { cout << "Option doesn't begin with --: " + string(argv[a]); throw Invalid_option("An option doesn't begin with --\n"); } } } void EasyOptions::AddKey(const string& key) { // cout << "Adding key '" << key << "'" << endl; string::size_type eqPos = key.find("="); if (args.count(string(key,0,eqPos)) > 0) throw Invalid_option("Duplicated option: '" + key + "'\n"); else if (eqPos != (key.npos)) args[string(key,0,eqPos)] = string(key, eqPos+1); // else if (a+1 < argc && string(argv[a+1],0,1) != "-") // args[key] = argv[++a]; // This is the --option value rather than --option=value format. else args[key] = ""; } string EasyOptions::Read(const string& key, const string& msg) { if (args.count(key) == 0) throw Invalid_option(msg); if (args[key] == "") throw Invalid_option("No value given for mandatory option: --" + key + "=???"); // okay, option is valid. Now remove it. string ret = args[key]; args.erase(key); return ret; } bool EasyOptions::ReadBool(const string& key) { if (args.count(key) == 0) return false; if (args[key] == "") { args.erase(key); return true; } throw Invalid_option( "Value should not be given for boolean option --" + key); } string EasyOptions::ReadWithDefault(const string& key, const string& def) { if (args.count(key) == 0) return def; if (args[key] == "") throw Invalid_option("Option requires a value: --" + key + " (or omit, equivalent to --" + key + "=" + def); string ret = args[key]; args.erase(key); return ret; } void EasyOptions::CheckEmpty() { args.erase(""); // not worth complaining about this if (args.empty()) return; string msg = "\nUnused arguments:\n" + stringify(*this); throw Invalid_option(msg); } ostream& operator<<(ostream& out, const EasyOptions& opts) { for (map::const_iterator i = opts.args.begin(); i != opts.args.end(); i++) { if (i->second == "") out << "--" << i->first << endl; else out << "--" << i->first << "='" << i->second << "'" << endl; } return out; }