casacore
Loading...
Searching...
No Matches
Adios2StMan.h
Go to the documentation of this file.
1//# Adios2StMan.h: Base class of the ADIOS2 Storage Manager
2//# Copyright (C) 2018
3//# Associated Universities, Inc. Washington DC, USA.
4//#
5//# This library is free software; you can redistribute it and/or modify it
6//# under the terms of the GNU Library General Public License as published by
7//# the Free Software Foundation; either version 2 of the License, or (at your
8//# option) any later version.
9//#
10//# This library is distributed in the hope that it will be useful, but WITHOUT
11//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13//# License for more details.
14//#
15//# You should have received a copy of the GNU Library General Public License
16//# along with this library; if not, write to the Free Software Foundation,
17//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
18//#
19//# Correspondence concerning AIPS++ should be addressed as follows:
20//# Internet email: casa-feedback@nrao.edu.
21//# Postal address: AIPS++ Project Office
22//# National Radio Astronomy Observatory
23//# 520 Edgemont Road
24//# Charlottesville, VA 22903-2475 USA
25
26#ifndef ADIOS2STMAN_H
27#define ADIOS2STMAN_H
28
29#include <map>
30#include <memory>
31#include <string>
32#include <vector>
33
34#ifdef HAVE_MPI
35#include <mpi.h>
36#endif
37
38#include <casacore/casa/IO/AipsIO.h>
39#include <casacore/tables/DataMan/DataManager.h>
40#include <casacore/tables/Tables/Table.h>
41
42namespace casacore
43{
44
46{
47 friend class Adios2StManColumn;
48 template<typename T> friend class Adios2StManColumnT;
49public:
50
51 // tag for differentiating string-based constructors
52 struct from_config_t {};
53 constexpr static from_config_t from_config {};
54
55#ifdef HAVE_MPI
57 MPI_Comm mpiComm,
58 std::string engineType = {},
59 std::map<std::string, std::string> engineParams = {},
60 std::vector<std::map<std::string, std::string>> transportParams = {},
61 std::vector<std::map<std::string, std::string>> operatorParams = {});
62
63 Adios2StMan(MPI_Comm mpiComm, std::string configFile, from_config_t);
64#endif // HAVE_MPI
65
67 std::string engineType = {},
68 std::map<std::string, std::string> engineParams = {},
69 std::vector<std::map<std::string, std::string>> transportParams = {},
70 std::vector<std::map<std::string, std::string>> operatorParams = {});
71
72 Adios2StMan(std::string configFile, from_config_t);
73
74 virtual ~Adios2StMan();
75
76 virtual DataManager *clone() const;
77 virtual String dataManagerType() const;
78 virtual String dataManagerName() const;
79 virtual void create64(rownr_t aNrRows);
80 virtual rownr_t open64(rownr_t aRowNr, AipsIO &ios);
81 virtual rownr_t resync64(rownr_t aRowNr);
82 virtual Bool flush(AipsIO &, Bool doFsync);
84 int aDataType,
85 const String &aDataTypeID);
87 int aDataType,
88 const String &aDataTypeID);
90 int aDataType,
91 const String &aDataTypeID);
92 virtual void deleteManager();
93 virtual void addRow64(rownr_t aNrRows);
94 static DataManager *makeObject(const String &aDataManType,
95 const Record &spec);
98
99private:
100 class impl;
101 std::unique_ptr<impl> pimpl;
102
103#ifdef HAVE_MPI
105 MPI_Comm mpiComm,
106 std::string engineType,
107 std::map<std::string, std::string> engineParams,
108 std::vector<std::map<std::string, std::string>> transportParams,
109 std::vector<std::map<std::string, std::string>> operatorParams,
110 std::string configFile);
111#endif // HAVE_MPI
112
114 std::string engineType,
115 std::map<std::string, std::string> engineParams,
116 std::vector<std::map<std::string, std::string>> transportParams,
117 std::vector<std::map<std::string, std::string>> operatorParams,
118 std::string configFile);
119
120}; // end of class Adios2StMan
121
122extern "C" void register_adios2stman();
123} // end of namespace casa
124
125#endif
virtual Bool flush(AipsIO &, Bool doFsync)
Flush and optionally fsync the data.
std::unique_ptr< impl > pimpl
Adios2StMan(MPI_Comm mpiComm, std::string engineType, std::map< std::string, std::string > engineParams, std::vector< std::map< std::string, std::string > > transportParams, std::vector< std::map< std::string, std::string > > operatorParams, std::string configFile)
virtual void create64(rownr_t aNrRows)
Let the data manager initialize itself for a new table.
static DataManager * makeObject(const String &aDataManType, const Record &spec)
Adios2StMan(std::string engineType, std::map< std::string, std::string > engineParams, std::vector< std::map< std::string, std::string > > transportParams, std::vector< std::map< std::string, std::string > > operatorParams, std::string configFile)
virtual DataManager * clone() const
Make a clone of the derived object.
Adios2StMan(std::string engineType={}, std::map< std::string, std::string > engineParams={}, std::vector< std::map< std::string, std::string > > transportParams={}, std::vector< std::map< std::string, std::string > > operatorParams={})
virtual DataManagerColumn * makeScalarColumn(const String &aName, int aDataType, const String &aDataTypeID)
Create a column in the data manager on behalf of a table column.
static constexpr from_config_t from_config
Definition Adios2StMan.h:53
Adios2StMan(std::string configFile, from_config_t)
virtual void addRow64(rownr_t aNrRows)
Add rows to all columns.
Adios2StMan(MPI_Comm mpiComm, std::string configFile, from_config_t)
virtual String dataManagerName() const
Return the name of the data manager.
virtual DataManagerColumn * makeDirArrColumn(const String &aName, int aDataType, const String &aDataTypeID)
Create a direct array column.
virtual DataManagerColumn * makeIndArrColumn(const String &aName, int aDataType, const String &aDataTypeID)
Create an indirect array column.
virtual String dataManagerType() const
Return the type name of the data manager (in fact its class name).
virtual rownr_t open64(rownr_t aRowNr, AipsIO &ios)
Let the data manager initialize itself for an existing table.
Adios2StMan(MPI_Comm mpiComm, std::string engineType={}, std::map< std::string, std::string > engineParams={}, std::vector< std::map< std::string, std::string > > transportParams={}, std::vector< std::map< std::string, std::string > > operatorParams={})
Record dataManagerSpec() const
Return a record containing data manager specifications.
virtual void deleteManager()
The data manager will be deleted (because all its columns are requested to be deleted).
virtual rownr_t resync64(rownr_t aRowNr)
Resync the data by rereading cached data from the file.
Abstract base class for a data manager.
String: the storage and methods of handling collections of characters.
Definition String.h:223
this file contains all the compiler specific defines
Definition mainpage.dox:28
bool Bool
Define the standard types used by Casacore.
Definition aipstype.h:40
void register_adios2stman()
uInt64 rownr_t
Define the type of a row number in a table.
Definition aipsxtype.h:44
tag for differentiating string-based constructors
Definition Adios2StMan.h:52