/usr/include/octave-4.2.2/octave/hook-fcn.h is in liboctave-dev 4.2.2-1ubuntu1.
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 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 | /*
Copyright (C) 2013-2017 John W. Eaton
This file is part of Octave.
Octave 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 3 of the License, or (at your
option) any later version.
Octave 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 Octave; see the file COPYING. If not, see
<http://www.gnu.org/licenses/>.
*/
#if ! defined (octave_hook_fcn_h)
#define octave_hook_fcn_h 1
#include "octave-config.h"
#include <string>
#include "ovl.h"
#include "ov.h"
#include "ov-fcn-handle.h"
#include "parse.h"
#include "variables.h"
class
base_hook_function
{
public:
friend class hook_function;
base_hook_function (void) : count (1) { }
base_hook_function (const base_hook_function&) : count (1) { }
virtual ~base_hook_function (void) { }
virtual std::string id (void) { return ""; }
virtual bool is_valid (void) { return false; }
virtual void eval (const octave_value_list&) { }
protected:
size_t count;
};
class
hook_function
{
public:
hook_function (void)
{
static base_hook_function nil_rep;
rep = &nil_rep;
rep->count++;
}
hook_function (const octave_value& f,
const octave_value& d = octave_value ());
~hook_function (void)
{
if (--rep->count == 0)
delete rep;
}
hook_function (const hook_function& hf)
: rep (hf.rep)
{
rep->count++;
}
hook_function& operator = (const hook_function& hf)
{
if (rep != hf.rep)
{
if (--rep->count == 0)
delete rep;
rep = hf.rep;
rep->count++;
}
return *this;
}
std::string id (void) { return rep->id (); }
bool is_valid (void) { return rep->is_valid (); }
void eval (const octave_value_list& initial_args)
{
rep->eval (initial_args);
}
private:
base_hook_function *rep;
};
class
named_hook_function : public base_hook_function
{
public:
named_hook_function (const std::string& n, const octave_value& d)
: name (n), data (d)
{ }
void eval (const octave_value_list& initial_args)
{
octave_value_list args = initial_args;
if (data.is_defined ())
args.append (data);
feval (name, args, 0);
}
std::string id (void) { return name; }
bool is_valid (void) { return is_valid_function (name); }
private:
std::string name;
octave_value data;
};
class
fcn_handle_hook_function : public base_hook_function
{
public:
fcn_handle_hook_function (const octave_value& fh_arg, const octave_value& d)
: ident (), valid (false), fcn_handle (fh_arg), data (d)
{
octave_fcn_handle *fh = fcn_handle.fcn_handle_value (true);
if (fh)
{
valid = true;
std::ostringstream buf;
buf << fh;
ident = fh->fcn_name () + ":" + buf.str ();
}
}
void eval (const octave_value_list& initial_args)
{
octave_value_list args = initial_args;
if (data.is_defined ())
args.append (data);
fcn_handle.do_multi_index_op (0, args);
}
std::string id (void) { return ident; }
bool is_valid (void) { return valid; }
private:
std::string ident;
bool valid;
octave_value fcn_handle;
octave_value data;
};
class
hook_function_list
{
public:
typedef std::map<std::string, hook_function> map_type;
typedef map_type::iterator iterator;
typedef map_type::const_iterator const_iterator;
hook_function_list (void) : fcn_map () { }
~hook_function_list (void) { }
hook_function_list (const hook_function_list& lst)
: fcn_map (lst.fcn_map)
{ }
hook_function_list& operator = (const hook_function_list& lst)
{
if (&lst != this)
fcn_map = lst.fcn_map;
return *this;
}
bool empty (void) const { return fcn_map.empty (); }
void clear (void) { fcn_map.clear (); }
void insert (const std::string& id, const hook_function& f)
{
fcn_map[id] = f;
}
iterator find (const std::string& id)
{
return fcn_map.find (id);
}
const_iterator find (const std::string& id) const
{
return fcn_map.find (id);
}
iterator end (void) { return fcn_map.end (); }
const_iterator end (void) const { return fcn_map.end (); }
void erase (iterator p) { fcn_map.erase (p); }
void run (const octave_value_list& initial_args = octave_value_list ())
{
iterator p = fcn_map.begin ();
while (p != fcn_map.end ())
{
std::string hook_fcn_id = p->first;
hook_function hook_fcn = p->second;
iterator q = p++;
if (hook_fcn.is_valid ())
hook_fcn.eval (initial_args);
else
fcn_map.erase (q);
}
}
private:
map_type fcn_map;
};
#endif
|