37 #include <boost/algorithm/string.hpp> 
   38 #include <boost/program_options.hpp> 
   44 int main(
int argc, 
char* argv[])
 
   48     po::options_description desc(
"Available options");
 
   51                 "Produce this help message.")
 
   53                 "Print the list of available modules.")
 
   54         (
"output-points,n", po::value<int>(),
 
   55                 "Output at n equipspaced points along the collapsed coordinates (for .dat, .vtk).")
 
   56         (
"output-points-hom-z", po::value<int>(),
 
   57                 "Number of planes in the z-direction for output of Homogeneous 1D expansion(for .dat, .vtk).")
 
   59                 "Write error of fields for regression checking")
 
   61                 "Force the output to be written without any checks")
 
   62         (
"range,r", po::value<string>(),
 
   63                 "Define output range i.e. (-r xmin,xmax,ymin,ymax,zmin,zmax) " 
   64                 "in which any vertex is contained.")
 
   65         (
"noequispaced",
"Do not use equispaced output. Currently stops the output-points option")
 
   66         (
"nprocs", po::value<int>(),
 
   67                 "Used to define nprocs if running serial problem to mimic " 
   69         (
"onlyshape", po::value<string>(),
 
   70                  "Only use element with defined shape type i.e. -onlyshape " 
   72         (
"part-only", po::value<int>(),
 
   73                 "Partition into specfiied npart partitions and exit")
 
   74         (
"part-only-overlapping", po::value<int>(),
 
   75                 "Partition into specfiied npart overlapping partitions and exit")
 
   76         (
"procid", po::value<int>(),
 
   77                 "Process as single procid of a partition of size nproc " 
   78                 "(-nproc must be specified).")
 
   79         (
"modules-opt,p", po::value<string>(),
 
   80                 "Print options for a module.")
 
   81         (
"module,m", po::value<vector<string> >(),
 
   82                 "Specify modules which are to be used.")
 
   83         (
"shared-filesystem,s", 
"Using shared filesystem.")
 
   84         (
"useSessionVariables",
 
   85                 "Use variables defined in session for output")
 
   87                 "Enable verbose mode.");
 
   89     po::options_description hidden(
"Hidden options");
 
   91         (
"input-file",   po::value<vector<string> >(), 
"Input filename");
 
   93     po::options_description cmdline_options;
 
   94     cmdline_options.add(hidden).add(desc);
 
   96     po::options_description visible(
"Allowed options");
 
   99     po::positional_options_description p;
 
  100     p.add(
"input-file", -1);
 
  102     po::variables_map vm;
 
  106         po::store(po::command_line_parser(argc, argv).
 
  107                   options(cmdline_options).positional(p).run(), vm);
 
  110     catch (
const std::exception& e)
 
  112         cerr << e.what() << endl;
 
  118     if (vm.count(
"modules-list"))
 
  124     if (vm.count(
"modules-opt"))
 
  127         boost::split(tmp1, vm[
"modules-opt"].as<string>(),
 
  128                      boost::is_any_of(
":"));
 
  130         if (tmp1.size() != 2)
 
  132             cerr << 
"ERROR: To specify a module, use one of in, out or proc " 
  133                  << 
"together with the filename; for example in:vtk." << endl;
 
  137         if (tmp1[0] != 
"in" && tmp1[0] != 
"out" && tmp1[0] != 
"proc")
 
  139             cerr << 
"ERROR: Invalid module type " << tmp1[0] << endl;
 
  149         else if (tmp1[0] == 
"out")
 
  153         else if (tmp1[0] == 
"proc")
 
  161         cerr << 
"Options for module " << tmp1[1] << 
":" << endl;
 
  166     if (vm.count(
"help") || vm.count(
"input-file") != 1) {
 
  167         cerr << 
"Usage: FieldConvert [options] inputfile.ext1 outputfile.ext2" 
  171         cout << 
"Example Usage: \n" << endl;
 
  172         cout << 
"\t FieldConvert -m vorticity file.xml file.fld file_vort.fld " 
  174         cout << 
"(This will add vorticity to file file.fld and put it in a " 
  175                 "new file file_vort.fld) " << endl;
 
  177         cout << 
"\t FieldConvert file.xml file_vort.fld file_vort.dat " << endl;
 
  178         cout << 
"(process file_vort.fld and make a tecplot output " 
  179                 "file_vort.dat) " << endl;
 
  185              "Must specify input(s) and/or output file.");
 
  186     vector<string> inout = vm[
"input-file"].as<vector<string> >();
 
  202         if(vm.count(
"procid"))
 
  207                      "Must specify --nprocs when using --procid option");
 
  208             nprocs = vm[
"nprocs"].as<
int>();
 
  209             rank   = vm[
"procid"].as<
int>();
 
  211             f->m_comm = boost::shared_ptr<FieldConvertComm>(
 
  217                                                     "ParallelMPI", argc, argv);
 
  223                                                     "Serial", argc, argv);
 
  227     vector<ModuleSharedPtr> modules;
 
  228     vector<string>          modcmds;
 
  231     if (vm.count(
"verbose"))
 
  236     if (vm.count(
"module"))
 
  238         modcmds = vm[
"module"].as<vector<string> >();
 
  242     modcmds.insert(modcmds.begin(), inout.begin(), inout.end()-1);
 
  243     modcmds.push_back(*(inout.end()-1));
 
  245     int nInput = inout.size()-1;
 
  251     if(vm.count(
"part-only")||vm.count(
"part-only-overlapping"))
 
  253         nInput = inout.size();
 
  258     for (
int i = 0; i < modcmds.size(); ++i)
 
  265         boost::split(tmp1, modcmds[i], boost::is_any_of(
":"));
 
  267         if (i < nInput || i == modcmds.size() - 1)
 
  278             if (tmp1.size() == 1)
 
  280                 int    dot    = tmp1[0].find_last_of(
'.') + 1;
 
  281                 string ext    = tmp1[0].substr(dot, tmp1[0].length() - dot);
 
  285                     string tmp2 = tmp1[0].substr(0,dot-1);
 
  286                     dot = tmp2.find_last_of(
'.') + 1;
 
  287                     ext = tmp1[0].substr(dot,tmp1[0].length()-dot);
 
  291                 tmp1.push_back(
string(i < nInput ? 
"infile=" : 
"outfile=")
 
  296                 module.second = tmp1[1];
 
  297                 tmp1.push_back(
string(i < nInput ? 
"infile=" : 
"outfile=")
 
  305             module.second = tmp1[0];
 
  311         modules.push_back(mod);
 
  315             inputModule = boost::dynamic_pointer_cast<
InputModule>(mod);
 
  316             inputModule->
AddFile(module.second, tmp1[0]);
 
  320         for (
int j = offset; j < tmp1.size(); ++j)
 
  323             boost::split(tmp2, tmp1[j], boost::is_any_of(
"="));
 
  325             if (tmp2.size() == 1)
 
  327                 mod->RegisterConfig(tmp2[0], 
"1");
 
  329             else if (tmp2.size() == 2)
 
  331                 mod->RegisterConfig(tmp2[0], tmp2[1]);
 
  335                 cerr << 
"ERROR: Invalid module configuration: format is " 
  336                      << 
"either :arg or :arg=val" << endl;
 
  346    if(vm.count(
"noequispaced"))
 
  348         for (
int i = 0; i < modules.size(); ++i)
 
  350             modules[i]->SetRequireEquiSpaced(
false);
 
  355         bool RequiresEquiSpaced = 
false;
 
  356         for (
int i = 0; i < modules.size(); ++i)
 
  358             if(modules[i]->GetRequireEquiSpaced())
 
  360                 RequiresEquiSpaced = 
true;
 
  363         if (RequiresEquiSpaced)
 
  365             for (
int i = 0; i < modules.size(); ++i)
 
  367                 modules[i]->SetRequireEquiSpaced(
true);
 
  373     for (
int i = 0; i < modules.size(); ++i)
 
  375         modules[i]->Process(vm);
 
  381         if(f->m_comm->GetRank() == 0)
 
  387             ss << cpuTime << 
"s";
 
  388             cout << 
"Total CPU Time: " << setw(8) << left
 
#define ASSERTL0(condition, msg)
void PrintAvailableClasses(std::ostream &pOut=std::cout)
Prints the available classes to stdout. 
pair< ModuleType, string > ModuleKey
tBaseSharedPtr CreateInstance(tKey idKey BOOST_PP_COMMA_IF(MAX_PARAM) BOOST_PP_ENUM_BINARY_PARAMS(MAX_PARAM, tParam, x))
Create an instance of the class referred to by idKey. 
CommFactory & GetCommFactory()
boost::shared_ptr< InputModule > InputModuleSharedPtr
bool ModuleExists(tKey idKey)
Checks if a particular module is available. 
boost::shared_ptr< Module > ModuleSharedPtr
boost::shared_ptr< Field > FieldSharedPtr
NekDouble TimePerTest(unsigned int n)
Returns amount of seconds per iteration in a test with n iterations. 
ModuleFactory & GetModuleFactory()
int main(int argc, char *argv[])