1 // Copyright (C) 2019 EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // Author: Anthony Geay, anthony.geay@edf.fr, EDF R&D
21 #include "AdaoModelKeyVal.hxx"
22 #include "AdaoExchangeLayerException.hxx"
26 using namespace AdaoModel;
28 const char CostDecrementTolerance::KEY[]="CostDecrementTolerance";
30 const char StringObserver::KEY[]="String";
32 const char InfoObserver::KEY[]="Info";
34 const char StoreSupplKeyVal::KEY[]="StoreSupplementaryCalculations";
36 const char *StoreSupplKeyVal::DFTL[]={"CostFunctionJAtCurrentOptimum","CostFunctionJoAtCurrentOptimum","CurrentOptimum","SimulatedObservationAtCurrentOptimum","SimulatedObservationAtOptimum"};
38 const char EnumAlgoKeyVal::KEY[]="Algorithm";
40 const char ParametersOfAlgorithmParameters::KEY[]="Parameters";
42 const char Bounds::KEY[]="Bounds";
44 const char MaximumNumberOfSteps::KEY[]="MaximumNumberOfSteps";
46 const char VectorBackground::KEY[]="Vector";
48 const char StoreBackground::KEY[]="Stored";
50 const char MatrixBackgroundError::KEY[]="Matrix";
52 const char ScalarSparseMatrixError::KEY[]="ScalarSparseMatrix";
54 const char DiagonalSparseMatrixError::KEY[]="DiagonalSparseMatrix";
56 const char OneFunction::KEY[]="OneFunction";
58 const char DifferentialIncrement::KEY[]="DifferentialIncrement";
60 const char ObservationOperatorParameters::KEY[]="Parameters";
62 const char CenteredFiniteDifference::KEY[]="CenteredFiniteDifference";
64 const char InputFunctionAsMulti::KEY[]="InputFunctionAsMulti";
66 const char VariableKV::KEY[]="Variable";
68 const char TemplateKV::KEY[]="Template";
70 const char AlgorithmParameters::KEY[]="AlgorithmParameters";
72 const char Background::KEY[]="Background";
74 const char BackgroundError::KEY[]="BackgroundError";
76 const double BackgroundError::BACKGROUND_SCALAR_SPARSE_DFT = 1.e10;
78 const char ObservationError::KEY[]="ObservationError";
80 const char ObservationOperator::KEY[]="ObservationOperator";
82 const char Observation::KEY[]="Observation";
84 const double ObservationError::BACKGROUND_SCALAR_SPARSE_DFT = 1.;
86 const char ObserverEntry::KEY[]="Observer";
88 std::string TopEntry::getParamForSet(const GenericKeyVal& entry) const
90 std::ostringstream oss;
91 oss << "case.set(\'" << entry.getKey() << "\' , **" << entry.pyStr() << ")";
95 std::string GenericKeyVal::pyStrKeyVal() const
97 std::ostringstream oss;
98 oss << "\"" << this->getKey() << "\" : " << this->pyStr();
102 void GenericKeyVal::visitAll(MainModel *godFather, RecursiveVisitor *visitor)
104 visitor->visit(this);
107 std::string DoubleKeyVal::pyStr() const
109 std::ostringstream oss;
110 oss << std::scientific << _val;
114 std::string BoolKeyVal::pyStr() const
116 return _val?"True":"False";
119 std::string StringKeyVal::pyStr() const
121 std::ostringstream oss;
122 oss << "\"" << _val << "\"";
126 std::string NoneKeyVal::pyStr() const
131 std::string ListStringsKeyVal::pyStr() const
133 std::ostringstream oss;
135 std::size_t len(_val.size());
136 for(std::size_t i=0;i<len;++i)
138 oss << "\"" << _val[i] << "\"";
146 StoreSupplKeyVal::StoreSupplKeyVal():ListStringsKeyVal(KEY)
148 _val.insert(_val.end(),DFTL,DFTL+sizeof(DFTL)/sizeof(char *));
151 std::shared_ptr<DictKeyVal> EnumAlgoKeyVal::generateDftParameters() const
155 case EnumAlgo::ThreeDVar:
156 case EnumAlgo::NonLinearLeastSquares:
158 return templateForOthers();
162 return templateForBlue();
165 throw AdaoExchangeLayerException("EnumAlgoKeyVal::generateDftParameters : Unrecognized Algo !");
169 std::string EnumAlgoKeyVal::getRepresentation() const
173 case EnumAlgo::ThreeDVar:
175 case EnumAlgo::NonLinearLeastSquares:
176 return "NonLinearLeastSquares";
180 throw AdaoExchangeLayerException("EnumAlgoKeyVal::getRepresentation : Unrecognized Algo !");
184 std::string EnumAlgoKeyVal::pyStr() const
186 std::ostringstream oss;
187 oss << "\"" << this->getRepresentation() << "\"";
191 std::shared_ptr<DictKeyVal> EnumAlgoKeyVal::templateForBlue() const
193 std::shared_ptr<DictKeyVal> ret(std::make_shared<ParametersOfAlgorithmParameters>());
194 std::shared_ptr<StoreSupplKeyVal> v(std::make_shared<StoreSupplKeyVal>());
195 ret->pushBack(std::static_pointer_cast<GenericKeyVal>(v));
199 std::shared_ptr<DictKeyVal> EnumAlgoKeyVal::templateForOthers() const
201 std::shared_ptr<DictKeyVal> ret(std::make_shared<ParametersOfAlgorithmParameters>());
202 std::shared_ptr<Bounds> v0(std::make_shared<Bounds>());
203 std::shared_ptr<MaximumNumberOfSteps> v1(std::make_shared<MaximumNumberOfSteps>());
204 std::shared_ptr<CostDecrementTolerance> v2(std::make_shared<CostDecrementTolerance>());
205 std::shared_ptr<StoreSupplKeyVal> v3(std::make_shared<StoreSupplKeyVal>());
206 ret->pushBack(std::static_pointer_cast<GenericKeyVal>(v0));
207 ret->pushBack(std::static_pointer_cast<GenericKeyVal>(v1));
208 ret->pushBack(std::static_pointer_cast<GenericKeyVal>(v2));
209 ret->pushBack(std::static_pointer_cast<GenericKeyVal>(v3));
213 std::string DictKeyVal::pyStr() const
215 std::ostringstream oss;
217 std::size_t len(_pairs.size());
218 for(std::size_t i=0;i<len;++i)
220 const auto& elt(_pairs[i]);
221 oss << elt->pyStrKeyVal();
229 void DictKeyVal::visitPython(MainModel *godFather, PythonLeafVisitor *visitor)
231 for(auto elt : _pairs)
233 elt->visitPython(godFather, visitor);
237 void DictKeyVal::visitAll(MainModel *godFather, RecursiveVisitor *visitor)
239 visitor->enterSubDir(this);
240 for(auto elt : _pairs)
242 elt->visitAll(godFather, visitor);
244 visitor->exitSubDir(this);
247 std::string PyObjKeyVal::pyStr() const
249 std::ostringstream oss;
254 void PyObjKeyVal::visitPython(MainModel *godFather, PythonLeafVisitor *visitor)
256 visitor->visit(godFather,this);
259 std::string UnsignedIntKeyVal::pyStr() const
261 std::ostringstream oss;
266 void InputFunctionAsMulti::setVal(bool val)
269 throw AdaoExchangeLayerException("InputFunctionAsMulti : value has to remain to true !");
272 ObservationOperatorParameters::ObservationOperatorParameters():DictKeyVal(KEY)
274 std::shared_ptr<DifferentialIncrement> v0(std::make_shared<DifferentialIncrement>());
275 std::shared_ptr<CenteredFiniteDifference> v1(std::make_shared<CenteredFiniteDifference>());
276 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,DifferentialIncrement>(v0));
277 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,CenteredFiniteDifference>(v1));
280 AlgorithmParameters::AlgorithmParameters():DictKeyVal(KEY)
282 std::shared_ptr<EnumAlgoKeyVal> v0(std::make_shared<EnumAlgoKeyVal>());
283 std::shared_ptr<DictKeyVal> v1(v0->generateDftParameters());
284 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,EnumAlgoKeyVal>(v0));
285 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,DictKeyVal>(v1));
288 Background::Background():DictKeyVal(KEY)
290 std::shared_ptr<VectorBackground> v0(std::make_shared<VectorBackground>());
291 std::shared_ptr<StoreBackground> v1(std::make_shared<StoreBackground>());
293 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,VectorBackground>(v0));
294 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,StoreBackground>(v1));
297 GenericError::GenericError(const std::string& key, double dftValForScalarSparseMatrix):DictKeyVal(key)
299 std::shared_ptr<MatrixBackgroundError> v0(std::make_shared<MatrixBackgroundError>());
300 std::shared_ptr<ScalarSparseMatrixError> v1(std::make_shared<ScalarSparseMatrixError>(dftValForScalarSparseMatrix));
301 std::shared_ptr<DiagonalSparseMatrixError> v2(std::make_shared<DiagonalSparseMatrixError>());
302 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,MatrixBackgroundError>(v0));
303 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,ScalarSparseMatrixError>(v1));
304 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,DiagonalSparseMatrixError>(v2));
307 Observation::Observation():DictKeyVal(KEY)
309 std::shared_ptr<VectorBackground> v0(std::make_shared<VectorBackground>());
310 std::shared_ptr<StoreBackground> v1(std::make_shared<StoreBackground>());
312 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,VectorBackground>(v0));
313 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,StoreBackground>(v1));
316 ObservationOperator::ObservationOperator():DictKeyVal(KEY)
318 std::shared_ptr<OneFunction> v0(std::make_shared<OneFunction>());
319 std::shared_ptr<ObservationOperatorParameters> v1(std::make_shared<ObservationOperatorParameters>());
320 std::shared_ptr<InputFunctionAsMulti> v2(std::make_shared<InputFunctionAsMulti>());
321 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,OneFunction>(v0));
322 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,ObservationOperatorParameters>(v1));
323 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,InputFunctionAsMulti>(v2));
326 ObserverEntry::ObserverEntry():DictKeyVal(KEY)
328 std::shared_ptr<VariableKV> v0(std::make_shared<VariableKV>());
329 std::shared_ptr<TemplateKV> v1(std::make_shared<TemplateKV>());
330 std::shared_ptr<StringObserver> v2(std::make_shared<StringObserver>());
331 std::shared_ptr<InfoObserver> v3(std::make_shared<InfoObserver>());
332 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,VariableKV>(v0));
333 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,TemplateKV>(v1));
334 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,StringObserver>(v2));
335 _pairs.push_back(std::static_pointer_cast<GenericKeyVal,InfoObserver>(v3));
338 MainModel::MainModel():_algo(std::make_shared<AlgorithmParameters>()),
339 _bg(std::make_shared<Background>()),
340 _bg_err(std::make_shared<BackgroundError>()),
341 _obs(std::make_shared<Observation>()),
342 _obs_err(std::make_shared<ObservationError>()),
343 _observ_op(std::make_shared<ObservationOperator>()),
344 _observ_entry(std::make_shared<ObserverEntry>())
348 std::string MainModel::pyStr() const
350 std::ostringstream oss;
351 oss << "from adao import adaoBuilder" << std::endl;
352 oss << "case = adaoBuilder.New()" << std::endl;
353 oss << _algo->getParamForSet(*_algo) << std::endl;
354 oss << _bg->getParamForSet(*_bg) << std::endl;
355 oss << _bg_err->getParamForSet(*_bg_err) << std::endl;
356 oss << _obs->getParamForSet(*_obs) << std::endl;
357 oss << _obs_err->getParamForSet(*_obs_err) << std::endl;
358 oss << _observ_op->getParamForSet(*_observ_op) << std::endl;
359 oss << _observ_entry->getParamForSet(*_observ_entry) << std::endl;
363 std::vector< std::shared_ptr<GenericKeyVal> > MainModel::toVect() const
366 std::static_pointer_cast<GenericKeyVal,AlgorithmParameters>(_algo),
367 std::static_pointer_cast<GenericKeyVal,Background>(_bg),
368 std::static_pointer_cast<GenericKeyVal,BackgroundError>(_bg_err),
369 std::static_pointer_cast<GenericKeyVal,Observation>(_obs),
370 std::static_pointer_cast<GenericKeyVal,ObservationError>(_obs_err),
371 std::static_pointer_cast<GenericKeyVal,ObservationOperator>(_observ_op),
372 std::static_pointer_cast<GenericKeyVal,ObserverEntry>(_observ_entry)
376 class MyAllVisitor : public RecursiveVisitor
379 MyAllVisitor(GenericKeyVal *elt):_elt_to_find(elt) { }
380 void visit(GenericKeyVal *elt) override
383 if(elt != _elt_to_find) return ;
384 _path.push_back(elt->getKey());
387 void enterSubDir(DictKeyVal *subdir) override
390 _path.push_back(subdir->getKey());
392 void exitSubDir(DictKeyVal *subdir) override
397 std::string getPath() const
399 std::ostringstream oss;
400 std::size_t len(_path.size()),ii(0);
401 for(auto elt : _path)
411 GenericKeyVal *_elt_to_find = nullptr;
412 std::vector<std::string> _path;
416 std::string MainModel::findPathOf(GenericKeyVal *elt)
418 MyAllVisitor vis(elt);
419 this->visitAll(&vis);
420 return vis.getPath();
423 void MainModel::visitPythonLeaves(PythonLeafVisitor *visitor)
425 std::vector< std::shared_ptr<GenericKeyVal> > sons(toVect());
428 elt->visitPython(this, visitor);
432 void MainModel::visitAll(RecursiveVisitor *visitor)
434 std::vector< std::shared_ptr<GenericKeyVal> > sons(toVect());
437 elt->visitAll(this, visitor);