TimePaths.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 Class
25  Foam::TimePaths
26 
27 Description
28  A class for addressing time paths without using the Time class.
29 
30 SourceFiles
31  TimePaths.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef TimePaths_H
36 #define TimePaths_H
37 
38 #include "fileName.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 
45 /*---------------------------------------------------------------------------*\
46  Class TimePaths Declaration
47 \*---------------------------------------------------------------------------*/
48 
49 class TimePaths
50 {
51  // Private Data
52 
53  bool processorCase_;
54  const fileName rootPath_;
55  fileName globalCaseName_;
56  const fileName case_;
57  const word system_;
58  const word constant_;
59 
60 
61 public:
62 
63  // Constructors
64 
65  //- Construct given database name, rootPath and casePath
66  TimePaths
67  (
68  const fileName& rootPath,
69  const fileName& caseName,
70  const word& systemName,
71  const word& constantName
72  );
73 
74 
75  //- Construct given database name, rootPath and casePath
76  TimePaths
77  (
78  const bool processorCase,
79  const fileName& rootPath,
80  const fileName& globalCaseName,
81  const fileName& caseName,
82  const word& systemName,
83  const word& constantName
84  );
85 
86 
87  // Member Functions
88 
89  //- Return true if this is a processor case
90  bool processorCase() const
91  {
92  return processorCase_;
93  }
94 
95  //- Return root path
96  const fileName& rootPath() const
97  {
98  return rootPath_;
99  }
100 
101  //- Return global case name
102  const fileName& globalCaseName() const
103  {
104  return globalCaseName_;
105  }
106 
107  //- Return case name
108  const fileName& caseName() const
109  {
110  return case_;
111  }
112 
113  //- Return system name
114  const word& system() const
115  {
116  return system_;
117  }
118 
119  //- Return system name for the case
120  // which for parallel runs returns ../system()
121  fileName caseSystem() const;
122 
123  //- Return constant name
124  const word& constant() const
125  {
126  return constant_;
127  }
128 
129  //- Return constant name for the case
130  // which for parallel runs returns ../constant()
131  fileName caseConstant() const;
132 
133  //- Return the global path
134  fileName globalPath() const
135  {
136  return rootPath()/globalCaseName();
137  }
138 
139  //- Return path
140  fileName path() const
141  {
142  return rootPath()/caseName();
143  }
144 };
145 
146 
147 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
148 
149 } // End namespace Foam
150 
151 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
152 
153 #endif
154 
155 // ************************************************************************* //
bool processorCase() const
Return true if this is a processor case.
Definition: TimePaths.H:89
A class for addressing time paths without using the Time class.
Definition: TimePaths.H:48
A class for handling file names.
Definition: fileName.H:79
TimePaths(const fileName &rootPath, const fileName &caseName, const word &systemName, const word &constantName)
Construct given database name, rootPath and casePath.
Definition: TimePaths.C:32
fileName caseSystem() const
Return system name for the case.
Definition: TimePaths.C:110
A class for handling words, derived from string.
Definition: word.H:59
const fileName & caseName() const
Return case name.
Definition: TimePaths.H:107
const fileName & rootPath() const
Return root path.
Definition: TimePaths.H:95
const word & constant() const
Return constant name.
Definition: TimePaths.H:123
const word & system() const
Return system name.
Definition: TimePaths.H:113
fileName caseConstant() const
Return constant name for the case.
Definition: TimePaths.C:123
const fileName & globalCaseName() const
Return global case name.
Definition: TimePaths.H:101
fileName globalPath() const
Return the global path.
Definition: TimePaths.H:133
fileName path() const
Return path.
Definition: TimePaths.H:139
Namespace for OpenFOAM.