PtrListDictionary.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) 2015-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::PtrListDictionary
26 
27 Description
28  Template dictionary class which manages the storage associated with it.
29 
30  It is derived from DictionaryBase instantiated on the memory managed PtrList
31  of <T> to provide ordered indexing in addition to the dictionary lookup.
32 
33 SourceFiles
34  PtrListDictionary.C
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef PtrListDictionary_H
39 #define PtrListDictionary_H
40 
41 #include "DictionaryBase.H"
42 #include "PtrList.H"
43 
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 
46 namespace Foam
47 {
48 
49 template<class T>
50 class UPtrListDictionary;
51 
52 /*---------------------------------------------------------------------------*\
53  Class PtrListDictionary Declaration
54 \*---------------------------------------------------------------------------*/
55 
56 template<class T>
58 :
59  public DictionaryBase<PtrList<T>, T>
60 {
61 
62 public:
63 
64  // Related types
65 
66  //- Declare friendship with the UPtrListDictionary class
67  friend class UPtrListDictionary<T>;
68 
69 
70  // Constructors
71 
72  //- Construct given initial list size
74 
75  //- Copy constructor
77 
78  //- Move constructor
80 
81  //- Construct from Istream using given Istream constructor class
82  template<class INew>
83  PtrListDictionary(Istream&, const INew&);
84 
85  //- Construct from Istream
87 
88 
89  // Member Functions
90 
91  //- Set element to pointer provided and return old element
92  autoPtr<T> set(const label, const word& key, T*);
93 
94  //- Set element to autoPtr value provided and return old element
95  autoPtr<T> set(const label, const word& key, autoPtr<T>&);
96 
97  //- Set element to tmp value provided and return old element
98  autoPtr<T> set(const label, const word& key, tmp<T>&);
99 
100 
101  // Conversion
102 
103  //- Convert to list of different pointer type
104  template<class T2>
106 
107 
108  // Member Operators
109 
110  using PtrList<T>::operator[];
111 
112  //- Find and return entry
113  const T& operator[](const word& key) const
114  {
115  return *DictionaryBase<PtrList<T>, T>::operator[](key);
116  }
117 
118  //- Find and return entry
119  T& operator[](const word& key)
120  {
121  return *DictionaryBase<PtrList<T>, T>::operator[](key);
122  }
123 };
124 
125 
126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
127 
128 } // End namespace Foam
129 
130 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
131 
132 #ifdef NoRepository
133  #include "PtrListDictionary.C"
134 #endif
135 
136 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
137 
138 #endif
139 
140 // ************************************************************************* //
Base dictionary class templated on both the form of doubly-linked list it uses as well as the type it...
friend Ostream & operator(Ostream &, const DictionaryBase< PtrList< T >, T > &)
A helper class when constructing from an Istream or dictionary.
Definition: INew.H:50
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
Definition: Istream.H:60
Template dictionary class which manages the storage associated with it.
UPtrListDictionary< T2 > convert()
Convert to list of different pointer type.
const T & operator[](const word &key) const
Find and return entry.
autoPtr< T > set(const label, const word &key, T *)
Set element to pointer provided and return old element.
PtrListDictionary(const label size)
Construct given initial list size.
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
Definition: PtrList.H:75
Template dictionary class which manages the storage associated with it.
label size() const
Return the number of elements in the UPtrList.
Definition: UPtrListI.H:29
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: autoPtr.H:51
A class for managing temporary objects.
Definition: tmp.H:55
A class for handling words, derived from string.
Definition: word.H:62
Namespace for OpenFOAM.
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)