Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
BasicReaderWriterDatabase.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2023 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/* BasicReaderWriterDatabase.h (C) 2000-2023 */
9/* */
10/* Base de donnée pour le service 'BasicReaderWriter'. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_STD_BASICREADERWRITERDATABASE_H
13#define ARCANE_STD_BASICREADERWRITERDATABASE_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18#include "arcane/utils/String.h"
19#include "arcane/utils/TraceAccessor.h"
20
21/*---------------------------------------------------------------------------*/
22/*---------------------------------------------------------------------------*/
23
24// TODO: Lorsqu'on sera certain que ce fichier n'est pas utilisé en dehors
25// de Arcane on pourra fusionner ces classes avec leur implémentation
26
27namespace Arcane
28{
29class IDataCompressor;
30class IHashAlgorithm;
31}
32
33namespace Arcane::impl
34{
35
36/*---------------------------------------------------------------------------*/
37/*---------------------------------------------------------------------------*/
49: public TraceAccessor
50{
51 class Impl;
52
53 public:
54
55 KeyValueTextWriter(ITraceMng* tm,const String& filename, Int32 version);
58 KeyValueTextWriter& operator=(const KeyValueTextWriter& rhs) = delete;
59
60 public:
61
62 void setExtents(const String& key_name, SmallSpan<const Int64> extents);
63 void write(const String& key, Span<const std::byte> values);
64 Int64 fileOffset();
65
66 public:
67
68 String fileName() const;
69 void setDataCompressor(Ref<IDataCompressor> dc);
70 Ref<IDataCompressor> dataCompressor() const;
71 void setHashAlgorithm(Ref<IHashAlgorithm> v);
72 Ref<IHashAlgorithm> hashAlgorithm() const;
73
74 private:
75
76 Impl* m_p;
77};
78
79/*---------------------------------------------------------------------------*/
80/*---------------------------------------------------------------------------*/
86: public TraceAccessor
87{
88 class Impl;
89
90 public:
91
92 KeyValueTextReader(ITraceMng* tm,const String& filename, Int32 version);
95 KeyValueTextReader& operator=(const KeyValueTextReader& rhs) = delete;
96
97 public:
98
99 void setFileOffset(Int64 v);
100 void getExtents(const String& key_name, SmallSpan<Int64> extents);
101 void readIntegers(const String& key, Span<Integer> values);
102 void read(const String& key, Span<std::byte> values);
103
104 public:
105
106 String fileName() const;
107 void setDataCompressor(Ref<IDataCompressor> ds);
108 Ref<IDataCompressor> dataCompressor() const;
109 void setHashAlgorithm(Ref<IHashAlgorithm> v);
110 Ref<IHashAlgorithm> hashAlgorithm() const;
111
112 private:
113
114 Impl* m_p;
115};
116
117/*---------------------------------------------------------------------------*/
118/*---------------------------------------------------------------------------*/
119
120} // End namespace Arcane::impl
121
122/*---------------------------------------------------------------------------*/
123/*---------------------------------------------------------------------------*/
124
125#endif
Déclarations des types utilisés dans Arcane.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Classe d'écriture d'un fichier texte pour les protections/reprises.
Interface du gestionnaire de traces.
Chaîne de caractères unicode.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-