3329
|
1 /* |
|
2 |
|
3 Copyright (C) 1996, 1997 John W. Eaton |
|
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. |
3329
|
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/>. |
3329
|
20 |
|
21 */ |
|
22 |
|
23 #if !defined (octave_dld_function_h) |
|
24 #define octave_dld_function_h 1 |
|
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_dld_function : public octave_builtin |
|
43 { |
|
44 public: |
|
45 |
4645
|
46 octave_dld_function (void) { } |
4641
|
47 |
3329
|
48 octave_dld_function (octave_builtin::fcn ff, const octave_shlib& shl, |
3523
|
49 const std::string& nm = std::string (), |
|
50 const std::string& ds = std::string ()); |
3329
|
51 |
|
52 ~octave_dld_function (void); |
|
53 |
|
54 void mark_fcn_file_up_to_date (const octave_time& t) { t_checked = t; } |
|
55 |
3523
|
56 std::string fcn_file_name (void) const; |
3329
|
57 |
|
58 octave_time time_parsed (void) const; |
|
59 |
|
60 octave_time time_checked (void) const { return t_checked; } |
|
61 |
|
62 bool is_system_fcn_file (void) const { return system_fcn_file; } |
|
63 |
|
64 bool is_builtin_function (void) const { return false; } |
|
65 |
|
66 bool is_dld_function (void) const { return true; } |
|
67 |
|
68 private: |
|
69 |
|
70 octave_shlib sh_lib; |
|
71 |
|
72 // The time the file was last checked to see if it needs to be |
|
73 // parsed again. |
|
74 mutable octave_time t_checked; |
|
75 |
|
76 // True if this function came from a file that is considered to be a |
|
77 // system function. This affects whether we check the time stamp |
|
78 // on the file to see if it has changed. |
|
79 bool system_fcn_file; |
|
80 |
4645
|
81 // No copying! |
|
82 |
|
83 octave_dld_function (const octave_dld_function& fn); |
|
84 |
|
85 octave_dld_function& operator = (const octave_dld_function& fn); |
|
86 |
4612
|
87 DECLARE_OCTAVE_ALLOCATOR |
3329
|
88 |
4612
|
89 DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA |
3329
|
90 }; |
|
91 |
|
92 #endif |
|
93 |
|
94 /* |
|
95 ;;; Local Variables: *** |
|
96 ;;; mode: C++ *** |
|
97 ;;; End: *** |
|
98 */ |