X-Git-Url: https://ruin.nu/git/?p=germs.git;a=blobdiff_plain;f=src%2Fmain.cpp;h=34ac34fbfc54cfa749900b90d337cd3a4b9be66f;hp=5e6a5c99902915cd28e344b4d63eecec0ed8f375;hb=cc8cefc83ca7216594d937b839673efafeee68f4;hpb=4b63e18f4e100d3506ed170d4798539b08d19bc0 diff --git a/src/main.cpp b/src/main.cpp index 5e6a5c9..34ac34f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2,8 +2,12 @@ #include #include #include +#include + using namespace std; +#include + #include "geneorder.h" #include "modelidentifier.h" #include "genesorter.h" @@ -11,16 +15,51 @@ using namespace std; typedef pair modelpair; -int main(){ +int main(int argc, char** argv){ + + string ann = "default.ann"; + int opt; + while ((opt = getopt(argc, argv, "n:h")) != -1) { + switch (opt) { + case 'n': + ann = optarg; + break; + case 'h': + cout << "Usage: " << argv[0] << " [OPTION] [FILE]" << endl + << endl << " -n Specifies which artificial neural network to use for identification. '" << ann << "' is used by default" + << endl << " -h Prints this help message" + << endl << endl + << "With no FILE, or if FILE is '-', stdin will be used" + << endl; + exit(EXIT_SUCCESS); + break; + default: /* '?' */ + cerr << "Usage: " << argv[0] << " [-n ] [-h] [FILE]" << endl; + exit(EXIT_FAILURE); + } + } + + istream* in; + ifstream file; + if (optind == argc || *argv[optind] == '-'){ + in = &cin; + }else{ + file.open(argv[optind]); + if (file.fail()){ + cerr << "Could not open file: '" << argv[optind] << "'" << endl; + exit(EXIT_FAILURE); + } + in = &file; + } //TODO: Parse vector g; - copy(istream_iterator(cin), istream_iterator(), + copy(istream_iterator(*in), istream_iterator(), back_inserter(g)); GeneOrder go(g.begin(),g.end()); //TODO: Identify - ModelIdentifier mi("default.ann"); + ModelIdentifier mi(ann); map scores = mi.identify(go); for (map::iterator m = scores.begin(); m != scores.end(); ++m){ @@ -32,5 +71,5 @@ int main(){ //TODO: Sort GeneSorter::ActionList al = so.sort(go); //TODO: Print result - return 0; + return EXIT_SUCCESS; }