Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
InternalInfosDumper.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/* InternalInfosDumper.h (C) 2000-2019 */
9/* */
10/* Sorties des informations internes de Arcane. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_IMPL_INTERNALINFOSDUMPER_H
13#define ARCANE_IMPL_INTERNALINFOSDUMPER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18#include "arcane/utils/Ref.h"
19
20/*---------------------------------------------------------------------------*/
21/*---------------------------------------------------------------------------*/
22
23namespace Arcane
24{
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
28
29class IApplication;
30class ICodeService;
31class ISubDomain;
32class JSONWriter;
33
34/*---------------------------------------------------------------------------*/
35/*---------------------------------------------------------------------------*/
39class ARCANE_IMPL_EXPORT InternalInfosDumper
40{
41 public:
42
44
45 public:
46
47 void dumpInternalInfos();
48 void dumpInternalAllInfos();
49 void dumpArcaneDatabase();
50
51 private:
52
53 IApplication* m_application;
54
55 private:
56
57 Ref<ICodeService> _getDefaultService();
58 void _dumpSubDomainInternalInfos(ISubDomain* sd,JSONWriter& json_writer);
59};
60
61/*---------------------------------------------------------------------------*/
62/*---------------------------------------------------------------------------*/
63
64} // End namespace Arcane
65
66/*---------------------------------------------------------------------------*/
67/*---------------------------------------------------------------------------*/
68
69#endif
Fichier de configuration d'Arcane.
Interface de l'application.
Interface du gestionnaire d'un sous-domaine.
Definition ISubDomain.h:74
Sorties des informations internes de Arcane.
Ecrivain au format JSON.
Definition JSONWriter.h:33
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-