-
Notifications
You must be signed in to change notification settings - Fork 0
/
CartesianDataBlockIODescriptor.h
83 lines (69 loc) · 2.16 KB
/
CartesianDataBlockIODescriptor.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
____ _ __ ____ __ ____
/ __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____
_\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_-</ __/ _/ // _ \/ __/
/___/\__/_/_.__/\__/_/ \___\_\_,_/\__/___/\__/ /___/_//_/\__(_)
Copyright 2012 SciberQuest Inc.
*/
#ifndef __CartesianDataBlockIODescriptor_h
#define __CartesianDataBlockIODescriptor_h
#include "CartesianExtent.h"
#ifdef SQTK_WITHOUT_MPI
typedef void * MPI_Datatype;
#else
#include <mpi.h>
#endif
#include <vector>
using std::vector;
#include <iostream>
using std::ostream;
/// Container for the MPI file and memory views
/**
Container for the MPI file and memory views required to
read in a cartesian block of data with ghost cells. Here
the ghost cells are filled directly from disk as
no other blocks are assumed to be in memory. The views
are accessed via CartesianDataBlockIODescriptorIterator.
*/
class CartesianDataBlockIODescriptor
{
public:
CartesianDataBlockIODescriptor(
const CartesianExtent &blockExt,
const CartesianExtent &fileExt,
const int Periodic[3],
int nGhosts);
~CartesianDataBlockIODescriptor();
/**
Release allocated views.
*/
void Clear();
/**
Get the number of views.
*/
int Size() const { return this->MemViews.size(); }
/**
Access to a specific view.
*/
MPI_Datatype GetMemView(int i) const { return this->MemViews[i]; }
MPI_Datatype GetFileView(int i) const { return this->FileViews[i]; }
/**
Get the extent of the array to hold the data.
*/
const CartesianExtent &GetMemExtent() const { return this->MemExtent; }
private:
/// \Section NotImplemented \@{
CartesianDataBlockIODescriptor();
CartesianDataBlockIODescriptor(const CartesianDataBlockIODescriptor &);
CartesianDataBlockIODescriptor &operator=(const CartesianDataBlockIODescriptor &other);
/// \@}
friend class CartesianDataBlockIODescriptorIterator;
friend ostream &operator<<(ostream &os,const CartesianDataBlockIODescriptor &descr);
private:
int Mode;
CartesianExtent MemExtent;
vector<MPI_Datatype> FileViews;
vector<MPI_Datatype> MemViews;
};
ostream &operator<<(ostream &os,const CartesianDataBlockIODescriptor &descr);
#endif