Arcane  v3.14.10.0
Documentation utilisateur
Chargement...
Recherche...
Aucune correspondance
ParameterListPropertyReader.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* ParameterListPropertyReader.h (C) 2000-2021 */
9/* */
10/* Lecture de propriétés au format JSON. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_UTILS_PARAMETERLISTPROPERTYREADER_H
13#define ARCANE_UTILS_PARAMETERLISTPROPERTYREADER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16/*
17 * NOTE: Les classes de ce fichier sont en cours de mise au point.
18 * NOTE: L'API peut changer à tout moment. Ne pas utiliser en dehors de Arcane.
19 */
20
21#include "arcane/utils/ParameterList.h"
22#include "arcane/utils/Property.h"
23
24/*---------------------------------------------------------------------------*/
25/*---------------------------------------------------------------------------*/
26
27namespace Arcane::properties
28{
29
30/*---------------------------------------------------------------------------*/
31/*---------------------------------------------------------------------------*/
32//! \internal
33template<typename T>
36{
37 public:
38 ParameterListPropertyVisitor(const ParameterList& args,T& instance)
39 : m_args(args), m_instance(instance){}
40 private:
41 const ParameterList& m_args;
42 T& m_instance;
43 public:
44 void visit(const properties::PropertySettingBase<T>& s) override
45 {
46 String param_name = s.setting()->commandLineArgument();
47 if (param_name.null())
48 return;
49 String param_value = m_args.getParameterOrNull(param_name);
50 //std::cout << "GET_PARAM name='" << param_name << "' value='" << param_value << "'\n";
51 if (param_value.null())
52 return;
53 s.setFromString(param_value,m_instance);
54 //std::cout << "SET_PROP from command line:";
55 //s.print(std::cout,m_instance);
56 }
57};
58
59/*---------------------------------------------------------------------------*/
60/*---------------------------------------------------------------------------*/
61/*!
62 * \brief Remplit les valeurs de \a instance à partir des paramètres \a args.
63 */
64template<typename T> inline void
65readFromParameterList(const ParameterList& args,T& instance)
66{
67 ParameterListPropertyVisitor reader(args,instance);
68 T :: applyPropertyVisitor(reader);
69}
70
71/*---------------------------------------------------------------------------*/
72/*---------------------------------------------------------------------------*/
73
74} // End namespace Arcane::properties
75
76/*---------------------------------------------------------------------------*/
77/*---------------------------------------------------------------------------*/
78
79#endif
Liste de paramètres.
String getParameterOrNull(const String &param_name) const
Récupère le paramètre de nom param_name.
virtual String commandLineArgument() const =0
Nom de l'argument de la ligne de commande (nul si aucun)
Classe de base d'une proriété typée par une classe.
Definition Property.h:136
Classe de base d'un visiteur typé sur une propriété.
Definition Property.h:193
Chaîne de caractères unicode.
bool null() const
Retourne true si la chaîne est nulle.
Definition String.cc:304