Mercurial > hg > octave-nkf
annotate libinterp/octave-value/ov-dld-fcn.cc @ 20657:c6224b4e7774
maint: Rename instances of LS_ASCII to LS_TEXT for clarity.
Octave's default save format is '-text' which is confusingly referred to in the
code base as LS_ASCII (looks like '-ascii' mode).
* ls-oct-text.cc, ls-oct-text.h: Renamed from ls-oct-ascii.[cc|h].
* ls-oct-ascii.cc, ls-oct-ascii.h: Removed files.
* libinterp/corefcn/module.mk: Add ls-oct-text.cc, ls-oct-text.h to build
system.
* load-save.h (load_save_format_type): Change first value of enum from
LS_ASCII to LS_TEXT.
* load-save.cc: Rename instances of LS_ASCII to LS_TEXT. Rename instances of
read_ascii_data to read_text_data.
* ov-base-diag.cc, ov-base-int.cc, ov-base-sparse.cc, ov-bool-mat.cc,
ov-bool.cc, ov-complex.cc, ov-cx-mat.cc ov-fcn-inline.cc, ov-float.cc,
ov-flt-complex.cc, ov-flt-cx-mat.cc, ov-flt-re-mat.cc, ov-int16.cc,
ov-int32.cc, ov-int64.cc, ov-int8.cc, ov-perm.cc, ov-re-mat.cc, ov-scalar.cc,
ov-str-mat.cc, ov-uint16.cc, ov-uint32.cc, ov-uint64.cc, ov-uint8.cc:
Use '#include "ls-oct-text.h"' rather than ls-oct-ascii.h.
ov-cell.cc, ov-class.cc, ov-fcn-handle.cc, ov-lazy-idx.cc, ov-struct.cc:
Use '#include "ls-oct-text.h"' rather than ls-oct-ascii.h.
Rename save_ascii_data to save_text_data, read_ascii_data to read_text_data.
author | Rik <rik@octave.org> |
---|---|
date | Mon, 17 Aug 2015 09:20:03 -0700 |
parents | 4197fc428c7d |
children |
rev | line source |
---|---|
3329 | 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 |
3329 | 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 #ifdef HAVE_CONFIG_H | |
24 #include <config.h> | |
25 #endif | |
26 | |
27 #include "oct-shlib.h" | |
28 | |
29 #include <defaults.h> | |
30 #include "dynamic-ld.h" | |
31 #include "error.h" | |
32 #include "oct-obj.h" | |
33 #include "ov-dld-fcn.h" | |
34 #include "ov.h" | |
35 | |
36 | |
37 DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (octave_dld_function, | |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10184
diff
changeset
|
38 "dynamically-linked function", |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10184
diff
changeset
|
39 "dynamically-linked function"); |
3329 | 40 |
41 | |
42 octave_dld_function::octave_dld_function | |
43 (octave_builtin::fcn ff, const octave_shlib& shl, | |
3523 | 44 const std::string& nm, const std::string& ds) |
3329 | 45 : octave_builtin (ff, nm, ds), sh_lib (shl) |
46 { | |
47 mark_fcn_file_up_to_date (time_parsed ()); | |
48 | |
3523 | 49 std::string file_name = fcn_file_name (); |
3329 | 50 |
51 system_fcn_file | |
52 = (! file_name.empty () | |
5397 | 53 && Voct_file_dir == file_name.substr (0, Voct_file_dir.length ())); |
3329 | 54 } |
55 | |
56 octave_dld_function::~octave_dld_function (void) | |
57 { | |
7872 | 58 octave_dynamic_loader::remove_oct (my_name, sh_lib); |
3329 | 59 } |
60 | |
3536 | 61 std::string |
3329 | 62 octave_dld_function::fcn_file_name (void) const |
63 { | |
64 return sh_lib.file_name (); | |
65 } | |
66 | |
67 octave_time | |
68 octave_dld_function::time_parsed (void) const | |
69 { | |
70 return sh_lib.time_loaded (); | |
71 } | |
72 | |
7349 | 73 // Note: this wrapper around the octave_dld_function constructor is |
74 // necessary to work around a MSVC limitation handling in | |
75 // virtual destructors that prevents unloading a dynamic module | |
76 // before *all* objects (of class using a virtual dtor) have | |
77 // been fully deleted; indeed, MSVC attaches auto-generated code | |
78 // (scalar deleting destructor) to objects created in a dynamic | |
79 // module, and this code will be executed in the dynamic module | |
80 // context at object deletion; unloading the dynamic module | |
81 // before objects have been deleted will make the "delete" code | |
82 // of objects to point to an invalid code segment. | |
83 | |
84 octave_dld_function* | |
85 octave_dld_function::create (octave_builtin::fcn ff, const octave_shlib& shl, | |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10184
diff
changeset
|
86 const std::string& nm, const std::string& ds) |
7349 | 87 { |
88 return new octave_dld_function (ff, shl, nm, ds); | |
89 } |