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 #include "Time.H"
00032 #include <OpenFOAM/OSspecific.H>
00033 #include <OpenFOAM/IStringStream.H>
00034
00035
00036
00037 Foam::instantList Foam::Time::findTimes(const fileName& directory)
00038 {
00039 if (debug)
00040 {
00041 Info<< "Time::findTimes(const fileName&): finding times in directory "
00042 << directory << endl;
00043 }
00044
00045
00046 fileNameList dirEntries(readDir(directory, fileName::DIRECTORY));
00047
00048
00049 instantList Times(dirEntries.size() + 1);
00050 label nTimes = 0;
00051
00052
00053 bool haveConstant = false;
00054 forAll(dirEntries, i)
00055 {
00056 if (dirEntries[i] == "constant")
00057 {
00058 Times[nTimes].value() = 0;
00059 Times[nTimes].name() = dirEntries[i];
00060 nTimes++;
00061 haveConstant = true;
00062 break;
00063 }
00064 }
00065
00066
00067 forAll(dirEntries, i)
00068 {
00069 IStringStream timeStream(dirEntries[i]);
00070 token timeToken(timeStream);
00071
00072 if (timeToken.isNumber() && timeStream.eof())
00073 {
00074 Times[nTimes].value() = timeToken.number();
00075 Times[nTimes].name() = dirEntries[i];
00076 nTimes++;
00077 }
00078 }
00079
00080
00081 Times.setSize(nTimes);
00082
00083 if (haveConstant)
00084 {
00085 if (nTimes > 2)
00086 {
00087 std::sort(&Times[1], Times.end(), instant::less());
00088 }
00089 }
00090 else if (nTimes > 1)
00091 {
00092 std::sort(&Times[0], Times.end(), instant::less());
00093 }
00094
00095 return Times;
00096 }
00097
00098