GNU Octave  9.1.0
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-2024 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_dld_fcn_h)
27 #define octave_ov_dld_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 
39 class octave_value;
40 class octave_value_list;
41 
42 // Dynamically-linked functions.
43 
44 class
45 OCTINTERP_API
47 {
48 public:
49 
51  : m_sh_lib (), m_time_checked (), m_system_fcn_file ()
52  { }
53 
55  const octave::dynamic_library& shl,
56  const std::string& nm = "",
57  const std::string& ds = "");
58 
60  const octave::dynamic_library& shl,
61  const std::string& nm = "",
62  const std::string& ds = "");
63 
64  OCTAVE_DISABLE_COPY_MOVE (octave_dld_function)
65 
67 
68  void mark_fcn_file_up_to_date (const octave::sys::time& t)
69  { m_time_checked = t; }
70 
71  std::string fcn_file_name () const;
72 
73  octave::sys::time time_parsed () const;
74 
75  octave::sys::time time_checked () const { return m_time_checked; }
76 
77  bool is_system_fcn_file () const { return m_system_fcn_file; }
78 
79  bool is_builtin_function () const { return false; }
80 
81  bool is_dld_function () 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 
93  octave::dynamic_library get_shlib () const
94  { return m_sh_lib; }
95 
96 private:
97 
98  octave::dynamic_library m_sh_lib;
99 
100  // The time the file was last checked to see if it needs to be
101  // parsed again.
102  octave::sys::time m_time_checked;
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.
107  bool m_system_fcn_file;
108 
110 };
111 
112 #endif
octave_value_list(* fcn)(const octave_value_list &, int)
Definition: ov-builtin.h:63
octave_value_list(* meth)(octave::interpreter &, const octave_value_list &, int)
Definition: ov-builtin.h:60
octave::dynamic_library get_shlib() const
Definition: ov-dld-fcn.h:93
octave::sys::time time_checked() const
Definition: ov-dld-fcn.h:75
bool is_system_fcn_file() const
Definition: ov-dld-fcn.h:77
void mark_fcn_file_up_to_date(const octave::sys::time &t)
Definition: ov-dld-fcn.h:68
bool is_dld_function() const
Definition: ov-dld-fcn.h:81
bool is_builtin_function() const
Definition: ov-dld-fcn.h:79
#define DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA
Definition: ov-base.h:181