- use succincter method names that more closely resemble dictionary and HashTable method names. This improves method name consistency between classes and also requires less typing effort: args.found(optName) vs. args.optionFound(optName) args.readIfPresent(..) vs. args.optionReadIfPresent(..) ... args.opt<scalar>(optName) vs. args.optionRead<scalar>(optName) args.read<scalar>(index) vs. args.argRead<scalar>(index) - the older method names forms have been retained for code compatibility, but are now deprecated
123 lines
3.1 KiB
C
123 lines
3.1 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2017 OpenCFD Ltd.
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Application
|
|
Test-etcFiles
|
|
|
|
Description
|
|
Test etcFiles functionality.
|
|
Similar to foamEtcFile script, but automatically prunes nonexistent
|
|
directories from the list.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "argList.H"
|
|
#include "etcFiles.H"
|
|
|
|
using namespace Foam;
|
|
|
|
void printList(const fileNameList& list)
|
|
{
|
|
forAll(list, i)
|
|
{
|
|
Info<< list[i].c_str() << nl;
|
|
}
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
// Main program:
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
argList::noBanner();
|
|
argList::noParallel();
|
|
argList::noFunctionObjects();
|
|
argList::removeOption("case");
|
|
|
|
argList::addBoolOption
|
|
(
|
|
"all",
|
|
"Return all files (otherwise stop after the first match)"
|
|
);
|
|
argList::addBoolOption
|
|
(
|
|
"list",
|
|
"List directories or files to be checked"
|
|
);
|
|
argList::addArgument("file...");
|
|
|
|
argList::addNote
|
|
(
|
|
"Locate user/group/other file with semantics similar to the "
|
|
"~OpenFOAM/fileName expansion."
|
|
);
|
|
|
|
argList args(argc, argv, false, true);
|
|
|
|
// First handle no parameters
|
|
if (args.size() == 1)
|
|
{
|
|
if (args.found("list"))
|
|
{
|
|
fileNameList results = findEtcDirs();
|
|
printList(results);
|
|
return 0;
|
|
}
|
|
else
|
|
{
|
|
Info<<"Error: Missing filename" << endl;
|
|
args.printUsage();
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
const bool listAll = (args.found("all") || args.found("list"));
|
|
|
|
int error = 0;
|
|
|
|
for (int argi = 1; argi < args.size(); ++argi)
|
|
{
|
|
const std::string file = args[argi];
|
|
fileNameList results = findEtcFiles(file);
|
|
|
|
if (results.empty())
|
|
{
|
|
Info<<"Not found: " << file << nl;
|
|
error = 2;
|
|
}
|
|
else if (listAll)
|
|
{
|
|
printList(results);
|
|
}
|
|
else
|
|
{
|
|
Info<<results[0].c_str() << nl;
|
|
}
|
|
}
|
|
|
|
return error;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|