1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
|
////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 1993-2021 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Octave is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Octave; see the file COPYING. If not, see
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////
#if defined (HAVE_CONFIG_H)
# include "config.h"
#endif
#include "file-ops.h"
#include "file-stat.h"
#include "oct-env.h"
#include "defun.h"
#include "fcn-info.h"
#include "interpreter-private.h"
#include "interpreter.h"
#include "load-path.h"
#include "ov-fcn.h"
#include "ov-usr-fcn.h"
#include "parse.h"
#include "symscope.h"
#include "symtab.h"
#include "utils.h"
// Should Octave always check to see if function files have changed
// since they were last compiled?
static int Vignore_function_time_stamp = 1;
namespace octave
{
octave_value
fcn_info::fcn_info_rep::load_private_function (const std::string& dir_name)
{
octave_value retval;
load_path& lp
= __get_load_path__ ("fcn_info::fcn_info_rep::load_private_function");
std::string file_name = lp.find_private_fcn (dir_name, name);
if (file_name.empty ())
return retval;
octave_value ov_fcn = load_fcn_from_file (file_name, dir_name);
if (ov_fcn.is_undefined ())
return retval;
octave_function *tmpfcn = ov_fcn.function_value ();
if (! tmpfcn)
return retval;
std::string class_name;
size_t pos = dir_name.find_last_of (sys::file_ops::dir_sep_chars ());
if (pos != std::string::npos)
{
std::string tmp = dir_name.substr (pos+1);
if (tmp[0] == '@')
class_name = tmp.substr (1);
}
tmpfcn->mark_as_private_function (class_name);
private_functions[octave::sys::canonicalize_file_name (dir_name)] = ov_fcn;
return ov_fcn;
}
octave_value
fcn_info::fcn_info_rep::load_class_constructor (void)
{
octave_value retval;
std::string dir_name;
load_path& lp
= __get_load_path__ ("fcn_info::fcn_info_rep::load_class_constructor");
std::string file_name = lp.find_method (name, name, dir_name, package_name);
if (! file_name.empty ())
{
octave_value ov_fcn
= load_fcn_from_file (file_name, dir_name, name,
package_name);
if (ov_fcn.is_defined ())
{
// Note: ov_fcn may be an octave_classdef_meta object instead
// of the actual constructor function.
retval = ov_fcn;
class_constructors[name] = retval;
class_methods[name] = retval;
}
}
else
{
// Classdef constructors can be defined anywhere in the path, not
// necessarily in @-folders. Look for a normal function and load it.
// If the loaded function is a classdef constructor, store it as such
// and restore function_on_path to its previous value.
octave_value old_function_on_path = function_on_path;
octave_value maybe_cdef_ctor = find_user_function ();
if (maybe_cdef_ctor.is_defined ())
{
octave_function *fcn = maybe_cdef_ctor.function_value (true);
if (fcn && fcn->is_classdef_constructor ())
{
retval = maybe_cdef_ctor;
class_constructors[name] = retval;
class_methods[name] = retval;
function_on_path = old_function_on_path;
}
}
}
return retval;
}
octave_value
fcn_info::fcn_info_rep::load_class_method (const std::string& dispatch_type)
{
octave_value retval;
if (full_name () == dispatch_type)
retval = load_class_constructor ();
else
{
cdef_manager& cdm
= __get_cdef_manager__ ("fcn_info::fcn_info_rep::load_class_method");
retval = cdm.find_method_symbol (name, dispatch_type);
if (! retval.is_defined ())
{
std::string dir_name;
load_path& lp = __get_load_path__ ("fcn_info::fcn_info_rep::load_class_method");
std::string file_name = lp.find_method (dispatch_type, name,
dir_name);
if (! file_name.empty ())
{
octave_value ov_fcn
= load_fcn_from_file (file_name, dir_name,
dispatch_type);
if (ov_fcn.is_defined ())
{
octave_function *tmpfcn = ov_fcn.function_value ();
if (tmpfcn && tmpfcn->is_class_method (dispatch_type))
{
retval = ov_fcn;
class_methods[dispatch_type] = retval;
}
}
}
if (retval.is_undefined ())
{
// Search parent classes
symbol_table& symtab
= __get_symbol_table__ ("fcn_info::fcn_info_rep::load_class_method");
const std::list<std::string>& plist
= symtab.parent_classes (dispatch_type);
auto it = plist.begin ();
while (it != plist.end ())
{
retval = find_method (*it);
if (retval.is_defined ())
{
class_methods[dispatch_type] = retval;
break;
}
it++;
}
}
if (retval.is_undefined ())
{
// Search for built-in functions that are declared to
// handle specific types.
if (built_in_function.is_defined ())
{
octave_function *fcn = built_in_function.function_value ();
if (fcn && fcn->handles_dispatch_class (dispatch_type))
{
retval = built_in_function;
class_methods[dispatch_type] = retval;
}
}
}
}
}
return retval;
}
// :-) JWE, can you parse this? Returns a 2D array with second dimension equal
// to btyp_num_types (static constant). Only the leftmost dimension can be
// variable in C/C++. Typedefs are boring.
static builtin_type_t (*build_sup_table (void))[btyp_num_types]
{
static builtin_type_t sup_table[btyp_num_types][btyp_num_types];
for (int i = 0; i < btyp_num_types; i++)
for (int j = 0; j < btyp_num_types; j++)
{
builtin_type_t ityp = static_cast<builtin_type_t> (i);
builtin_type_t jtyp = static_cast<builtin_type_t> (j);
// FIXME: Is this really right?
bool use_j
= (jtyp == btyp_func_handle || ityp == btyp_bool
|| (btyp_isarray (ityp)
&& (! btyp_isarray (jtyp)
|| (btyp_isinteger (jtyp) && ! btyp_isinteger (ityp))
|| ((ityp == btyp_double || ityp == btyp_complex
|| ityp == btyp_char)
&& (jtyp == btyp_float
|| jtyp == btyp_float_complex)))));
sup_table[i][j] = (use_j ? jtyp : ityp);
}
return sup_table;
}
std::string
get_dispatch_type (const octave_value_list& args,
builtin_type_t& builtin_type)
{
static builtin_type_t (*sup_table)[btyp_num_types] = build_sup_table ();
std::string dispatch_type;
int n = args.length ();
if (n > 0)
{
int i = 0;
builtin_type = args(0).builtin_type ();
if (builtin_type != btyp_unknown)
{
for (i = 1; i < n; i++)
{
builtin_type_t bti = args(i).builtin_type ();
if (bti != btyp_unknown)
builtin_type = sup_table[builtin_type][bti];
else
{
builtin_type = btyp_unknown;
break;
}
}
}
if (builtin_type == btyp_unknown)
{
// There's a non-builtin class in the argument list.
dispatch_type = args(i).class_name ();
symbol_table& symtab = __get_symbol_table__ ("get_dispatch_type");
for (int j = i+1; j < n; j++)
{
octave_value arg = args(j);
if (arg.builtin_type () == btyp_unknown)
{
std::string cname = arg.class_name ();
// Only switch to type of ARG if it is marked superior
// to the current DISPATCH_TYPE.
if (! symtab.is_superiorto (dispatch_type, cname)
&& symtab.is_superiorto (cname, dispatch_type))
dispatch_type = cname;
}
}
}
else
dispatch_type = btyp_class_name[builtin_type];
}
else
builtin_type = btyp_unknown;
return dispatch_type;
}
std::string
get_dispatch_type (const octave_value_list& args)
{
builtin_type_t builtin_type;
return get_dispatch_type (args, builtin_type);
}
// Find function definition according to the following precedence list:
//
// nested functions (and subfunctions)
// local functions in the current file
// private function
// class method
// class constructor
// command-line function
// autoload function
// functions on the load_path (current directory is always first)
// package (FIXME: does this belong here?)
// built-in function
octave_value
fcn_info::fcn_info_rep::find (const symbol_scope& scope,
const octave_value_list& args)
{
symbol_scope search_scope
= (scope
? scope : __get_current_scope__("fcn_info::fcn_info_rep::find"));
octave_value retval = xfind (search_scope, args);
if (retval.is_undefined ())
{
// It is possible that the user created a file on the fly since
// the last prompt or chdir, so try updating the load path and
// searching again.
load_path& lp = __get_load_path__ ("fcn_info::fcn_info_rep::find");
lp.update ();
retval = xfind (search_scope, args);
}
return retval;
}
static void
split_name_with_package (const std::string& name, std::string& fname,
std::string& pname)
{
size_t pos = name.rfind ('.');
fname.clear ();
pname.clear ();
if (pos != std::string::npos)
{
fname = name.substr (pos + 1);
pname = name.substr (0, pos);
}
else
fname = name;
}
// Check the load path to see if file that defined this is still
// visible. If the file is no longer visible, then erase the
// definition and move on. If the file is visible, then we also
// need to check to see whether the file has changed since the
// function was loaded/parsed. However, this check should only
// happen once per prompt (for files found from relative path
// elements, we also check if the working directory has changed
// since the last time the function was loaded/parsed).
//
// FIXME: perhaps this should be done for all loaded functions when
// the prompt is printed or the directory has changed, and then we
// would not check for it when finding symbol definitions.
static inline bool
load_out_of_date_fcn (const std::string& ff, const std::string& dir_name,
octave_value& function,
const std::string& dispatch_type = "",
const std::string& package_name = "")
{
bool retval = false;
octave_value ov_fcn
= load_fcn_from_file (ff, dir_name, dispatch_type,
package_name);
if (ov_fcn.is_defined ())
{
retval = true;
function = ov_fcn;
}
else
function = octave_value ();
return retval;
}
static bool
out_of_date_check (octave_value& function,
const std::string& dispatch_type = "",
bool check_relative = true)
{
bool retval = false;
octave_function *fcn = function.function_value (true);
if (fcn)
{
// FIXME: we need to handle subfunctions properly here.
if (! (fcn->is_subfunction () || fcn->is_anonymous_function ()))
{
std::string ff = fcn->fcn_file_name ();
if (! ff.empty ())
{
sys::time tc = fcn->time_checked ();
bool relative = check_relative && fcn->is_relative ();
if (tc <= Vlast_prompt_time
|| (relative && tc < Vlast_chdir_time))
{
bool clear_breakpoints = false;
std::string nm = fcn->name ();
std::string pack = fcn->package_name ();
std::string canonical_nm = fcn->canonical_name ();
bool is_same_file = false;
std::string file;
std::string dir_name;
if (check_relative)
{
int nm_len = nm.length ();
if (sys::env::absolute_pathname (nm)
&& ((nm_len > 4
&& (nm.substr (nm_len-4) == ".oct"
|| nm.substr (nm_len-4) == ".mex"))
|| (nm_len > 2
&& nm.substr (nm_len-2) == ".m")))
file = nm;
else
{
// We don't want to make this an absolute name,
// because load_fcn_file looks at the name to
// decide whether it came from a relative lookup.
if (! dispatch_type.empty ())
{
load_path& lp
= __get_load_path__ ("out_of_date_check");
file = lp.find_method (dispatch_type, nm,
dir_name, pack);
if (file.empty ())
{
std::string s_name;
std::string s_pack;
symbol_table& symtab
= __get_symbol_table__ ("out_of_date_check");
const std::list<std::string>& plist
= symtab.parent_classes (dispatch_type);
std::list<std::string>::const_iterator it
= plist.begin ();
while (it != plist.end ())
{
split_name_with_package (*it, s_name,
s_pack);
file = lp.find_method (*it, nm, dir_name,
s_pack);
if (! file.empty ())
{
pack = s_pack;
break;
}
it++;
}
}
}
// Maybe it's an autoload?
if (file.empty ())
{
tree_evaluator& tw
= __get_evaluator__ ("out_of_data_check");
file = tw.lookup_autoload (nm);
}
if (file.empty ())
{
load_path& lp
= __get_load_path__ ("out_of_date_check");
file = lp.find_fcn (nm, dir_name, pack);
}
}
if (! file.empty ())
is_same_file = same_file (file, ff);
}
else
{
is_same_file = true;
file = ff;
}
if (file.empty ())
{
// Can't see this function from current
// directory, so we should clear it.
function = octave_value ();
clear_breakpoints = true;
}
else if (is_same_file)
{
// Same file. If it is out of date, then reload it.
sys::time ottp = fcn->time_parsed ();
time_t tp = ottp.unix_time ();
fcn->mark_fcn_file_up_to_date (sys::time ());
if (! (Vignore_function_time_stamp == 2
|| (Vignore_function_time_stamp
&& fcn->is_system_fcn_file ())))
{
sys::file_stat fs (ff);
if (fs)
{
if (fs.is_newer (tp))
{
retval = load_out_of_date_fcn (ff, dir_name,
function,
dispatch_type,
pack);
clear_breakpoints = true;
}
}
else
{
function = octave_value ();
clear_breakpoints = true;
}
}
}
else
{
// Not the same file, so load the new file in
// place of the old.
retval = load_out_of_date_fcn (file, dir_name, function,
dispatch_type, pack);
clear_breakpoints = true;
}
// If the function has been replaced then clear any
// breakpoints associated with it
if (clear_breakpoints)
{
bp_table& bptab
= __get_bp_table__ ("out_of_date_check");
bptab.remove_all_breakpoints_in_file (canonical_nm,
true);
}
}
}
}
}
return retval;
}
octave_value
fcn_info::fcn_info_rep::find_scoped_function (const symbol_scope& search_scope)
{
if (search_scope)
{
// Subfunction.
octave_value fcn = search_scope.find_subfunction (name);
if (fcn.is_defined ())
return fcn;
// Local function.
std::string fcn_file = search_scope.fcn_file_name ();
// For anonymous functions we look at the parent scope so that if
// they were defined within class methods and use local functions
// (helper functions) we can still use those anonymous functions
if (! fcn_file.empty ())
{
auto r = local_functions.find (fcn_file);
if (r != local_functions.end ())
{
// We shouldn't need an out-of-date check here since
// local functions may ultimately be called only from
// a primary function or method defined in the same
// file.
return r->second;
}
}
// Private function.
return find_private_function (search_scope.dir_name ());
}
return octave_value ();
}
octave_value
fcn_info::fcn_info_rep::find_private_function (const std::string& dir_name)
{
if (! dir_name.empty ())
{
auto q = private_functions.find (dir_name);
if (q == private_functions.end ())
{
octave_value val = load_private_function (dir_name);
if (val.is_defined ())
return val;
}
else
{
octave_value& fval = q->second;
if (fval.is_defined ())
out_of_date_check (fval, "", false);
if (fval.is_defined ())
return fval;
else
{
octave_value val = load_private_function (dir_name);
if (val.is_defined ())
return val;
}
}
}
return octave_value ();
}
octave_value
fcn_info::fcn_info_rep::find_method (const octave_value_list& args)
{
if (! args.empty ())
{
std::string dispatch_type = get_dispatch_type (args);
return find_method (dispatch_type);
}
return octave_value ();
}
octave_value
fcn_info::fcn_info_rep::xfind (const symbol_scope& search_scope,
const octave_value_list& args)
{
// Subfunction, local function, or private function.
octave_value fcn;
fcn = find_scoped_function (search_scope);
if (fcn.is_defined ())
return fcn;
// Class methods.
fcn = find_method (args);
if (fcn.is_defined ())
return fcn;
// Class constructors. The class name and function name are the same.
auto q = class_constructors.find (name);
if (q == class_constructors.end ())
{
octave_value val = load_class_constructor ();
if (val.is_defined ())
return val;
}
else
{
octave_value& fval = q->second;
if (fval.is_defined ())
out_of_date_check (fval, name);
if (fval.is_defined ())
return fval;
else
{
octave_value val = load_class_constructor ();
if (val.is_defined ())
return val;
}
}
// Command-line function.
if (cmdline_function.is_defined ())
return cmdline_function;
// Autoload?
fcn = find_autoload ();
if (fcn.is_defined ())
return fcn;
// Function on the path.
fcn = find_user_function ();
if (fcn.is_defined ())
return fcn;
// Package
fcn = find_package ();
if (fcn.is_defined ())
return fcn;
// Built-in function (might be undefined).
return built_in_function;
}
// Find the definition of NAME according to the following precedence
// list:
//
// built-in function
// function on the path
// autoload function
// command-line function
// private function
// subfunction
// This function is used to implement the "builtin" function, which
// searches for "built-in" functions. In Matlab, "builtin" only
// returns functions that are actually built-in to the interpreter.
// But since the list of built-in functions is different in Octave and
// Matlab, we also search up the precedence list until we find
// something that matches. Note that we are only searching by name,
// so class methods and constructors are skipped.
octave_value
fcn_info::fcn_info_rep::builtin_find (const symbol_scope& scope)
{
symbol_scope search_scope
= (scope
? scope : __get_current_scope__("fcn_info::fcn_info_rep::find"));
octave_value retval = x_builtin_find (search_scope);
if (! retval.is_defined ())
{
// It is possible that the user created a file on the fly since
// the last prompt or chdir, so try updating the load path and
// searching again.
load_path& lp = __get_load_path__ ("fcn_info::fcn_info_rep::builtin_find");
lp.update ();
retval = x_builtin_find (search_scope);
}
return retval;
}
octave_value
fcn_info::fcn_info_rep::x_builtin_find (const symbol_scope& search_scope)
{
// Built-in function.
if (built_in_function.is_defined ())
return built_in_function;
// Function on the path.
octave_value fcn = find_user_function ();
if (fcn.is_defined ())
return fcn;
// Autoload?
fcn = find_autoload ();
if (fcn.is_defined ())
return fcn;
// Command-line function.
if (cmdline_function.is_defined ())
return cmdline_function;
// Private function, local function, or subfunction.
if (search_scope)
{
// Private function.
std::string dir_name = search_scope.dir_name ();
if (! dir_name.empty ())
{
auto q = private_functions.find (dir_name);
if (q == private_functions.end ())
{
octave_value val = load_private_function (dir_name);
if (val.is_defined ())
return val;
}
else
{
octave_value& fval = q->second;
if (fval.is_defined ())
out_of_date_check (fval);
if (fval.is_defined ())
return fval;
else
{
octave_value val = load_private_function (dir_name);
if (val.is_defined ())
return val;
}
}
}
// Local function.
std::string fcn_file = search_scope.fcn_file_name ();
if (! fcn_file.empty ())
{
auto r = local_functions.find (fcn_file);
if (r != local_functions.end ())
{
// We shouldn't need an out-of-date check here since local
// functions may ultimately be called only from a primary
// function or method defined in the same file.
return r->second;
}
}
// Subfunction. I think it only makes sense to check for
// subfunctions if we are currently executing a function defined
// from a .m file.
octave_value val = search_scope.find_subfunction (name);
if (val.is_defined ())
return val;
}
return octave_value ();
}
octave_value
fcn_info::fcn_info_rep::find_method (const std::string& dispatch_type)
{
octave_value retval;
auto q = class_methods.find (dispatch_type);
if (q == class_methods.end ())
{
octave_value val = load_class_method (dispatch_type);
if (val.is_defined ())
return val;
}
else
{
octave_value& fval = q->second;
if (fval.is_defined ())
out_of_date_check (fval, dispatch_type);
if (fval.is_defined ())
return fval;
else
{
octave_value val = load_class_method (dispatch_type);
if (val.is_defined ())
return val;
}
}
return retval;
}
octave_value
fcn_info::fcn_info_rep::find_autoload (void)
{
// Autoloaded function.
if (autoload_function.is_defined ())
out_of_date_check (autoload_function);
if (! autoload_function.is_defined ())
{
tree_evaluator& tw
= __get_evaluator__ ("fcn_info::fcn_info_rep::x_builtin_find");
std::string file_name = tw.lookup_autoload (name);
if (! file_name.empty ())
{
size_t pos = file_name.find_last_of (sys::file_ops::dir_sep_chars ());
std::string dir_name = file_name.substr (0, pos);
octave_value ov_fcn
= load_fcn_from_file (file_name, dir_name, "", "", name, true);
if (ov_fcn.is_defined ())
autoload_function = octave_value (ov_fcn);
}
}
return autoload_function;
}
octave_value
fcn_info::fcn_info_rep::find_user_function (void)
{
// Function on the path.
if (function_on_path.is_defined ())
out_of_date_check (function_on_path);
if (function_on_path.is_undefined ())
{
std::string dir_name;
load_path& lp
= __get_load_path__ ("fcn_info::fcn_info_rep::find_user_function");
std::string file_name = lp.find_fcn (name, dir_name, package_name);
if (! file_name.empty ())
{
octave_value ov_fcn
= load_fcn_from_file (file_name, dir_name, "", package_name);
if (ov_fcn.is_defined ())
function_on_path = ov_fcn;
}
}
return function_on_path;
}
octave_value
fcn_info::fcn_info_rep::find_package (void)
{
// FIXME: implement correct way to check out of date package
//if (package.is_defined ())
// out_of_date_check (package);
if (package.is_undefined ())
{
cdef_manager& cdm
= __get_cdef_manager__ ("fcn_info::fcn_info_rep::find_package");
package = cdm.find_package_symbol (full_name ());
}
return package;
}
void
fcn_info::fcn_info_rep::install_built_in_dispatch (const std::string& klass)
{
if (built_in_function.is_defined ())
{
octave_function *fcn = built_in_function.function_value ();
if (fcn)
{
if (fcn->handles_dispatch_class (klass))
warning ("install_built_in_dispatch: '%s' already defined for class '%s'",
name.c_str (), klass.c_str ());
else
fcn->push_dispatch_class (klass);
}
}
else
error ("install_built_in_dispatch: '%s' is not a built-in function",
name.c_str ());
}
octave_value
fcn_info::fcn_info_rep::dump (void) const
{
std::map<std::string, octave_value> m
= {{ "name", full_name () },
{ "package", package.dump () },
{ "local_functions", dump_function_map (local_functions) },
{ "private_functions", dump_function_map (private_functions) },
{ "class_methods", dump_function_map (class_methods) },
{ "class_constructors", dump_function_map (class_constructors) },
{ "cmdline_function", cmdline_function.dump () },
{ "autoload_function", autoload_function.dump () },
{ "function_on_path", function_on_path.dump () },
{ "built_in_function", built_in_function.dump () }};
return octave_value (m);
}
octave_value
dump_function_map (const std::map<std::string, octave_value>& fcn_map)
{
if (fcn_map.empty ())
return octave_value (Matrix ());
std::map<std::string, octave_value> info_map;
for (const auto& nm_fcn : fcn_map)
{
std::string nm = nm_fcn.first;
const octave_value& fcn = nm_fcn.second;
info_map[nm] = fcn.dump ();
}
return octave_value (info_map);
}
}
DEFUN (ignore_function_time_stamp, args, nargout,
doc: /* -*- texinfo -*-
@deftypefn {} {@var{val} =} ignore_function_time_stamp ()
@deftypefnx {} {@var{old_val} =} ignore_function_time_stamp (@var{new_val})
Query or set the internal variable that controls whether Octave checks
the time stamp on files each time it looks up functions defined in
function files.
If the internal variable is set to @qcode{"system"}, Octave will not
automatically recompile function files in subdirectories of
@file{@var{octave-home}/share/@var{version}/m} if they have changed since
they were last compiled, but will recompile other function files in the
search path if they change.
If set to @qcode{"all"}, Octave will not recompile any function files
unless their definitions are removed with @code{clear}.
If set to @qcode{"none"}, Octave will always check time stamps on files
to determine whether functions defined in function files need to
recompiled.
@end deftypefn */)
{
int nargin = args.length ();
if (nargin > 1)
print_usage ();
octave_value retval;
if (nargout > 0 || nargin == 0)
{
switch (Vignore_function_time_stamp)
{
case 1:
retval = "system";
break;
case 2:
retval = "all";
break;
default:
retval = "none";
break;
}
}
if (nargin == 1)
{
std::string sval = args(0).xstring_value ("ignore_function_time_stamp: first argument must be a string");
if (sval == "all")
Vignore_function_time_stamp = 2;
else if (sval == "system")
Vignore_function_time_stamp = 1;
else if (sval == "none")
Vignore_function_time_stamp = 0;
else
error (R"(ignore_function_time_stamp: argument must be one of "all", "system", or "none")");
}
return retval;
}
/*
%!shared old_state
%! old_state = ignore_function_time_stamp ();
%!test
%! state = ignore_function_time_stamp ("all");
%! assert (state, old_state);
%! assert (ignore_function_time_stamp (), "all");
%! state = ignore_function_time_stamp ("system");
%! assert (state, "all");
%! assert (ignore_function_time_stamp (), "system");
%! ignore_function_time_stamp (old_state);
## Test input validation
%!error (ignore_function_time_stamp ("all", "all"))
%!error (ignore_function_time_stamp ("UNKNOWN_VALUE"))
%!error (ignore_function_time_stamp (42))
*/
|