12#ifndef ARCANE_CORE_IIOMNG_H
13#define ARCANE_CORE_IIOMNG_H
17#include "arcane/utils/String.h"
Declarations of Arcane's general types.
Constant view of an array of type T.
Interface of the input/output manager.
virtual ~IIOMng()=default
Frees resources.
virtual bool writeXmlFile(IXmlDocumentHolder *doc, const String &filename, const bool indented=false)=0
Writes the XML tree of the document doc to the file filename.
virtual bool localRead(const String &filename, ByteArray &bytes, bool is_binary)=0
Local reading of a file.
virtual IXmlDocumentHolder * parseXmlFile(const String &filename, const String &schemaname, ConstArrayView< Byte > schema_data)=0
Reads and parses the XML file filename.
virtual IXmlDocumentHolder * parseXmlBuffer(Span< const std::byte > buffer, const String &name)=0
Reads and parses the XML file contained in the buffer buffer.
virtual bool localRead(const String &filename, ByteArray &bytes)=0
Local reading of a file.
virtual IXmlDocumentHolder * parseXmlFile(const String &filename, const String &schemaname=String{})=0
Reads and parses the XML file filename.
virtual bool collectiveRead(const String &filename, ByteArray &bytes, bool is_binary)=0
Collective reading of a file.
virtual bool collectiveRead(const String &filename, ByteArray &bytes)=0
Collective reading of a file.
virtual IXmlDocumentHolder * parseXmlString(const String &str, const String &name)=0
Reads and parses the XML file contained in the string str.
virtual IXmlDocumentHolder * parseXmlBuffer(Span< const Byte > buffer, const String &name)=0
Reads and parses the XML file contained in the buffer buffer.
Manager of a DOM document.
View of an array of elements of type T.
Unicode character string.
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --
Array< Byte > ByteArray
Dynamic one-dimensional array of characters.