GNU Octave 7.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
ov-mex-fcn.h
Go to the documentation of this file.
1////////////////////////////////////////////////////////////////////////
2//
3// Copyright (C) 1996-2022 The Octave Project Developers
4//
5// See the file COPYRIGHT.md in the top-level directory of this
6// distribution or <https://octave.org/copyright/>.
7//
8// This file is part of Octave.
9//
10// Octave is free software: you can redistribute it and/or modify it
11// under the terms of the GNU General Public License as published by
12// the Free Software Foundation, either version 3 of the License, or
13// (at your option) any later version.
14//
15// Octave is distributed in the hope that it will be useful, but
16// WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18// GNU General Public License for more details.
19//
20// You should have received a copy of the GNU General Public License
21// along with Octave; see the file COPYING. If not, see
22// <https://www.gnu.org/licenses/>.
23//
24////////////////////////////////////////////////////////////////////////
25
26#if ! defined (octave_ov_mex_fcn_h)
27#define octave_ov_mex_fcn_h 1
28
29#include "octave-config.h"
30
31#include <string>
32
33#include "oct-shlib.h"
34
35#include "ov-fcn.h"
36#include "ov-builtin.h"
37#include "ov-typeinfo.h"
38
39class octave_value;
41
42namespace octave
43{
44 class tree_evaluator;
45}
46
47// Dynamically-linked functions.
48
49class
51{
52public:
53
55 : m_mex_fcn_ptr (nullptr), m_exit_fcn_ptr (nullptr), m_sh_lib (),
56 m_time_checked (), m_interleaved (false), m_is_fmex (false),
57 m_is_system_fcn_file (false)
58 { }
59
60 octave_mex_function (void *fptr, bool interleaved, bool fmex,
61 const octave::dynamic_library& shl,
62 const std::string& nm = "");
63
64 // No copying!
65
67
69
71
72 octave_function * function_value (bool = false) { return this; }
73
74 const octave_function * function_value (bool = false) const { return this; }
75
77 {
78 m_time_checked = t;
79 }
80
81 std::string fcn_file_name (void) const;
82
83 octave::sys::time time_parsed (void) const;
84
85 octave::sys::time time_checked (void) const { return m_time_checked; }
86
87 bool is_system_fcn_file (void) const { return m_is_system_fcn_file; }
88
89 bool is_builtin_function (void) const { return false; }
90
91 bool is_mex_function (void) const { return true; }
92
93 bool use_interleaved_complex (void) const { return m_interleaved; }
94
96 execute (octave::tree_evaluator& tw, int nargout = 0,
97 const octave_value_list& args = octave_value_list ());
98
99 void atexit (void (*fcn) (void)) { m_exit_fcn_ptr = fcn; }
100
101 octave::dynamic_library get_shlib (void) const { return m_sh_lib; }
102
103 void * mex_fcn_ptr (void) const { return m_mex_fcn_ptr; }
104
105 bool is_fmex (void) const { return m_is_fmex; }
106
107private:
108
110
111 void (*m_exit_fcn_ptr) (void);
112
114
115 // The time the file was last checked to see if it needs to be
116 // parsed again.
118
120
122
123 // True if this function came from a file that is considered to be a
124 // system function. This affects whether we check the time stamp
125 // on the file to see if it has changed.
127
129};
130
131#endif
bool is_builtin_function(void) const
Definition: ov-mex-fcn.h:89
const octave_function * function_value(bool=false) const
Definition: ov-mex-fcn.h:74
bool is_fmex(void) const
Definition: ov-mex-fcn.h:105
void atexit(void(*fcn)(void))
Definition: ov-mex-fcn.h:99
void mark_fcn_file_up_to_date(const octave::sys::time &t)
Definition: ov-mex-fcn.h:76
octave_function * function_value(bool=false)
Definition: ov-mex-fcn.h:72
octave::sys::time m_time_checked
Definition: ov-mex-fcn.h:117
bool is_mex_function(void) const
Definition: ov-mex-fcn.h:91
octave::dynamic_library m_sh_lib
Definition: ov-mex-fcn.h:113
octave::sys::time time_checked(void) const
Definition: ov-mex-fcn.h:85
octave_mex_function(const octave_mex_function &fn)=delete
bool use_interleaved_complex(void) const
Definition: ov-mex-fcn.h:93
bool is_system_fcn_file(void) const
Definition: ov-mex-fcn.h:87
octave::dynamic_library get_shlib(void) const
Definition: ov-mex-fcn.h:101
void * mex_fcn_ptr(void) const
Definition: ov-mex-fcn.h:103
octave_mex_function(void)
Definition: ov-mex-fcn.h:54
tree_evaluator & operator=(const tree_evaluator &)=delete
FloatComplex(* fptr)(const FloatComplex &, float, int, octave_idx_type &)
Definition: lo-specfun.cc:1128
#define DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA
Definition: ov-base.h:173