PSCF v1.2
MpiFileIo.h
1#ifndef UTIL_MPI_FILE_IO_H
2#define UTIL_MPI_FILE_IO_H
3
4/*
5* Util Package - C++ Utilities for Scientific Computation
6*
7* Copyright 2010 - 2017, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include <util/global.h>
12
13#include <iostream>
14#include <string>
15
16namespace Util
17{
18
36 {
37
38 public:
39
43 MpiFileIo();
44
48 MpiFileIo(const MpiFileIo& other);
49
53 bool isIoProcessor() const;
54
55 #ifdef UTIL_MPI
59 void setIoCommunicator(MPI::Intracomm& communicator);
60
64 void clearCommunicator();
65
69 bool hasIoCommunicator() const;
70
74 MPI::Intracomm& ioCommunicator() const;
75 #endif
76
77 private:
78
80 bool isIoProcessor_;
81
82 #ifdef UTIL_MPI
84 MPI::Intracomm* communicatorPtr_;
85 #endif
86
87 };
88
89 // Inline methods
90
91 /*
92 * Should this processor do file I/O ?
93 */
94 inline bool MpiFileIo::isIoProcessor() const
95 { return isIoProcessor_; }
96
97 #ifdef UTIL_MPI
98 /*
99 * Does this processor have a communicator?
100 */
102 { return (communicatorPtr_ != 0); }
103
104 /*
105 * Get the communicator.
106 */
107 inline MPI::Intracomm& MpiFileIo::ioCommunicator() const
108 {
109 assert(communicatorPtr_);
110 return *communicatorPtr_;
111 }
112 #endif
113}
114
115#endif
Identifies whether this processor may do file I/O.
Definition MpiFileIo.h:36
MPI::Intracomm & ioCommunicator() const
Get the MPI communicator by reference.
Definition MpiFileIo.h:107
MpiFileIo()
Constructor.
Definition MpiFileIo.cpp:18
bool isIoProcessor() const
Can this processor do file I/O ?
Definition MpiFileIo.h:94
void setIoCommunicator(MPI::Intracomm &communicator)
Set the communicator.
Definition MpiFileIo.cpp:36
bool hasIoCommunicator() const
Does this object have an associated MPI communicator?
Definition MpiFileIo.h:101
void clearCommunicator()
Clear (nullify) the communicator.
Definition MpiFileIo.cpp:46
File containing preprocessor macros for error handling.
Utility classes for scientific computation.