Flow123d  release_2.2.0-914-gf1a3a4f
type_abstract.cc
Go to the documentation of this file.
1 /*!
2  *
3  * Copyright (C) 2015 Technical University of Liberec. All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License version 3 as published by the
7  * Free Software Foundation. (http://www.gnu.org/licenses/gpl-3.0.en.html)
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12  *
13  *
14  * @file type_abstract.cc
15  * @brief
16  */
17 
18 #include "input_type.hh"
19 #include "type_repository.hh"
20 #include "attribute_lib.hh"
21 
22 #include "system/system.hh"
23 #include "input/storage.hh"
24 #include <boost/functional/hash.hpp>
25 
26 #include <stddef.h> // for NULL
27 #include <algorithm> // for find
28 #include <boost/exception/detail/error_info_impl.hpp> // for error_info
29 #include <boost/exception/info.hpp> // for operator<<
30 #include <boost/functional/hash/hash.hpp> // for hash_combine
31 #include <map> // for _Rb_tree_iterator
32 #include <memory> // for shared_ptr
33 #include <string> // for basic_string
34 #include <utility> // for make_pair, pair
35 #include <vector> // for vector
36 #include "input/storage.hh" // for StorageBase
37 #include "input/type_abstract.hh" // for Abstract, Abst...
38 #include "input/type_base.hh" // for ExcWrongDefault
39 #include "input/type_generic.hh" // for ExcGenericWith...
40 #include "input/type_record.hh" // for Record, Default
41 #include "input/type_selection.hh" // for Selection
42 #include "system/asserts.hh" // for Assert, ASSERT
43 #include "system/exceptions.hh" // for ExcGenericWith...
44 
45 
46 
47 namespace Input {
48 namespace Type {
49 
50 using namespace std;
51 
52 
53 /************************************************
54  * implementation of Abstract
55  */
56 
58 : child_data_( std::make_shared<ChildData>( "EmptyAbstract", "" ) )
59 {
60  close();
61  finish();
62 }
63 
64 
65 
67 : TypeBase( other ), child_data_(other.child_data_)
68 {}
69 
70 
71 
72 Abstract::Abstract(const string & type_name_in, const string & description)
73 : child_data_( std::make_shared<ChildData>( type_name_in, description ) )
74 {}
75 
76 
78 {
79  TypeHash seed=0;
80  boost::hash_combine(seed, "Abstract");
81  boost::hash_combine(seed, type_name());
82  boost::hash_combine(seed, child_data_->description_);
83  for (auto &param : parameter_map_) {
84  boost::hash_combine(seed, param.first );
85  boost::hash_combine(seed, param.second );
86  }
87  boost::hash_combine(seed, this->generic_type_hash_);
88  //boost::hash_combine(seed, child_data_->generic_content_hash_);
89  //for( Record &key : child_data_->list_of_childs) {
90  // boost::hash_combine(seed, key.content_hash() );
91  //}
92  return seed;
93 }
94 
95 
96 
97 Abstract & Abstract::allow_auto_conversion(const string &type_default) {
98  ASSERT(!child_data_->closed_)(type_name()).error("Can not specify default value for TYPE key as the Abstract is closed.");
99  child_data_->selection_default_=Default("\""+type_default+"\""); // default record is closed; other constructor creates the zero item
100  return *this;
101 }
102 
103 
104 
105 const Record & Abstract::get_descendant(const string& name) const
106 {
107  ASSERT(child_data_->selection_of_childs->is_finished()).error();
108  return child_data_->list_of_childs[ child_data_->selection_of_childs->name_to_int(name) ];
109 }
110 
111 
112 
114  if ( have_default_descendant() ) {
115  int sel_val = child_data_->selection_default_.get_storage( child_data_->selection_of_childs )->get_int();
116  return &( get_descendant( child_data_->selection_of_childs->int_to_name(sel_val) ) );
117  }
118  return NULL;
119 }
120 
121 
122 
124 {
125  return * child_data_->selection_of_childs;
126 }
127 
128 
129 unsigned int Abstract::child_size() const {
130  return child_data_->list_of_childs.size();
131 }
132 
133 
135 {
136  ASSERT(child_data_->closed_).error();
137 
138  if (std::find(child_data_->list_of_childs.begin(), child_data_->list_of_childs.end(), subrec) == child_data_->list_of_childs.end()) {
139  child_data_->selection_of_childs->add_value(child_data_->list_of_childs.size(), subrec.type_name());
140  child_data_->list_of_childs.push_back(subrec);
141  }
142 
143  subrec.derive_from(*this);
144 
145  return 1;
146 }
147 
148 
150  ASSERT(finish_type != FinishStatus::none_).error();
151  ASSERT(finish_type != FinishStatus::in_perform_).error();
152  ASSERT(child_data_->finish_status_ != FinishStatus::in_perform_)(this->type_name()).error("Recursion in the IST element of type Abstract.");
153 
154  if (this->is_finished()) return child_data_->finish_status_;
155 
156  ASSERT(child_data_->closed_)(this->type_name()).error();
157 
158  child_data_->selection_of_childs->close();
159  child_data_->selection_of_childs->finish();
160 
161  child_data_->finish_status_ = FinishStatus::in_perform_;
162 
163  for (auto &child : child_data_->list_of_childs) {
164  if ((finish_type != FinishStatus::generic_) && child.is_root_of_generic_subtree())
165  THROW( ExcGenericWithoutInstance() << EI_Object(child.type_name()) );
166  child.finish(finish_type);
167  ASSERT(child.is_finished()).error();
168  }
169 
170  // check validity of possible default value of TYPE key
171  if ( have_default_descendant() ) {
172  try {
173  child_data_->selection_default_.check_validity(child_data_->selection_of_childs);
174  } catch (ExcWrongDefault & e) {
175  e << EI_Desc("Default value for TYPE key do not match any descendant of Abstract.")
176  << EI_DefaultStr( child_data_->selection_default_.value() ) << EI_TypeName(this->type_name());
177  throw;
178  } catch (ExcWrongDefaultJSON & e) {
179  e << EI_DefaultStr( child_data_->selection_default_.value() ) << EI_TypeName(this->type_name());
180  throw;
181  }
182  }
183 
184  child_data_->finish_status_ = finish_type;
185 
186  return (child_data_->finish_status_);
187 }
188 
189 
191  child_data_->closed_=true;
193 }
194 
195 
197  return child_data_->finish_status_;
198 }
199 
200 
201 bool Abstract::is_finished() const {
202  return (child_data_->finish_status_ != FinishStatus::none_) && (child_data_->finish_status_ != FinishStatus::in_perform_);
203 }
204 
205 
206 bool Abstract::is_closed() const {
207  return child_data_->closed_;
208 }
209 
210 
211 string Abstract::type_name() const {
212  return child_data_->type_name_;
213 }
214 
215 
216 string Abstract::class_name() const {
217  return "Abstract";
218 }
219 
220 
222  return child_data_->selection_default_;
223 }
224 
226  // obligatory value if default is not set, see @p selection_default_
227  if ( !child_data_->selection_default_.is_obligatory() ) {
228  if ( child_data_->selection_default_.has_value_at_declaration() ) {
229  return true;
230  }
231  }
232  return false;
233 }
234 
235 
236 
238  Abstract abstract = this->deep_copy();
239  ParameterMap parameter_map;
240 
241 
242  // Set close flag - add_child method required closed child_data
243  abstract.child_data_->closed_ = true;
244  // make instances of all descendant records and add them into instance of abstract
245  for (auto &child : child_data_->list_of_childs) {
246  MakeInstanceReturnType inst = child.make_instance(vec);
247  abstract.add_child( static_cast<Record &>( *(inst.first) ) );
248  ParameterMap other_map = inst.second;
249  parameter_map.insert(other_map.begin(), other_map.end());
250  }
251  // Unset close flag - necessary for set parameters
252  abstract.child_data_->closed_ = false;
253 
254  // Set parameters and generic type as attributes
255  abstract.parameter_map_ = parameter_map;
256  abstract.generic_type_hash_ = this->content_hash();
257  TypeBase::set_generic_attributes(parameter_map);
258 
259  return std::make_pair( std::make_shared<Abstract>(abstract.close()), parameter_map );
260 }
261 
262 
264  Abstract abstract = Abstract();
265  abstract.child_data_ = std::make_shared<Abstract::ChildData>(*this->child_data_);
266  abstract.child_data_->closed_ = false;
267  abstract.child_data_->finish_status_ = FinishStatus::none_;
268  abstract.child_data_->list_of_childs.clear();
269  abstract.child_data_->selection_of_childs = std::make_shared<Selection>(this->type_name() + "_TYPE_selection");
270  abstract.copy_attributes(*attributes_);
271 
272  abstract.generic_type_hash_ = this->generic_type_hash_;
273  abstract.parameter_map_ = this->parameter_map_;
274  return abstract;
275 }
276 
277 
280  return *this;
281 }
282 
283 
285  this->add_attribute_(key, value);
286  return *this;
287 }
288 
289 
290 
291 /*Abstract &Abstract::set_generic_content_hash(TypeHash generic_content_hash) {
292  child_data_->generic_content_hash_ = generic_content_hash;
293  return *this;
294 }*/
295 
296 
298  return child_data_->list_of_childs.begin();
299 }
300 
302  return child_data_->list_of_childs.end();
303 }
304 
305 
306 Abstract::ChildData::ChildData(const string &name, const string &description)
307 : selection_of_childs( std::make_shared<Selection> (name + "_TYPE_selection") ),
308  description_(description),
309  type_name_(name),
310  finish_status_(FinishStatus::none_),
311  closed_(false),
312  selection_default_(Default::obligatory())
313 {}
314 
315 
316 /************************************************
317  * implementation of AdHocAbstract
318  */
319 
321 : Abstract("Derived AdHocAbstract", "This description doesn't have print out."),
322  ancestor_(ancestor)
323 {
324  //test default descendant of ancestor
325  const Record * default_desc = ancestor.get_default_descendant();
326  if (default_desc) {
327  allow_auto_conversion( default_desc->type_name() );
328  }
329 
330  this->close();
331 
332 }
333 
334 
336 {
337  Abstract::add_child(subrec);
338 
339  return *this;
340 }
341 
342 
344 {
345  if (this->is_finished()) return child_data_->finish_status_;
346 
347  const_cast<Abstract &>(ancestor_).finish(finish_type);
348 
349  //test default descendant of ancestor
350  const Record * default_desc = ancestor_.get_default_descendant();
351  if (default_desc) {
352  allow_auto_conversion( default_desc->type_name() );
353  }
354 
355  for (Abstract::ChildDataIter it = ancestor_.child_data_->list_of_childs.begin(); it != ancestor_.child_data_->list_of_childs.end(); ++it) {
356  child_data_->selection_of_childs->add_value(child_data_->list_of_childs.size(), (*it).type_name());
357  child_data_->list_of_childs.push_back(*it);
358  }
359 
360  return Abstract::finish(finish_type);
361 }
362 
363 
365  TypeHash seed=0;
366  boost::hash_combine(seed, "AdHocAbstract");
367  boost::hash_combine(seed, type_name());
368  boost::hash_combine(seed, child_data_->description_);
369  boost::hash_combine(seed, ancestor_.type_name());
370 
371  return seed;
372 }
373 
374 
376  return "AdHocAbstract";
377 }
378 
379 
380 
381 } // closing namespace Type
382 } // closing namespace Input
383 
384 
std::shared_ptr< T > add_type(const T &type)
Add type to TypeRepository if doesn&#39;t exist there or get existing type with same TypeHash.
const Record & get_descendant(const string &name) const
Returns reference to the inherited Record with given name.
Base of classes for declaring structure of the input data.
Definition: type_base.hh:99
void set_generic_attributes(ParameterMap param_map)
Definition: type_base.cc:174
virtual bool is_closed() const override
Returns true if data_ is closed.
Abstract & allow_auto_conversion(const string &type_default)
Allows shorter input of the Abstract providing the default value to the "TYPE" key.
Abstract deep_copy() const
Create deep copy of Abstract (copy all data stored in shared pointers etc.)
bool root_of_generic_subtree_
flag is true if type should be root of generic subtree
Definition: type_base.hh:307
std::vector< Record >::const_iterator ChildDataIter
Public typedef of constant iterator into array of keys.
string type_name() const override
Implements Type::TypeBase::type_name.
Definition: type_record.cc:315
AdHocAbstract(const Abstract &ancestor)
Constructor.
Abstract()
Default constructor.
virtual MakeInstanceReturnType make_instance(std::vector< ParameterPair > vec=std::vector< ParameterPair >()) override
Class Input::Type::Default specifies default value of keys of a Input::Type::Record.
Definition: type_record.hh:61
std::pair< std::shared_ptr< TypeBase >, ParameterMap > MakeInstanceReturnType
Return type of make_instance methods, contains instance of generic type and map of used parameters...
Definition: type_base.hh:117
Abstract linear system class.
Definition: equation.hh:37
FinishStatus finish(FinishStatus finish_type=FinishStatus::regular_) override
Finish declaration of the AdHocAbstract type.
Definitions of ASSERTS.
string class_name() const override
Override Type::TypeBase::class_name.
#define ASSERT(expr)
Allow use shorter versions of macro names if these names is not used with external library...
Definition: asserts.hh:346
Class for declaration of polymorphic Record.
std::shared_ptr< attribute_map > attributes_
map of type attributes (e. g. input_type, name etc.)
Definition: type_base.hh:304
Actual data of the abstract record.
Abstract & close()
Close the Abstract and add its to type repository (see TypeRepository::add_type). ...
Abstract & add_attribute(std::string key, TypeBase::json_string value)
Frontend to TypeBase::add_attribute_.
void add_attribute_(std::string name, json_string val)
Add attribute of given name to attribute map.
Definition: type_base.cc:135
FinishStatus finish(FinishStatus finish_type=FinishStatus::regular_) override
Finish declaration of the Abstract type.
virtual bool is_finished() const override
Implements TypeBase::is_finished.
const Abstract & ancestor_
Reference to ancestor Abstract.
static constexpr bool value
Definition: json.hpp:87
static TypeRepository & get_instance()
Return singleton instance of class.
ParameterMap parameter_map_
map of parameters if type is part of generic subtree
Definition: type_base.hh:313
virtual Record & derive_from(Abstract &parent)
Method to derive new Record from an AbstractRecord parent.
Definition: type_record.cc:195
unsigned int child_size() const
Returns number of descendants in the child_data_.
string class_name() const override
Override Type::TypeBase::class_name.
int add_child(Record &subrec)
Add inherited Record.
Default & get_selection_default() const
TypeHash content_hash() const override
Implements TypeBase::content_hash.
virtual FinishStatus finish_status() const override
Implements TypeBase::finish_status.
const Record * get_default_descendant() const
Returns default descendant.
Class for declaration of polymorphic Record.
ChildDataIter begin_child_data() const
Container-like access to the descendants of the Abstract.
const Selection & get_type_selection() const
Returns reference to Selection type of the implicit key TYPE.
Abstract & root_of_generic_subtree()
bool have_default_descendant() const
Check if type has set value of default descendants.
TypeHash generic_type_hash_
hash string of generic type if type is derived, or empty string
Definition: type_base.hh:310
ChildData(const string &name, const string &description)
Constructor.
TypeHash content_hash() const override
Implements TypeBase::content_hash.
ChildDataIter end_child_data() const
Container-like access to the descendants of the Abstract.
std::string json_string
String stored in JSON format.
Definition: type_base.hh:105
Record type proxy class.
Definition: type_record.hh:182
AdHocAbstract & add_child(Record &subrec)
Add inherited Record.
std::shared_ptr< ChildData > child_data_
Actual data of the Abstract.
std::size_t TypeHash
Type returned by content_hash methods.
Definition: type_base.hh:102
#define THROW(whole_exception_expr)
Wrapper for throw. Saves the throwing point.
Definition: exceptions.hh:53
Template for classes storing finite set of named values.
virtual string type_name() const override
Implements Type::TypeBase::type_name.