File: ov-typeinfo.h

package info (click to toggle)
octave 6.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 124,192 kB
  • sloc: cpp: 322,665; ansic: 68,088; fortran: 20,980; objc: 8,121; sh: 7,719; yacc: 4,266; lex: 4,123; perl: 1,530; java: 1,366; awk: 1,257; makefile: 424; xml: 147
file content (331 lines) | stat: -rw-r--r-- 10,196 bytes parent folder | download
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 1996-2021 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// 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
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////

#if ! defined (octave_ov_typeinfo_h)
#define octave_ov_typeinfo_h 1

#include "octave-config.h"

#include <string>

#include "Array.h"

#include "oct-map.h"
#include "ov.h"

class string_vector;

namespace octave
{
  class type_info
  {
  public:

    typedef octave_value (*unary_class_op_fcn) (const octave_value&);

    typedef octave_value (*unary_op_fcn) (const octave_base_value&);

    typedef void (*non_const_unary_op_fcn) (octave_base_value&);

    typedef octave_value (*binary_class_op_fcn)
      (const octave_value&, const octave_value&);

    typedef octave_value (*binary_op_fcn)
      (const octave_base_value&, const octave_base_value&);

    typedef octave_value (*cat_op_fcn)
      (octave_base_value&, const octave_base_value&,
     const Array<octave_idx_type>& ra_idx);

    typedef octave_value (*assign_op_fcn)
      (octave_base_value&, const octave_value_list&, const octave_base_value&);

    typedef octave_value (*assignany_op_fcn)
      (octave_base_value&, const octave_value_list&, const octave_value&);

    explicit type_info (int init_tab_sz = 16);

    // No copying!

    type_info (const type_info&) = delete;

    type_info& operator = (const type_info&) = delete;

    ~type_info (void) = default;

    // It is intentional that there is no install_type function.

    bool install_unary_class_op (octave_value::unary_op op,
                                 unary_class_op_fcn f)
    {
      return register_unary_class_op (op, f, true);
    }

    bool install_unary_op (octave_value::unary_op op, int t, unary_op_fcn f)
    {
      return register_unary_op (op, t, f, true);
    }

    bool install_non_const_unary_op (octave_value::unary_op op, int t,
                                     non_const_unary_op_fcn f)
    {
      return register_non_const_unary_op (op, t, f, true);
    }

    bool install_binary_class_op (octave_value::binary_op op,
                                  binary_class_op_fcn f)
    {
      return register_binary_class_op (op, f, true);
    }

    bool install_binary_op (octave_value::binary_op op, int t1, int t2,
                            binary_op_fcn f)
    {
      return register_binary_op (op, t1, t2, f, true);
    }

    bool install_binary_class_op (octave_value::compound_binary_op op,
                                  binary_class_op_fcn f)
    {
      return register_binary_class_op (op, f, true);
    }

    bool install_binary_op (octave_value::compound_binary_op op,
                            int t_lhs, int t_rhs, binary_op_fcn f)
    {
      return register_binary_op (op, t_lhs, t_rhs, f, true);
    }

    bool install_cat_op (int t1, int t2, cat_op_fcn f)
    {
      return register_cat_op (t1, t2, f, true);
    }

    bool install_assign_op (octave_value::assign_op op,
                            int t_lhs, int t_rhs, assign_op_fcn f)
    {
      return register_assign_op (op, t_lhs, t_rhs, f, true);
    }

    bool install_assignany_op (octave_value::assign_op op, int t_lhs,
                               assignany_op_fcn f)
    {
      return register_assignany_op (op, t_lhs, f, true);
    }

    bool install_pref_assign_conv (int t_lhs, int t_rhs, int t_result)
    {
      return register_pref_assign_conv (t_lhs, t_rhs, t_result, true);
    }

    bool install_widening_op (int t, int t_result,
                              octave_base_value::type_conv_fcn f)
    {
      return register_widening_op (t, t_result, f, true);
    }

    int register_type (const std::string&, const std::string&,
                       const octave_value&, bool abort_on_duplicate = false);

    bool register_unary_class_op (octave_value::unary_op, unary_class_op_fcn,
                                  bool abort_on_duplicate = false);

    bool register_unary_op (octave_value::unary_op, int, unary_op_fcn,
                            bool abort_on_duplicate = false);

    bool register_non_const_unary_op (octave_value::unary_op, int,
                                      non_const_unary_op_fcn,
                                      bool abort_on_duplicate = false);

    bool register_binary_class_op (octave_value::binary_op,
                                   binary_class_op_fcn,
                                   bool abort_on_duplicate = false);

    bool register_binary_op (octave_value::binary_op, int, int,
                             binary_op_fcn, bool abort_on_duplicate = false);

    bool register_binary_class_op (octave_value::compound_binary_op,
                                   binary_class_op_fcn,
                                   bool abort_on_duplicate = false);

