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-2023 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 
58 public:
59 
60  // Static Data
61 
62  static const word systemName;
63  static const word constantName;
64 
65 
66  // Constructors
67 
68  //- Construct given database name, rootPath and casePath
69  TimePaths
70  (
71  const fileName& rootPath,
72  const fileName& caseName
73  );
74 
75 
76  //- Construct given database name, rootPath and casePath
77  TimePaths
78  (
79  const bool processorCase,
80  const fileName& rootPath,
81  const fileName& globalCaseName,
82  const fileName& caseName
83  );
84 
85 
86  // Member Functions
87 
88  //- Return true if this is a processor case
89  bool processorCase() const
90  {
91  return processorCase_;
92  }
93 
94  //- Return root path
95  const fileName& rootPath() const
96  {
97  return rootPath_;
98  }
99 
100  //- Return global case name
101  const fileName& globalCaseName() const
102  {
103  return globalCaseName_;
104  }
105 
106  //- Return case name
107  const fileName& caseName() const
108  {
109  return case_;
110  }
111 
112  //- Return system name
113  static const word& system()
114  {
115  return systemName;
116  }
117 
118  //- Return system name for the case
119  // which for parallel runs returns ../system()
120  fileName caseSystem() const;
121 
122  //- Return constant name
123  static const word& constant()
124  {
125  return constantName;
126  }
127 
128  //- Return constant name for the case
129  // which for parallel runs returns ../constant()
130  fileName caseConstant() const;
131 
132  //- Return the global path
133  fileName globalPath() const
134  {
135  return rootPath()/globalCaseName();
136  }
137 
138  //- Return path
139  fileName path() const
140  {
141  return rootPath()/caseName();
142  }
143 };
144 
145 
146 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
147 
148 } // End namespace Foam
149 
150 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
151 
152 #endif
153 
154 // ************************************************************************* //
A class for addressing time paths without using the Time class.
Definition: TimePaths.H:49
fileName path() const
Return path.
Definition: TimePaths.H:138
static const word constantName
Definition: TimePaths.H:62
static const word & constant()
Return constant name.
Definition: TimePaths.H:122
static const word systemName
Definition: TimePaths.H:61
TimePaths(const fileName &rootPath, const fileName &caseName)
Construct given database name, rootPath and casePath.
Definition: TimePaths.C:41
fileName caseConstant() const
Return constant name for the case.
Definition: TimePaths.C:124
fileName globalPath() const
Return the global path.
Definition: TimePaths.H:132
static const word & system()
Return system name.
Definition: TimePaths.H:112
fileName caseSystem() const
Return system name for the case.
Definition: TimePaths.C:111
bool processorCase() const
Return true if this is a processor case.
Definition: TimePaths.H:88
const fileName & globalCaseName() const
Return global case name.
Definition: TimePaths.H:100
const fileName & caseName() const
Return case name.
Definition: TimePaths.H:106
const fileName & rootPath() const
Return root path.
Definition: TimePaths.H:94
A class for handling file names.
Definition: fileName.H:82
A class for handling words, derived from string.
Definition: word.H:62
Namespace for OpenFOAM.