Mercurial > hg > octave-nkf
annotate libinterp/octave-value/ov-mex-fcn.h @ 20830:b65888ec820e draft default tip gccjit
dmalcom gcc jit import
author | Stefan Mahr <dac922@gmx.de> |
---|---|
date | Fri, 27 Feb 2015 16:59:36 +0100 |
parents | 4197fc428c7d |
children |
rev | line source |
---|---|
5864 | 1 /* |
2 | |
19898
4197fc428c7d
maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents:
19795
diff
changeset
|
3 Copyright (C) 1996-2015 John W. Eaton |
5864 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
5864 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
5864 | 20 |
21 */ | |
22 | |
17822
ebb3ef964372
maint: Use common #define syntax "octave_filename_h" in h_files.
Rik <rik@octave.org>
parents:
17787
diff
changeset
|
23 #if !defined (octave_ov_mex_fcn_h) |
ebb3ef964372
maint: Use common #define syntax "octave_filename_h" in h_files.
Rik <rik@octave.org>
parents:
17787
diff
changeset
|
24 #define octave_ov_mex_fcn_h 1 |
5864 | 25 |
26 #include <string> | |
27 | |
28 #include "oct-shlib.h" | |
29 | |
30 #include "ov-fcn.h" | |
31 #include "ov-builtin.h" | |
32 #include "ov-typeinfo.h" | |
33 | |
34 class octave_shlib; | |
35 | |
36 class octave_value; | |
37 class octave_value_list; | |
38 | |
39 // Dynamically-linked functions. | |
40 | |
41 class | |
42 octave_mex_function : public octave_function | |
43 { | |
44 public: | |
45 | |
12123
9ea6f69259d7
more constructor initialization fixes
Pascal Dupuis <Pascal.Dupuis@uclouvain.be>
parents:
11523
diff
changeset
|
46 octave_mex_function (void) |
12174 | 47 : mex_fcn_ptr (), exit_fcn_ptr (), have_fmex (), sh_lib (), |
12123
9ea6f69259d7
more constructor initialization fixes
Pascal Dupuis <Pascal.Dupuis@uclouvain.be>
parents:
11523
diff
changeset
|
48 t_checked (), system_fcn_file () { } |
5864 | 49 |
50 octave_mex_function (void *fptr, bool fmex, const octave_shlib& shl, | |
10313 | 51 const std::string& nm = std::string ()); |
5864 | 52 |
53 ~octave_mex_function (void); | |
54 | |
7651
443a8f5a50fd
require both subsref variants to be defined in octave_value subclasses
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
55 octave_value subsref (const std::string& type, |
10313 | 56 const std::list<octave_value_list>& idx) |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
57 { |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
58 octave_value_list tmp = subsref (type, idx, 1); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
59 return tmp.length () > 0 ? tmp(0) : octave_value (); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
60 } |
5864 | 61 |
62 octave_value_list subsref (const std::string& type, | |
10313 | 63 const std::list<octave_value_list>& idx, |
64 int nargout); | |
5864 | 65 |
66 octave_function *function_value (bool = false) { return this; } | |
67 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7651
diff
changeset
|
68 const octave_function *function_value (bool = false) const { return this; } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7651
diff
changeset
|
69 |
5864 | 70 void mark_fcn_file_up_to_date (const octave_time& t) { t_checked = t; } |
71 | |
72 std::string fcn_file_name (void) const; | |
73 | |
74 octave_time time_parsed (void) const; | |
75 | |
76 octave_time time_checked (void) const { return t_checked; } | |
77 | |
78 bool is_system_fcn_file (void) const { return system_fcn_file; } | |
79 | |
80 bool is_builtin_function (void) const { return false; } | |
81 | |
82 bool is_mex_function (void) const { return true; } | |
83 | |
84 octave_value_list | |
85 do_multi_index_op (int nargout, const octave_value_list& args); | |
86 | |
6068 | 87 void atexit (void (*fcn) (void)) { exit_fcn_ptr = fcn; } |
88 | |
9960
5f3c10ecb150
implement get_current_shlib and octave_auto_shlib
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
89 octave_shlib get_shlib (void) const |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
90 { return sh_lib; } |
9960
5f3c10ecb150
implement get_current_shlib and octave_auto_shlib
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
91 |
5864 | 92 private: |
93 | |
94 void *mex_fcn_ptr; | |
95 | |
6068 | 96 void (*exit_fcn_ptr) (void); |
97 | |
5864 | 98 bool have_fmex; |
99 | |
100 octave_shlib sh_lib; | |
101 | |
102 // The time the file was last checked to see if it needs to be | |
103 // parsed again. | |
104 mutable octave_time t_checked; | |
105 | |
106 // True if this function came from a file that is considered to be a | |
107 // system function. This affects whether we check the time stamp | |
108 // on the file to see if it has changed. | |
109 bool system_fcn_file; | |
110 | |
111 // No copying! | |
112 | |
113 octave_mex_function (const octave_mex_function& fn); | |
114 | |
115 octave_mex_function& operator = (const octave_mex_function& fn); | |
116 | |
117 | |
118 DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA | |
119 }; | |
120 | |
121 #endif |