Newer
Older
////////////////////////////////////////////////////////////////////////////////
//
// File: FieldConvert.cpp
//
// For more information, please see: http://www.nektar.info/
//
// The MIT License
//
// Copyright (c) 2006 Division of Applied Mathematics, Brown University (USA),
// Department of Aeronautics, Imperial College London (UK), and Scientific
// Computing and Imaging Institute, University of Utah (USA).
//
Spencer Sherwin
committed
// License for the specific language governing rights and laimitations under
// 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.
//
// Description: Field conversion utility.
//
////////////////////////////////////////////////////////////////////////////////
#include <string>
#include <boost/algorithm/string.hpp>
#include <boost/program_options.hpp>
void CheckModules(vector<ModuleSharedPtr> &modules);
void PrintExecutionSequence(vector<ModuleSharedPtr> &modules);
void RunModule(ModuleSharedPtr module, po::variables_map &vm, bool verbose);
Spencer Sherwin
committed
Timer timer;
timer.Start();
po::options_description desc("Available options");
desc.add_options()
("output-points,n", po::value<int>(),
"Output at n equipspaced points along the "
"collapsed coordinates (for .dat, .vtu).")
("output-points-hom-z", po::value<int>(),
"Number of planes in the z-direction for output of "
"Homogeneous 1D expansion(for .dat, .vtu).")
Spencer Sherwin
committed
("forceoutput,f",
"Force the output to be written without any checks")
("range,r", po::value<string>(),
"Define output range i.e. (-r xmin,xmax,ymin,ymax,zmin,zmax) "
"in which any vertex is contained.")
("noequispaced",
"Do not use equispaced output.")
"Used to define nprocs if running serial problem to mimic "
"parallel run.")
("npz", po::value<int>(),
"Used to define number of partitions in z for Homogeneous1D "
"expansions for parallel runs.")
("onlyshape", po::value<string>(),
"Only use element with defined shape type i.e. -onlyshape "
" Tetrahedron")
Spencer Sherwin
committed
("part-only", po::value<int>(),
"Partition into specified npart partitions and exit")
Spencer Sherwin
committed
("part-only-overlapping", po::value<int>(),
"Partition into specified npart overlapping partitions and exit")
"Process as single procid of a partition of size nprocs "
"(--nprocs must be specified).")
("modules-opt,p", po::value<string>(),
("module,m", po::value<vector<string> >(),
po::options_description hidden("Hidden options");
hidden.add_options()
("input-file", po::value<vector<string> >(), "Input filename");
po::options_description cmdline_options;
cmdline_options.add(hidden).add(desc);
po::options_description visible("Allowed options");
visible.add(desc);
po::positional_options_description p;
p.add("input-file", -1);
try
{
po::store(po::command_line_parser(argc, argv).
options(cmdline_options).positional(p).run(), vm);
po::notify(vm);
catch (const std::exception& e)
{
cerr << e.what() << endl;
cerr << desc;
return 1;
}
// Print available modules.
if (vm.count("modules-list"))
{
GetModuleFactory().PrintAvailableClasses(std::cerr);
return 1;
}
if (vm.count("modules-opt"))
{
vector<string> tmp1;
boost::split(tmp1, vm["modules-opt"].as<string>(),
boost::is_any_of(":"));
if (tmp1.size() != 2)
{
cerr << "ERROR: To specify a module, use one of in, out or proc "
<< "together with the filename; for example in:vtk." << endl;
return 1;
}
if (tmp1[0] != "in" && tmp1[0] != "out" && tmp1[0] != "proc")
{
cerr << "ERROR: Invalid module type " << tmp1[0] << endl;
return 1;
}
if (tmp1[0] == "in")
{
t = eInputModule;
}
else if (tmp1[0] == "out")
{
t = eOutputModule;
}
else if (tmp1[0] == "proc")
{
t = eProcessModule;
}
FieldSharedPtr f = boost::shared_ptr<Field>(new Field());
ModuleSharedPtr mod = GetModuleFactory().CreateInstance(
ModuleKey(t, tmp1[1]), f);
cerr << "Options for module " << tmp1[1] << ":" << endl;
mod->PrintConfig();
return 1;
}
if (vm.count("help") || vm.count("input-file") != 1)
{
cerr << "Usage: FieldConvert [options] inputfile.ext1 outputfile.ext2"
Spencer Sherwin
committed
cout << endl;
cout << "Example Usage: \n" << endl;
cout << "\t FieldConvert -m vorticity file.xml file.fld file_vort.fld "
<< endl;
cout << "(This will add vorticity to file file.fld and put it in a "
"new file file_vort.fld) " << endl;
Spencer Sherwin
committed
cout << endl;
cout << "\t FieldConvert file.xml file_vort.fld file_vort.dat " << endl;
cout << "(process file_vort.fld and make a tecplot output "
"file_vort.dat) " << endl;
Spencer Sherwin
committed
ASSERTL0(vm.count("input-file"),
"Must specify input(s) and/or output file.");
vector<string> inout = vm["input-file"].as<vector<string> >();
Spencer Sherwin
committed
* Process list of modules. Each element of the vector of module
* strings can be in the following form:
* modname:arg1=a:arg2=b:arg3=c:arg4:arg5=asd
Spencer Sherwin
committed
* where the only required argument is 'modname', specifing the
* name of the module to load.
*/
FieldSharedPtr f = boost::shared_ptr<Field>(new Field());
if (LibUtilities::GetCommFactory().ModuleExists("ParallelMPI"))
{
if(vm.count("procid"))
{
ASSERTL0(vm.count("nprocs"),
"Must specify --nprocs when using --procid option");
nprocs = vm["nprocs"].as<int>();
rank = vm["procid"].as<int>();
f->m_comm = boost::shared_ptr<FieldConvertComm>(
new FieldConvertComm(argc, argv, nprocs,rank));
}
else
{
f->m_comm = LibUtilities::GetCommFactory().CreateInstance(
}
}
else
{
f->m_comm = LibUtilities::GetCommFactory().CreateInstance(
"Serial", argc, argv);
}
vector<ModuleSharedPtr> modules;
vector<string> modcmds;
ModuleKey module;
ModuleSharedPtr mod;
Spencer Sherwin
committed
Spencer Sherwin
committed
f->m_verbose = true;
}
if (vm.count("module"))
{
modcmds = vm["module"].as<vector<string> >();
}
// Add input and output modules to beginning and end of this vector.
modcmds.insert(modcmds.begin(), inout.begin(), inout.end()-1);
modcmds.push_back(*(inout.end()-1));
Spencer Sherwin
committed
int nInput = inout.size()-1;
Spencer Sherwin
committed
// For special case of part-only or part-only-overlapping options
// only require a single input file and so reset the nInputs to be
// of size inout.size(). Since the code will exit before reaching
// any output module this seems to work as expected
if(vm.count("part-only")||vm.count("part-only-overlapping"))
{
nInput = inout.size();
}
InputModuleSharedPtr inputModule;
for (int i = 0; i < modcmds.size(); ++i)
{
// First split each command by the colon separator.
vector<string> tmp1;
int offset = 1;
boost::split(tmp1, modcmds[i], boost::is_any_of(":"));
if (i < nInput || i == modcmds.size() - 1)
module.first = (i < nInput ? eInputModule : eOutputModule);
// If no colon detected, automatically detect mesh type from
// file extension. Otherwise override and use tmp1[1] as the
// module to load. This also allows us to pass options to
// input/output modules. So, for example, to override
// filename.xml to be read as vtk, you use:
//
// filename.xml:vtk:opt1=arg1:opt2=arg2
if (tmp1.size() == 1)
{
int dot = tmp1[0].find_last_of('.') + 1;
string ext = tmp1[0].substr(dot, tmp1[0].length() - dot);
Spencer Sherwin
committed
if(ext == "gz")
{
string tmp2 = tmp1[0].substr(0,dot-1);
dot = tmp2.find_last_of('.') + 1;
ext = tmp1[0].substr(dot,tmp1[0].length()-dot);
}
tmp1.push_back(string(i < nInput ? "infile=" : "outfile=")
+tmp1[0]);
}
else
{
module.second = tmp1[1];
tmp1.push_back(string(i < nInput ? "infile=" : "outfile=")
+tmp1[0]);
offset++;
}
}
else
{
module.first = eProcessModule;
module.second = tmp1[0];
}
Spencer Sherwin
committed
mod = GetModuleFactory().CreateInstance(module, f);
modules.push_back(mod);
if (i < nInput)
{
Spencer Sherwin
committed
inputModule = boost::dynamic_pointer_cast<InputModule>(mod);
inputModule->AddFile(module.second, tmp1[0]);
}
// Set options for this module.
for (int j = offset; j < tmp1.size(); ++j)
{
vector<string> tmp2;
boost::split(tmp2, tmp1[j], boost::is_any_of("="));
if (tmp2.size() == 1)
{
mod->RegisterConfig(tmp2[0], "1");
}
else if (tmp2.size() == 2)
{
mod->RegisterConfig(tmp2[0], tmp2[1]);
}
else
{
cerr << "ERROR: Invalid module configuration: format is "
<< "either :arg or :arg=val" << endl;
abort();
}
}
// Ensure configuration options have been set.
mod->SetDefaults();
}
// Include dummy module to create m_exp
module.first = eProcessModule;
module.second = string("createExp");
mod = GetModuleFactory().CreateInstance(module, f);
modules.push_back(mod);
Array< OneD, int> modulesCount(SIZE_ModulePriority,0);
for (int i = 0; i < modules.size(); ++i)
{
++modulesCount[modules[i]->GetModulePriority()];
}
if( modulesCount[eModifyPts] != 0 &&
modulesCount[eCreatePts] == 0)
{
module.first = eProcessModule;
module.second = string("equispacedoutput");
mod = GetModuleFactory().CreateInstance(module, f);
modules.push_back(mod);
}
// Check if modules provided are compatible
CheckModules(modules);
bool verbose = (f->m_verbose && f->m_comm->TreatAsRankZero());
if(verbose)
{
PrintExecutionSequence(modules);
}
// Run field process.
for (int n = 0; n < SIZE_ModulePriority; ++n)
ModulePriority priority = static_cast<ModulePriority>(n);
for (int i = 0; i < modules.size(); ++i)
{
if(modules[i]->GetModulePriority() == priority)
{
RunModule(modules[i], vm, verbose);
}
}
Spencer Sherwin
committed
{
timer.Stop();
NekDouble cpuTime = timer.TimePerTest(1);
stringstream ss;
ss << cpuTime << "s";
cout << "Total CPU Time: " << setw(8) << left
<< ss.str() << endl;
Spencer Sherwin
committed
}
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
// This function checks validity conditions for the list of modules provided
void CheckModules(vector<ModuleSharedPtr> &modules)
{
// Count number of modules by priority
Array< OneD, int> modulesCount(SIZE_ModulePriority,0);
for (int i = 0; i < modules.size(); ++i)
{
++modulesCount[modules[i]->GetModulePriority()];
}
// Modules of type eModifyFieldData require a eCreateFieldData module
if( modulesCount[eModifyFieldData] != 0 &&
modulesCount[eCreateFieldData] == 0)
{
stringstream ss;
ss << "Module(s): ";
for (int i = 0; i < modules.size(); ++i)
{
if(modules[i]->GetModulePriority() == eModifyFieldData)
{
ss << modules[i]->GetModuleName()<<" ";
}
}
ss << "require fld input.";
ASSERTL0(false, ss.str());
}
// Modules of type eFillExp require eCreateGraph without eCreateFieldData
if( modulesCount[eFillExp] != 0)
{
if( modulesCount[eCreateGraph] == 0 ||
modulesCount[eCreateFieldData] != 0)
{
stringstream ss;
ss << "Module(s): ";
for (int i = 0; i < modules.size(); ++i)
{
if(modules[i]->GetModulePriority() == eFillExp)
{
ss << modules[i]->GetModuleName()<<" ";
}
}
ss << "require xml input without fld input.";
ASSERTL0(false, ss.str());
}
}
// Modules using m_exp require a eCreateGraph module
if( modulesCount[eCreateGraph] == 0)
{
if( modulesCount[eModifyExp] != 0 ||
modulesCount[eBndExtraction] != 0)
{
stringstream ss;
ss << "Module(s): ";
for (int i = 0; i < modules.size(); ++i)
{
if(modules[i]->GetModulePriority() == eModifyExp ||
modules[i]->GetModulePriority() == eBndExtraction)
{
ss << modules[i]->GetModuleName()<<" ";
}
}
ss << "require xml input.";
ASSERTL0(false, ss.str());
}
}
}
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
void PrintExecutionSequence(vector<ModuleSharedPtr> &modules)
{
bool first = true;
cout << "Execution sequence:" << endl;
for (int n = 0; n < SIZE_ModulePriority; ++n)
{
ModulePriority priority = static_cast<ModulePriority>(n);
for (int i = 0; i < modules.size(); ++i)
{
if(modules[i]->GetModulePriority() == priority)
{
if(first)
{
cout << "\t" << modules[i]->GetModuleName();
first = false;
}
else
{
cout << " -> " << modules[i]->GetModuleName();
}
}
}
}
cout << endl;
}
void RunModule(ModuleSharedPtr module, po::variables_map &vm, bool verbose)
{
Timer moduleTimer;
if(verbose)
{
moduleTimer.Start();
cout << module->GetModuleName() << ": "
<< module->GetModuleDescription() << endl;
}
module->Process(vm);
cout.flush();
if(verbose)
{
moduleTimer.Stop();
NekDouble cpuTime = moduleTimer.TimePerTest(1);
stringstream ss;
ss << cpuTime << "s";
cout << module->GetModuleName()
<< " CPU Time: " << setw(8) << left
<< ss.str() << endl;
}
}