Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
JSONPropertyReader.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/* JSONPropertyReader.h (C) 2000-2020 */
9/* */
10/* Lecture de propriétés au format JSON. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_UTILS_JSONPROPERTYREADER_H
13#define ARCANE_UTILS_JSONPROPERTYREADER_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/JSONReader.h"
22#include "arcane/utils/Property.h"
23
24/*---------------------------------------------------------------------------*/
25/*---------------------------------------------------------------------------*/
26
27namespace Arcane::properties
28{
29
30/*---------------------------------------------------------------------------*/
31/*---------------------------------------------------------------------------*/
32
33template<typename T>
35: public PropertyVisitor<T>
36{
37 public:
39 : m_jv(jv), m_instance(instance){}
40 private:
41 JSONValue m_jv;
42 T& m_instance;
43 public:
44 void visit(const PropertySettingBase<T>& s) override
45 {
46 JSONValue child_value = m_jv.child(s.setting()->name());
47 if (child_value.null())
48 return;
49 s.setFromJSON(child_value,m_instance);
50 s.print(std::cout,m_instance);
51 }
52};
53
54/*---------------------------------------------------------------------------*/
55/*---------------------------------------------------------------------------*/
62template<typename T> inline void
63readFromJSON(JSONValue jv,T& instance)
64{
65 const char* instance_property_name = T :: propertyClassName();
67 if (child_value.null())
68 return;
69 JSONPropertyReader reader(child_value,instance);
70 T :: applyPropertyVisitor(reader);
71}
72
73/*---------------------------------------------------------------------------*/
74/*---------------------------------------------------------------------------*/
75
76} // End namespace Arcane::properties
77
78/*---------------------------------------------------------------------------*/
79/*---------------------------------------------------------------------------*/
80
81#endif
Représente une valeur JSON.
Definition JSONReader.h:43
JSONValue child(StringView name) const
Valeur fille de nom name. Retourne une valeur nulle si non trouvé.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Classe de base d'un visiteur typé sur une propriété.
Definition Property.h:193