/usr/include/dballe/msg/context.h is in libdballe-dev 5.18-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 | /*
* msg/context - Hold variables with the same physical context
*
* Copyright (C) 2005--2011 ARPA-SIM <urpsim@smr.arpa.emr.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author: Enrico Zini <enrico@enricozini.com>
*/
#ifndef DBA_MSG_CONTEXT_H
#define DBA_MSG_CONTEXT_H
/** @file
* @ingroup msg
*
* Sorted storage for all the dba_msg_datum present on one level.
*/
#include <dballe/core/var.h>
#include <dballe/core/defs.h>
#include <vector>
#include <memory>
struct lua_State;
namespace dballe {
namespace msg {
/**
* Store an array of physical data all on the same level
*/
class Context
{
protected:
/**
* Return the index of the var `code' in l, or -1 if it was not found
*/
int find_index(wreport::Varcode code) const;
public:
Level level;
Trange trange;
/**
* The variables in this context
*/
std::vector<wreport::Var*> data;
Context(const Level& lev, const Trange& tr);
Context(const Context& c);
~Context();
Context& operator=(const Context& src);
/// @return true if this is the station context, else false
bool is_station() const;
/**
* Compare two dba_msg_context strutures, for use in sorting.
*
* @param ctx
* First context to compare
* @return
* -1 if l1 < l2, 0 if l1 == l2, 1 if l1 > l2
*/
int compare(const Context& ctx) const;
/**
* Compare a Context struture with level and time range information, for
* use in sorting.
*
* @return
* -1 if l < ltype,l1,l2; 0 if l == ltype,l1,l2; 1 if l > ltype,l1,l2
*/
int compare(const Level& lev, const Trange& tr) const;
/**
* Add a Var to the level
*
* If a variable exists with the same code, it is replaced
*
* @param var
* The variable to add or replace.
*/
void set(const wreport::Var& var);
/**
* Add a Var to the level
*
* If a variable exists with the same code, it is replaced
*
* The Context will take ownership of memory management for \a var
*
* @param var
* The variable to add or replace.
*/
void set(std::auto_ptr<wreport::Var> var);
/**
* Find a variable given its varcode
*
* @param code
* The wreport::Varcode of the variable to query. See @ref vartable.h
* @return
* The variable found, or NULL if it was not found.
*/
const wreport::Var* find(wreport::Varcode code) const;
/**
* Find a variable given its varcode
*
* @param code
* The wreport::Varcode of the variable to query. See @ref vartable.h
* @return
* The variable found, or NULL if it was not found.
*/
wreport::Var* edit(wreport::Varcode code);
/**
* Remove a variable given its varcode
*
* @param code
* The wreport::Varcode of the variable to query. See @ref vartable.h
* @return
* The variable removed, or NULL if it was not found.
*/
bool remove(wreport::Varcode code);
/**
* Find a variable given its shortcut ID
*
* @param id
* Shortcut ID of the value to set (see @ref vars.h)
* @return
* The variable found, or NULL if it was not found.
*/
const wreport::Var* find_by_id(int id) const;
/**
* If this context is the right context for a vertical sounding significance
* and contains a vertical sounding significance variable, return it. Else,
* return NULL.
*/
const wreport::Var* find_vsig() const;
/**
* Dump all the contents of the context to the given stream
*
* @param out
* The stream to dump the contents of the level to.
*/
void print(FILE* out) const;
/**
* Compute the differences between two contexts
*
* Details of the differences found will be formatted using the notes
* system (@see notes.h).
*
* @param ctx
* Context to compare with this one
* @returns
* The number of differences found
*/
unsigned diff(const Context& ctx) const;
/**
* Push the variable as an object in the lua stack
*/
void lua_push(struct lua_State* L);
/**
* Check that the element at \a idx is a dba_msg_context
*
* @return the dba_msg_context element, or NULL if the check failed
*/
static Context* lua_check(struct lua_State* L, int idx);
};
#if 0
dba_err dba_msg_context_set(dba_msg msg, dba_var var, dba_varcode code, int ltype, int l1, int l2, int pind, int p1, int p2);
dba_err dba_msg_context_set_by_id(dba_msg msg, dba_var var, int id);
dba_err dba_msg_context_set_nocopy_by_id(dba_msg msg, dba_var var, int id);
dba_err dba_msg_context_seti(dba_msg msg, dba_varcode code, int val, int conf, int ltype, int l1, int l2, int pind, int p1, int p2);
dba_err dba_msg_context_setd(dba_msg msg, dba_varcode code, double val, int conf, int ltype, int l1, int l2, int pind, int p1, int p2);
dba_err dba_msg_context_setc(dba_msg msg, dba_varcode code, const char* val, int conf, int ltype, int l1, int l2, int pind, int p1, int p2);
#endif
#if 0
#endif
}
}
// vim:set ts=4 sw=4:
#endif
|