GNU Octave  4.4.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
ov-dld-fcn.h
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 1996-2018 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
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11 
12 Octave is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16 
17 You should have received a copy of the GNU General Public License
18 along with Octave; see the file COPYING. If not, see
19 <https://www.gnu.org/licenses/>.
20 
21 */
22 
23 #if ! defined (octave_ov_dld_fcn_h)
24 #define octave_ov_dld_fcn_h 1
25 
26 #include "octave-config.h"
27 
28 #include <string>
29 
30 #include "oct-shlib.h"
31 
32 #include "ov-fcn.h"
33 #include "ov-builtin.h"
34 #include "ov-typeinfo.h"
35 
36 class octave_value;
37 class octave_value_list;
38 
39 // Dynamically-linked functions.
40 
41 class
42 OCTINTERP_API
44 {
45 public:
46 
48  : sh_lib (), t_checked (), system_fcn_file ()
49  { }
50 
52  const octave::dynamic_library& shl,
53  const std::string& nm = "",
54  const std::string& ds = "");
55 
57  const octave::dynamic_library& shl,
58  const std::string& nm = "",
59  const std::string& ds = "");
60 
61  // No copying!
62 
63  octave_dld_function (const octave_dld_function& fn) = delete;
64 
66 
67  ~octave_dld_function (void);
68 
69  void mark_fcn_file_up_to_date (const octave::sys::time& t) { t_checked = t; }
70 
71  std::string fcn_file_name (void) const;
72 
73  octave::sys::time time_parsed (void) const;
74 
75  octave::sys::time time_checked (void) const { return t_checked; }
76 
77  bool is_system_fcn_file (void) const { return system_fcn_file; }
78 
79  bool is_builtin_function (void) const { return false; }
80 
81  bool is_dld_function (void) const { return true; }
82 
83  static octave_dld_function * create (octave_builtin::fcn ff,
84  const octave::dynamic_library& shl,
85  const std::string& nm = "",
86  const std::string& ds = "");
87 
88  static octave_dld_function * create (octave_builtin::meth mm,
89  const octave::dynamic_library& shl,
90  const std::string& nm = "",
91  const std::string& ds = "");
92 
94  { return sh_lib; }
95 
96 private:
97 
99 
100  // The time the file was last checked to see if it needs to be
101  // parsed again.
103 
104  // True if this function came from a file that is considered to be a
105  // system function. This affects whether we check the time stamp
106  // on the file to see if it has changed.
108 
110 };
111 
112 #endif
bool is_dld_function(void) const
Definition: ov-dld-fcn.h:81
octave_value_list(* fcn)(const octave_value_list &, int)
Definition: ov-builtin.h:60
OCTAVE_EXPORT octave_value_list return the number of command line arguments passed to Octave If called with the optional argument the function t
Definition: ov-usr-fcn.cc:997
octave::sys::time t_checked
Definition: ov-dld-fcn.h:102
#define DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA
Definition: ov-base.h:158
OCTAVE_EXPORT octave_value_list isdir nd deftypefn *std::string nm
Definition: utils.cc:975
octave::sys::time time_checked(void) const
Definition: ov-dld-fcn.h:75
void mark_fcn_file_up_to_date(const octave::sys::time &t)
Definition: ov-dld-fcn.h:69
octave_dld_function(void)
Definition: ov-dld-fcn.h:47
octave_value_list(* meth)(octave::interpreter &, const octave_value_list &, int)
Definition: ov-builtin.h:57
bool is_builtin_function(void) const
Definition: ov-dld-fcn.h:79
octave::dynamic_library get_shlib(void) const
Definition: ov-dld-fcn.h:93
bool is_system_fcn_file(void) const
Definition: ov-dld-fcn.h:77
If this string is the system will ring the terminal sometimes it is useful to be able to print the original representation of the string
Definition: utils.cc:888
octave::dynamic_library sh_lib
Definition: ov-dld-fcn.h:98
octave_value_list & operator=(const octave_value_list &obj)
Definition: ovl.h:75