    bool register_binary_op (octave_value::compound_binary_op, int, int,
                             binary_op_fcn, bool abort_on_duplicate = false);

    bool register_cat_op (int, int, cat_op_fcn,
                          bool abort_on_duplicate = false);

    bool register_assign_op (octave_value::assign_op, int, int, assign_op_fcn,
                             bool abort_on_duplicate = false);

    bool register_assignany_op (octave_value::assign_op, int, assignany_op_fcn,
                                bool abort_on_duplicate = false);

    bool register_pref_assign_conv (int, int, int,
                                    bool abort_on_duplicate = false);

    bool register_widening_op (int, int, octave_base_value::type_conv_fcn,
                               bool abort_on_duplicate = false);

    octave_value lookup_type (const std::string& nm);

    unary_class_op_fcn lookup_unary_class_op (octave_value::unary_op);

    unary_op_fcn lookup_unary_op (octave_value::unary_op, int);

    non_const_unary_op_fcn
    lookup_non_const_unary_op (octave_value::unary_op, int);

    binary_class_op_fcn lookup_binary_class_op (octave_value::binary_op);

    binary_op_fcn lookup_binary_op (octave_value::binary_op, int, int);

    binary_class_op_fcn
    lookup_binary_class_op (octave_value::compound_binary_op);

    binary_op_fcn
    lookup_binary_op (octave_value::compound_binary_op, int, int);

    cat_op_fcn lookup_cat_op (int, int);

    assign_op_fcn lookup_assign_op (octave_value::assign_op, int, int);

    assignany_op_fcn lookup_assignany_op (octave_value::assign_op, int);

    int lookup_pref_assign_conv (int, int);

    octave_base_value::type_conv_fcn lookup_widening_op (int, int);

    string_vector installed_type_names (void) const;

    octave_scalar_map installed_type_info (void) const;

    octave_scalar_map unary_ops_map (void) const;

    octave_scalar_map non_const_unary_ops_map (void) const;

    octave_scalar_map binary_ops_map (void) const;

    octave_scalar_map compound_binary_ops_map (void) const;

    octave_scalar_map assign_ops_map (void) const;

    octave_scalar_map assignany_ops_map (void) const;

  private:

    int num_types;

    Array<std::string> types;

    Array<octave_value *> vals;

    Array<void *> unary_class_ops;

    Array<void *> unary_ops;

    Array<void *> non_const_unary_ops;

    Array<void *> binary_class_ops;

    Array<void *> binary_ops;

    Array<void *> compound_binary_class_ops;

    Array<void *> compound_binary_ops;

    Array<void *> cat_ops;

    Array<void *> assign_ops;

    Array<void *> assignany_ops;

    Array<int> pref_assign_conv;

    Array<void *> widening_ops;
  };
}

namespace octave_value_typeinfo
{
  typedef octave::type_info::unary_class_op_fcn unary_class_op_fcn;

  typedef octave::type_info::unary_op_fcn unary_op_fcn;

  typedef octave::type_info::non_const_unary_op_fcn non_const_unary_op_fcn;

  typedef octave::type_info::binary_class_op_fcn binary_class_op_fcn;

  typedef octave::type_info::binary_op_fcn binary_op_fcn;

  typedef octave::type_info::cat_op_fcn cat_op_fcn;

  typedef octave::type_info::assign_op_fcn assign_op_fcn;

  typedef octave::type_info::assignany_op_fcn assignany_op_fcn;

  extern int register_type (const std::string& t_name,
                            const std::string& c_name,
                            const octave_value& val);

  extern octave_value lookup_type (const std::string& nm);

  extern unary_class_op_fcn lookup_unary_class_op (octave_value::unary_op op);

  extern unary_op_fcn lookup_unary_op (octave_value::unary_op op, int t);

  extern non_const_unary_op_fcn
  lookup_non_const_unary_op (octave_value::unary_op op, int t);

  extern binary_class_op_fcn
  lookup_binary_class_op (octave_value::binary_op op);

  extern binary_op_fcn
  lookup_binary_op (octave_value::binary_op op, int t1, int t2);

  extern binary_class_op_fcn
  lookup_binary_class_op (octave_value::compound_binary_op op);

  extern binary_op_fcn
  lookup_binary_op (octave_value::compound_binary_op op, int t1, int t2);

  extern cat_op_fcn lookup_cat_op (int t1, int t2);

  extern assign_op_fcn
  lookup_assign_op (octave_value::assign_op op, int t_lhs, int t_rhs);

  extern assignany_op_fcn
  lookup_assignany_op (octave_value::assign_op op, int t_lhs);

  extern int lookup_pref_assign_conv (int t_lhs, int t_rhs);

  extern octave_base_value::type_conv_fcn
  lookup_widening_op (int t, int t_result);

  extern string_vector installed_type_names (void);

  extern octave_scalar_map installed_type_info (void);
}

#endif