Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060 #include <OpenFOAM/argList.H>
00061 #include <OpenFOAM/Time.H>
00062 #include <OpenFOAM/dictionary.H>
00063 #include <OpenFOAM/IFstream.H>
00064
00065 using namespace Foam;
00066
00067
00068
00069
00070 int main(int argc, char *argv[])
00071 {
00072 argList::noParallel();
00073 argList::validOptions.insert("times", "");
00074 argList::validOptions.insert("dictionary", "dictionary name");
00075 argList::validOptions.insert("keywords", "");
00076 argList::validOptions.insert("entry", "entry name");
00077
00078 # include <OpenFOAM/setRootCase.H>
00079
00080 Info<< endl;
00081
00082 if (args.optionFound("times"))
00083 {
00084 instantList times
00085 (
00086 Foam::Time::findTimes(args.rootPath()/args.caseName())
00087 );
00088
00089 forAll (times, i)
00090 {
00091 Info<< times[i].name() << endl;
00092 }
00093 }
00094
00095 if (args.optionFound("dictionary"))
00096 {
00097 fileName dictFileName
00098 (
00099 args.rootPath()/args.caseName()/args.option("dictionary")
00100 );
00101
00102 IFstream dictFile(dictFileName);
00103
00104 if (dictFile.good())
00105 {
00106 dictionary dict(dictFile);
00107
00108 if (args.optionFound("keywords") && !args.optionFound("entry"))
00109 {
00110 for
00111 (
00112 IDLList<entry>::iterator iter = dict.begin();
00113 iter != dict.end();
00114 ++iter
00115 )
00116 {
00117 Info<< iter().keyword() << endl;
00118 }
00119 }
00120 else if (args.optionFound("entry"))
00121 {
00122 wordList entryNames
00123 (
00124 fileName(args.option("entry")).components(':')
00125 );
00126
00127 if (dict.found(entryNames[0]))
00128 {
00129 const entry* entPtr = &dict.lookupEntry
00130 (
00131 entryNames[0],
00132 false,
00133 true
00134 );
00135
00136 for (int i=1; i<entryNames.size(); i++)
00137 {
00138 if (entPtr->dict().found(entryNames[i]))
00139 {
00140 entPtr = &entPtr->dict().lookupEntry
00141 (
00142 entryNames[i],
00143 false,
00144 true
00145 );
00146 }
00147 else
00148 {
00149 FatalErrorIn(args.executable())
00150 << "Cannot find sub-entry " << entryNames[i]
00151 << " in entry " << args.option("entry")
00152 << " in dictionary " << dictFileName;
00153 FatalError.exit(3);
00154 }
00155 }
00156
00157 if (args.optionFound("keywords"))
00158 {
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171 const dictionary& dict(entPtr->dict());
00172 for
00173 (
00174 IDLList<entry>::const_iterator iter = dict.begin();
00175 iter != dict.end();
00176 ++iter
00177 )
00178 {
00179 Info<< iter().keyword() << endl;
00180 }
00181 }
00182 else
00183 {
00184 Info<< *entPtr << endl;
00185 }
00186 }
00187 else
00188 {
00189 FatalErrorIn(args.executable())
00190 << "Cannot find entry "
00191 << entryNames[0]
00192 << " in dictionary " << dictFileName;
00193 FatalError.exit(2);
00194 }
00195 }
00196 else
00197 {
00198 Info<< dict;
00199 }
00200 }
00201 else
00202 {
00203 FatalErrorIn(args.executable())
00204 << "Cannot open file " << dictFileName;
00205 FatalError.exit(1);
00206 }
00207 }
00208
00209 return 0;
00210 }
00211
00212
00213