X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=appli%2Fgimmick%2Fmain.cxx;h=f5f1c1ce7b1250c7a92a153ec30bff5de055d6de;hb=efe10f4ac0d8de45d26ca7b1f74f3676802c1b90;hp=cecd0f76ba6ac8503f6e7d24fb8cfac8fae10caf;hpb=bfe6b2a61bb41b040fb6d49718f1d3558baec84d;p=creaImageIO.git diff --git a/appli/gimmick/main.cxx b/appli/gimmick/main.cxx index cecd0f7..f5f1c1c 100644 --- a/appli/gimmick/main.cxx +++ b/appli/gimmick/main.cxx @@ -1,3 +1,29 @@ +/* + # --------------------------------------------------------------------- + # + # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image + # pour la Santé) + # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton + # Previous Authors : Laurent Guigues, Jean-Pierre Roux + # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil + # + # This software is governed by the CeCILL-B license under French law and + # abiding by the rules of distribution of free software. You can use, + # modify and/ or redistribute the software under the terms of the CeCILL-B + # license as circulated by CEA, CNRS and INRIA at the following URL + # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html + # or in the file LICENSE.txt. + # + # As a counterpart to the access to the source code and rights to copy, + # modify and redistribute granted by the license, users are provided only + # with a limited warranty and the software's author, the holder of the + # economic rights, and the successive licensors have only limited + # liability. + # + # The fact that you are presently reading this means that you have had + # knowledge of the CeCILL-B license and that you accept its terms. + # ------------------------------------------------------------------------ +*/ #include using namespace boost; @@ -10,84 +36,118 @@ using namespace std; int main(int ac, char* av[]) { - - creaImageIO::Gimmick g; - int verb,deb; - std::string handler("Local database"); - - //Describes first group of options - po::options_description generic("GENERIC"); - generic.add_options() + + creaImageIO::Gimmick g; + int verb,deb; + std::string handler("Local database"); + + //Describes first group of options + po::options_description generic("GENERIC"); + generic.add_options() ("help,h", "Print help and exit") - ("version,V", "Print version and exit"); - - //Describes second group of options - po::options_description command("COMMANDS"); - command.add_options() + ("version,V", "Print version and exit"); + + //Describes second group of options + po::options_description command("COMMANDS"); + command.add_options() ("print,p","Prints the local database tree (default=off)") - ("file,f",po::value< vector >(),"Adds the file to the local database") - ("dir,d",po::value< vector >(),"Adds the directory to the local database") - ("recurse,r","Recurse into sub-directories (default=off)"); + ("files,f",po::value< vector >(),"Adds the file(s) to the local database") + ("dir,d",po::value< vector >(),"Adds the directory to the local database") + ("sync,s",po::value< vector >(),"Synchronizes the local database with the files") + ("copy,c",po::value< vector >(),"Copies the files into a local directory"); - //Describes third group of options - po::options_description option("OPTIONS"); - option.add_options() + //Describes third group of options + po::options_description option("OPTIONS"); + option.add_options() ("verbose,v",po::value(&verb),"Verbosity level (default=`1')") - ("debug,D",po::value(&deb),"Debug messages level (default=`0')"); - - - //Adds the groups into a big one - po::options_description cmdline_options; - cmdline_options.add(generic).add(command).add(option); - - //Adds the corresponding variables - po::variables_map vm; - po::store(po::parse_command_line(ac, av, cmdline_options), vm); - po::notify(vm); - - //Does something on each option - //GENERIC - if (vm.count("help")) { - cout << "Usage: gimmick COMMAND [OPTIONS]:\n"; - cout << cmdline_options << "\n"; - } - if (vm.count("version")) { - cout << "gimmick 0.1.0\n"; - } + ("debug,D",po::value(&deb),"Debug messages level (default=`0')") + ("recurse,r","Recurse into sub-directories (default=off)") + ("repair,R","Repair the database (on synchronization) (default=off)") + ("check,C","Check for attribute differences (on synchronization) (default=off)") + ("handler,H",po::value(&handler),"Handler name (default=`Local database')"); + + //Adds the groups into a big one + po::options_description cmdline_options; + cmdline_options.add(generic).add(command).add(option); + + //Adds the corresponding variables + po::variables_map vm; + po::store(po::parse_command_line(ac, av, cmdline_options), vm); + po::notify(vm); + + + //Does something on each option + //GENERIC + if (vm.count("help")) { + cout << "Usage: gimmick COMMAND [OPTIONS]:\n"; + cout << cmdline_options << "\n"; + } + if (vm.count("version")) { + cout << "gimmick 0.1.0\n"; + } + + //OPTIONS + if (vm.count("verbose")) { + g.SetMessageLevel(verb); + cout << "Verbose level is now "<LoadChildren(0,0); - g.Print(handler); + g.GetTreeHandler(handler)->LoadChildren(0,0); + g.Print(handler); } if (vm.count("file")) { - std::vector files=vm["file"].as< vector >(); - g.AddFiles(handler,files); + std::vector files=vm["file"].as< vector >(); + g.AddFiles(handler,files); } if (vm.count("dir")) { - std::vector dirs=vm["dir"].as< vector >(); - g.AddDir(handler,dirs.front(), vm.count("recurse")); + std::vector dirs=vm["dir"].as< vector >(); + bool recu=false; + std::stringstream out; + out< name=vm["sync"].as< vector >(); + std::stringstream out; + out< name=vm["copy"].as< vector >(); + g.CopyFiles(name,handler); + } + g.Finalize(); + } + catch (crea::Exception e) + { + e.Print(); + } + } + + return 0; }