/usr/include/magics/BaseParameter.h is in libmagics++-dev 3.0.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | /*
* (C) Copyright 1996-2016 ECMWF.
*
* This software is licensed under the terms of the Apache Licence Version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
* In applying this licence, ECMWF does not waive the privileges and immunities
* granted to it by virtue of its status as an intergovernmental organisation nor
* does it submit to any jurisdiction.
*/
/*! \file BaseParameter.h
\brief Definition of Parameter base class.
Magics Team - ECMWF 2004
Started: Jan 2004
Changes:
*/
#ifndef BaseParameter_H
#define BaseParameter_H
#include "magics.h"
#include "MagException.h"
#include <PaperPoint.h>
#include "Matrix.h"
#ifdef HAVE_CAIRO
#include <cairo.h>
typedef cairo_t* CairoPtr;
#endif
#ifdef LATER
#include <grib_api.h>
typedef grib_handle* GribHandlePtr ;
#endif
#ifndef MAGICS_Exception
#include <MagLog.h>
#endif
namespace magics {
class MistmatchType : public MagicsException
{
public:
MistmatchType(const string& name, const string& type, const string& wait) :
MagicsException("Parameter " + name + ": type mismatch -> type received \"" + type + "\", expected type \"" + wait + "\" - setting ignored!") {}
};
class BaseParameter {
public:
BaseParameter(const string& name);
virtual ~BaseParameter();
virtual void reset() = 0;
virtual void setLocal(const BaseParameter*) = 0;
virtual void resetLocal() = 0;
virtual BaseParameter* clone() = 0;
const string& name() const { return name_; }
#ifdef MAGICS_EXCEPTION
virtual void set(const double&) { throw MistmatchType(name_, "real", type()); }
virtual void setLocal(const double&) { throw MistmatchType(name_, "real", type()); }
virtual void get(double&) const { throw MistmatchType(name_, "real", type()); }
virtual void set(bool) { throw MistmatchType(name_, "bool", type()); }
virtual void setLocal(bool) { throw MistmatchType(name_, "bool", type()); }
virtual void get(bool&) const { throw MistmatchType(name_, "bool", type()); }
virtual void set(const magvector<double>&) { throw MistmatchType(name_, "array of reals", type()); }
virtual void setLocal(const magvector<double>&) { throw MistmatchType(name_, "array of reals", type()); }
virtual void get(magvector<double>&) const { throw MistmatchType(name_, "array of reals", type()); }
virtual void set(const int&) { throw MistmatchType(name_, "integer", type()); }
virtual void setLocal(const int&) { throw MistmatchType(name_, "integer", type()); }
virtual void get(int&) const { throw MistmatchType(name_, "integer", type()); }
virtual void set(const magvector<int>&) { throw MistmatchType(name_, "integer", type()); }
virtual void setLocal(const magvector<int>&) { throw MistmatchType(name_, "integer", type()); }
virtual void get(magvector<int>&) const { throw MistmatchType(name_, "integer", type()); }
virtual void set(const magvector<long int>&) { throw MistmatchType(name_, "long integer", type()); }
virtual void setLocal(const magvector<long int>&) { throw MistmatchType(name_, "long integer", type()); }
virtual void get(magvector<long int>&) const { throw MistmatchType(name_, "long integer", type()); }
virtual void set(const string&) { throw MistmatchType(name_, "string", type()); }
virtual void setLocal(const string&) { throw MistmatchType(name_, "string", type()); }
virtual void get(string&) const { throw MistmatchType(name_, "string", type()); }
virtual void set(const magvector<string>&) { throw MistmatchType(name_, "stringarray", type()); }
virtual void setLocal(const magvector<string>&) { throw MistmatchType(name_, "stringarray", type()); }
virtual void get(magvector<string>&) const { throw MistmatchType(name_, "stringarray", type()); }
virtual void set(LineStyle) { throw MistmatchType(name_, "LineStyle", type()); }
virtual void setLocal(LineStyle) { throw MistmatchType(name_, "LineStyle", type()); }
virtual void get(LineStyle&) const { throw MistmatchType(name_, "LineStyle", type()); }
virtual void set(DisplayType) { throw MistmatchType(name_, "LineStyle", type()); }
virtual void setLocal(DisplayType) { throw MistmatchType(name_, "LineStyle", type()); }
virtual void get(DisplayType&) const { throw MistmatchType(name_, "LineStyle", type()); }
virtual void set(Justification) { throw MistmatchType(name_, "Justification", type()); }
virtual void setLocal(Justification) { throw MistmatchType(name_, "LineStyle", type()); }
virtual void get(Justification&) const { throw MistmatchType(name_, "Justification", type()); }
virtual void set(ListPolicy) { throw MistmatchType(name_, "ListPolicy", type()); }
virtual void setLocal(ListPolicy) { throw MistmatchType(name_, "LineStyle", type()); }
virtual void get(ListPolicy&) const { throw MistmatchType(name_, "ListPolicy", type()); }
virtual void set(AxisAutomaticSetting) { throw MistmatchType(name_, "AxisAutomaticSetting", type()); }
virtual void setLocal(AxisAutomaticSetting) { throw MistmatchType(name_, "AxisAutomaticSetting", type()); }
virtual void get(AxisAutomaticSetting&) const { throw MistmatchType(name_, "AxisAutomaticSetting", type()); }
virtual void set(ArrowPosition) { throw MistmatchType(name_, "ArrowPosition", type()); }
virtual void setLocal(ArrowPosition) { throw MistmatchType(name_, "ArrowPosition", type()); }
virtual void get(ArrowPosition&) const { throw MistmatchType(name_, "ArrowPosition", type()); }
virtual void set(const Matrix&) { throw MistmatchType(name_, "Matrix", type()); }
virtual void setLocal(const Matrix&) { throw MistmatchType(name_, "Matrix", type()); }
virtual void get(Matrix&) const { throw MistmatchType(name_, "Matrix", type()); }
#else
virtual void set(const double&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "real", type()) << "\n"; }
virtual void setLocal(const double&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "real", type()) << "\n"; }
virtual void get(double&) const { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "real", type()) << "\n"; }
virtual void set(bool) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "bool", type()) << "\n";}
virtual void setLocal(bool) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "bool", type()) << "\n"; }
virtual void get(bool&) const { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "bool", type()) << "\n"; }
virtual void set(const magvector<double>&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "real", type()) << "\n"; }
virtual void setLocal(const magvector<double>&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "real", type()) << "\n"; }
virtual void get(magvector<double>&) const { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "real", type()) << "\n"; }
virtual void set(const int&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "integer", type()) << "\n"; }
virtual void setLocal(const int&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "real", type()) << "\n"; }
virtual void get(int&) const { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "integer", type()) << "\n"; }
virtual void set(const magvector<int>&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "real", type()) << "\n"; }
virtual void setLocal(const magvector<int>&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "integer", type()) << "\n"; }
virtual void get(magvector<int>&) const { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "integer", type()) << "\n"; }
virtual void set(const magvector<long int>&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "long int", type()) << "\n"; }
virtual void setLocal(const magvector<long int>&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "long int", type()) << "\n"; }
virtual void get(magvector<long int>&) const { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "long int", type()) << "\n"; }
virtual void set(const string&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "string", type()) << "\n"; }
virtual void setLocal(const string&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "string", type()) << "\n"; }
virtual void get(string&) const { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "string", type()) << "\n"; }
virtual void set(const magvector<string>&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "string", type()) << "\n"; }
virtual void setLocal(const magvector<string>&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "string", type()) << "\n"; }
virtual void get(magvector<string>&) const { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "string", type()) << "\n"; }
virtual void set(LineStyle) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "LineStyle", type()) << "\n"; }
virtual void setLocal(LineStyle) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "LineStyle", type()) << "\n"; }
virtual void get(LineStyle&) const { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "LineStyle", type()) << "\n"; }
virtual void set(Justification) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "Justification", type()) << "\n"; }
virtual void setLocal(Justification) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "Justification", type()) << "\n"; }
virtual void get(Justification&) const { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "Justification", type()) << "\n"; }
virtual void set(ListPolicy) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "ListPolicy", type()) << "\n"; }
virtual void setLocal(ListPolicy) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "Justification", type()) << "\n"; }
virtual void get(ListPolicy&) const { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "ListPolicy", type()) << "\n"; }
virtual void set(AxisAutomaticSetting) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "AxisAutomaticSetting", type()) << "\n"; }
virtual void setLocal(AxisAutomaticSetting) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "AxisAutomaticSetting", type()) << "\n"; }
virtual void get(AxisAutomaticSetting&) const { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "AxisAutomaticSetting", type()) << "\n"; }
virtual void set(ArrowPosition) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "ArrowPosition", type()) << "\n"; }
virtual void setLocal(ArrowPosition) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "ArrowPosition", type()) << "\n"; }
virtual void get(ArrowPosition&) const { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "ArrowPosition", type()) << "\n"; }
virtual void set(const Matrix&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "Matrix", type()) << "\n"; }
virtual void setLocal(Matrix&) { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "ArrowPosition", type()) << "\n"; }
virtual void get(Matrix&) const { MagLog::dev()<< "Magics-warning:" << MistmatchType(name_, "Matrix", type()) << "\n"; }
#endif
virtual string type() const = 0;
#ifdef HAVE_CAIRO
virtual void set(const CairoPtr&) { throw MistmatchType(name_, "cairo_context", type()); }
virtual void get(CairoPtr&) const { throw MistmatchType(name_, "cairo_context", type()); }
string getType(CairoPtr) const { return "cairo_context"; }
#endif
#ifdef LATER
virtual void set(const GribHandlePtr&) { throw MistmatchType(name_, "grib_handle", type()); }
virtual void get(GribHandlePtr&) const { throw MistmatchType(name_, "grib_handle", type()); }
string getType(GribHandlePtr&) const { return "grib_handle"; }
#endif
string getType(const string&) const { return "string"; }
string getType(const int&) const { return "integer"; }
string getType(const double&) const { return "real"; }
string getType(const magvector<string>&) const { return "array of string"; }
string getType(const magvector<int>&) const { return "array of integer"; }
string getType(const magvector<long int>&) const { return "array of long integer"; }
string getType(const magvector<double>&) const { return "array of real"; }
string getType(LineStyle) const { return "LineStyle"; }
string getType(AxisAutomaticSetting) const { return "AxisAutomaticSetting"; }
string getType(Justification) const { return "Justification"; }
string getType(ArrowPosition) const { return "ArrowPosition"; }
string getType(Matrix) const { return "2DMatrix"; }
protected:
virtual void print(ostream&) const;
string name_;
private:
// No copy allowed
BaseParameter(const BaseParameter&);
BaseParameter& operator=(const BaseParameter&);
// -- Friends
friend ostream& operator<<(ostream& s,const BaseParameter& p)
{ p.print(s); return s; }
};
} // namespace magics
#endif
|