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 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418
|
////////////////////////////////////////////////////////////////////////
//
// 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 <cmath>
#include <cstddef>
#include <iostream>
#include <string>
#if defined (HAVE_TERMIOS_H)
# include <termios.h>
#elif defined (HAVE_TERMIO_H)
# include <termio.h>
#elif defined (HAVE_SGTTY_H)
# include <sgtty.h>
#endif
#if defined (HAVE_CONIO_H)
# include <conio.h>
#endif
#if defined (HAVE_SYS_IOCTL_H)
# include <sys/ioctl.h>
#endif
#if defined (HAVE_FLOATINGPOINT_H)
# include <floatingpoint.h>
#endif
#if defined (HAVE_IEEEFP_H)
# include <ieeefp.h>
#endif
#if defined (HAVE_OMP_H)
# include <omp.h>
#endif
#include "cmd-edit.h"
#include "file-ops.h"
#include "lo-mappers.h"
#include "lo-sysinfo.h"
#include "mach-info.h"
#include "oct-env.h"
#include "uniconv-wrappers.h"
#include "unistd-wrappers.h"
#include "builtin-defun-decls.h"
#include "Cell.h"
#include "defun.h"
#include "error.h"
#include "errwarn.h"
#include "input.h"
#include "interpreter-private.h"
#include "octave.h"
#include "ov.h"
#include "ovl.h"
#include "pager.h"
#include "parse.h"
#include "sighandlers.h"
#include "sysdep.h"
#include "interpreter.h"
#include "utils.h"
#include "file-stat.h"
#if ! defined (STDIN_FILENO)
# define STDIN_FILENO 1
#endif
#if defined (__MINGW32__) || defined (_MSC_VER)
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <tlhelp32.h>
#include <shellapi.h>
#endif
namespace octave
{
#if defined (__386BSD__) || defined (__FreeBSD__) || defined (__NetBSD__)
static void
BSD_init (void)
{
# if defined (HAVE_FLOATINGPOINT_H)
// Disable trapping on common exceptions.
# if ! defined (FP_X_DNML)
# define FP_X_DNML 0
# endif
fpsetmask (~(FP_X_OFL|FP_X_INV|FP_X_DZ|FP_X_DNML|FP_X_UFL|FP_X_IMP));
# endif
}
#endif
#if defined (__MINGW32__) || defined (_MSC_VER)
static void
w32_set_octave_home (void)
{
std::string bin_dir;
HANDLE h = CreateToolhelp32Snapshot (TH32CS_SNAPMODULE
#if defined (TH32CS_SNAPMODULE32)
| TH32CS_SNAPMODULE32
#endif
, 0);
if (h != INVALID_HANDLE_VALUE)
{
MODULEENTRY32W mod_info;
ZeroMemory (&mod_info, sizeof (mod_info));
mod_info.dwSize = sizeof (mod_info);
if (Module32FirstW (h, &mod_info))
{
do
{
std::string mod_name (sys::u8_from_wstring (mod_info.szModule));
if (mod_name.find ("octinterp") != std::string::npos)
{
bin_dir = sys::u8_from_wstring (mod_info.szExePath);
if (! bin_dir.empty () && bin_dir.back () != '\\')
bin_dir.push_back ('\\');
break;
}
}
while (Module32NextW (h, &mod_info));
}
CloseHandle (h);
}
if (! bin_dir.empty ())
{
size_t pos = bin_dir.rfind (R"(\bin\)");
if (pos != std::string::npos)
sys::env::putenv ("OCTAVE_HOME", bin_dir.substr (0, pos));
}
}
static void
w32_init (void)
{
w32_set_octave_home ();
command_editor::prefer_env_winsize (true);
}
#endif
// Set app id if we have the SetCurrentProcessExplicitAppUserModelID
// available (>= Win7). FIXME: Could we check for existence of this
// function in the configure script instead of dynamically loading
// shell32.dll?
void set_application_id (void)
{
#if defined (__MINGW32__) || defined (_MSC_VER)
typedef HRESULT (WINAPI *SETCURRENTAPPID)(PCWSTR AppID);
HMODULE hShell = LoadLibrary ("shell32.dll");
if (hShell)
{
SETCURRENTAPPID pfnSetCurrentProcessExplicitAppUserModelID
= reinterpret_cast<SETCURRENTAPPID> (GetProcAddress (hShell, "SetCurrentProcessExplicitAppUserModelID"));
if (pfnSetCurrentProcessExplicitAppUserModelID)
pfnSetCurrentProcessExplicitAppUserModelID (L"gnu.octave." VERSION);
FreeLibrary (hShell);
}
#endif
}
}
DEFUN (__open_with_system_app__, args, ,
doc: /* -*- texinfo -*-
@deftypefn {} {} __open_with_system_app__ (@var{file})
Internal function. Returns 1 on successful system call and 0 otherwise.
@end deftypefn */)
{
if (args.length () != 1)
print_usage ();
std::string file = args(0).xstring_value ("__open_with_system_app__: argument must be a filename");
#if defined (OCTAVE_USE_WINDOWS_API)
std::wstring wfile = octave::sys::u8_to_wstring (file);
HINSTANCE status = ShellExecuteW (0, 0, wfile.c_str (), 0, 0, SW_SHOWNORMAL);
// ShellExecute returns a value greater than 32 if successful.
return octave_value (reinterpret_cast<ptrdiff_t> (status) > 32);
#else
// Quote file path
file = "\"" + file + "\"";
# if defined (__APPLE__)
# define FSYSTEM_OPEN_STR "open "
# else
# define FSYSTEM_OPEN_STR "xdg-open "
# endif
octave_value_list tmp
= Fsystem (ovl (FSYSTEM_OPEN_STR + file + " 2> /dev/null",
false, "async"),
1);
# undef FSYSTEM_OPEN_STR
// Asynchronous Fsystem calls return the new child process identifier,
// which must be greater than 1 if successful.
return octave_value (tmp(0).double_value () > 1);
#endif
}
DEFUN (__is_elevated_process__, args, ,
doc: /* -*- texinfo -*-
@deftypefn {} {@var{retval} =} __is_elevated_process__ ()
Check if current process has elevated rights.
On Windows, return true if the current process has elevated right. Otherwise,
return false.
On non-Windows platforms, this function fails with an error.
@end deftypefn */)
{
#if defined (OCTAVE_USE_WINDOWS_API)
if (args.length () != 0)
print_usage ();
bool retval = false;
HANDLE h_token = nullptr;
if (OpenProcessToken (GetCurrentProcess (), TOKEN_QUERY, &h_token))
{
TOKEN_ELEVATION elevation;
DWORD return_length = sizeof (TOKEN_ELEVATION);
if (GetTokenInformation (h_token, TokenElevation, &elevation,
sizeof (elevation), &return_length))
retval = elevation.TokenIsElevated;
}
if (h_token)
CloseHandle (h_token);
return ovl (retval);
#else
octave_unused_parameter (args);
error ("__is_elevated_process__: "
"Function is only supported on Windows platforms.");
#endif
}
namespace octave
{
#if defined (__MINGW32__)
static void
MINGW_init (void)
{
w32_init ();
}
#endif
#if defined (_MSC_VER)
static void
MSVC_init (void)
{
w32_init ();
}
#endif
// Return TRUE if FILE1 and FILE2 refer to the same (physical) file.
bool same_file_internal (const std::string& file1, const std::string& file2)
{
#if defined (OCTAVE_USE_WINDOWS_API)
// FIXME: When Octave switches to C++17, consider replacing this function
// by https://en.cppreference.com/w/cpp/filesystem/equivalent.
bool retval = false;
std::wstring file1w = sys::u8_to_wstring (file1);
std::wstring file2w = sys::u8_to_wstring (file2);
const wchar_t *f1 = file1w.c_str ();
const wchar_t *f2 = file2w.c_str ();
bool f1_is_dir = GetFileAttributesW (f1) & FILE_ATTRIBUTE_DIRECTORY;
bool f2_is_dir = GetFileAttributesW (f2) & FILE_ATTRIBUTE_DIRECTORY;
// Windows native code
// Reference: http://msdn2.microsoft.com/en-us/library/aa363788.aspx
DWORD share = FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE;
HANDLE hfile1
= CreateFileW (f1, 0, share, 0, OPEN_EXISTING,
f1_is_dir ? FILE_FLAG_BACKUP_SEMANTICS : 0, 0);
if (hfile1 != INVALID_HANDLE_VALUE)
{
HANDLE hfile2
= CreateFileW (f2, 0, share, 0, OPEN_EXISTING,
f2_is_dir ? FILE_FLAG_BACKUP_SEMANTICS : 0, 0);
if (hfile2 != INVALID_HANDLE_VALUE)
{
BY_HANDLE_FILE_INFORMATION hfi1;
BY_HANDLE_FILE_INFORMATION hfi2;
if (GetFileInformationByHandle (hfile1, &hfi1)
&& GetFileInformationByHandle (hfile2, &hfi2))
{
retval = (hfi1.dwVolumeSerialNumber == hfi2.dwVolumeSerialNumber
&& hfi1.nFileIndexHigh == hfi2.nFileIndexHigh
&& hfi1.nFileIndexLow == hfi2.nFileIndexLow
&& hfi1.nFileSizeHigh == hfi2.nFileSizeHigh
&& hfi1.nFileSizeLow == hfi2.nFileSizeLow
&& hfi1.ftLastWriteTime.dwLowDateTime
== hfi2.ftLastWriteTime.dwLowDateTime
&& hfi1.ftLastWriteTime.dwHighDateTime
== hfi2.ftLastWriteTime.dwHighDateTime);
}
CloseHandle (hfile2);
}
CloseHandle (hfile1);
}
return retval;
#else
// POSIX Code
sys::file_stat fs_file1 (file1);
sys::file_stat fs_file2 (file2);
return (fs_file1 && fs_file2
&& fs_file1.ino () == fs_file2.ino ()
&& fs_file1.dev () == fs_file2.dev ());
#endif
}
// Return TRUE if NAME refers to an existing drive letter or UNC share
bool drive_or_unc_share (const std::string& name)
{
#if defined (OCTAVE_USE_WINDOWS_API)
size_t len = name.length ();
bool candidate = false;
if (len > 1 && isalpha(name[0]) && name[1]==':'
&& (len == 2 || (len == 3 && name[2] == '\\')))
candidate = true;
if (len > 4 && name[0] == '\\' && name[1] == '\\')
{
// It starts with two slashes. Find the next slash.
size_t next_slash = name.find ("\\", 3);
if (next_slash != std::string::npos && len > next_slash+1)
{
// Check if it ends with the share
size_t last_slash = name.find ("\\", next_slash+1);
if (last_slash == std::string::npos
|| (len > next_slash+2 && last_slash == len-1))
candidate = true;
}
}
if (candidate)
{
// Open a handle to the file.
std::wstring wname = sys::u8_to_wstring (name);
HANDLE h
= CreateFileW (wname.c_str (), FILE_READ_ATTRIBUTES,
FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
nullptr, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS,
nullptr);
if (h != INVALID_HANDLE_VALUE)
{
CloseHandle (h);
return true;
}
}
return false;
#else
octave_unused_parameter (name);
return false;
#endif
}
void sysdep_init (void)
{
// Use a function from libgomp to force loading of OpenMP library.
// Otherwise, a dynamically loaded library making use of OpenMP such
// as GraphicsMagick will segfault on exit (bug #41699).
#if defined (HAVE_OMP_GET_NUM_THREADS)
omp_get_num_threads ();
#endif
#if defined (__386BSD__) || defined (__FreeBSD__) || defined (__NetBSD__)
BSD_init ();
#elif defined (__MINGW32__)
MINGW_init ();
#elif defined (_MSC_VER)
MSVC_init ();
#endif
}
void sysdep_cleanup (void)
{
#if defined (OCTAVE_USE_WINDOWS_API)
// Let us fail immediately without displaying any dialog.
SetProcessShutdownParameters (0x280, SHUTDOWN_NORETRY);
#endif
}
// Set terminal in raw mode. From less-177.
//
// Change terminal to "raw mode", or restore to "normal" mode.
// "Raw mode" means
// 1. An outstanding read will complete on receipt of a single keystroke.
// 2. Input is not echoed.
// 3. On output, \n is mapped to \r\n.
// 4. \t is NOT expanded into spaces.
// 5. Signal-causing characters such as ctrl-C (interrupt),
// etc. are NOT disabled.
// It doesn't matter whether an input \n is mapped to \r, or vice versa.
void raw_mode (bool on, bool wait)
{
static bool curr_on = false;
int tty_fd = STDIN_FILENO;
if (! octave_isatty_wrapper (tty_fd))
{
interpreter& interp = __get_interpreter__ ("raw_mode");
if (interp.interactive () && ! application::forced_interactive ())
error ("stdin is not a tty!");
}
if (on == curr_on)
return;
#if defined (HAVE_TERMIOS_H)
{
struct termios s;
static struct termios save_term;
if (on)
{
// Get terminal modes.
tcgetattr (tty_fd, &s);
// Save modes and set certain variables dependent on modes.
save_term = s;
// ospeed = s.c_cflag & CBAUD;
// erase_char = s.c_cc[VERASE];
// kill_char = s.c_cc[VKILL];
// Set the modes to the way we want them.
s.c_lflag &= ~(ICANON | ECHO | ECHOE | ECHOK | ECHONL);
s.c_oflag |= (OPOST | ONLCR);
#if defined (OCRNL)
s.c_oflag &= ~(OCRNL);
#endif
#if defined (ONOCR)
s.c_oflag &= ~(ONOCR);
#endif
#if defined (ONLRET)
s.c_oflag &= ~(ONLRET);
#endif
s.c_cc[VMIN] = (wait ? 1 : 0);
s.c_cc[VTIME] = 0;
}
else
{
// Restore saved modes.
s = save_term;
}
tcsetattr (tty_fd, wait ? TCSAFLUSH : TCSADRAIN, &s);
}
#elif defined (HAVE_TERMIO_H)
{
struct termio s;
static struct termio save_term;
if (on)
{
// Get terminal modes.
ioctl (tty_fd, TCGETA, &s);
// Save modes and set certain variables dependent on modes.
save_term = s;
// ospeed = s.c_cflag & CBAUD;
// erase_char = s.c_cc[VERASE];
// kill_char = s.c_cc[VKILL];
// Set the modes to the way we want them.
s.c_lflag &= ~(ICANON | ECHO | ECHOE | ECHOK | ECHONL);
s.c_oflag |= (OPOST | ONLCR);
#if defined (OCRNL)
s.c_oflag &= ~(OCRNL);
#endif
#if defined (ONOCR)
s.c_oflag &= ~(ONOCR);
#endif
#if defined (ONLRET)
s.c_oflag &= ~(ONLRET);
#endif
s.c_cc[VMIN] = (wait ? 1 : 0);
}
else
{
// Restore saved modes.
s = save_term;
}
ioctl (tty_fd, TCSETAW, &s);
}
#elif defined (HAVE_SGTTY_H)
{
octave_unused_parameter (wait);
struct sgttyb s;
static struct sgttyb save_term;
if (on)
{
// Get terminal modes.
ioctl (tty_fd, TIOCGETP, &s);
// Save modes and set certain variables dependent on modes.
save_term = s;
// ospeed = s.sg_ospeed;
// erase_char = s.sg_erase;
// kill_char = s.sg_kill;
// Set the modes to the way we want them.
s.sg_flags |= CBREAK;
s.sg_flags &= ~(ECHO);
}
else
{
// Restore saved modes.
s = save_term;
}
ioctl (tty_fd, TIOCSETN, &s);
}
#else
octave_unused_parameter (wait);
warn_disabled_feature ("", "raw mode console I/O");
// Make sure the current mode doesn't toggle.
on = curr_on;
#endif
curr_on = on;
}
FILE * popen (const char *command, const char *mode)
{
#if defined (__MINGW32__) || defined (_MSC_VER)
wchar_t *wcommand = u8_to_wchar (command);
wchar_t *wmode = u8_to_wchar (mode);
unwind_protect frame;
frame.add_fcn (::free, static_cast<void *> (wcommand));
frame.add_fcn (::free, static_cast<void *> (wmode));
if (wmode && wmode[0] && ! wmode[1])
{
// Use binary mode on Windows if unspecified
wchar_t tmode[3] = {wmode[0], L'b', L'\0'};
return _wpopen (wcommand, tmode);
}
else
return _wpopen (wcommand, wmode);
#else
return ::popen (command, mode);
#endif
}
int pclose (FILE *f)
{
#if defined (__MINGW32__) || defined (_MSC_VER)
return ::_pclose (f);
#else
return ::pclose (f);
#endif
}
// Read one character from the terminal.
int kbhit (bool wait)
{
#if defined (HAVE__KBHIT) && defined (HAVE__GETCH)
// This essentially means we are on a Windows system.
// The value to return when wait is false and no input is ready.
static constexpr int eof = std::istream::traits_type::eof ();
int c;
if (wait)
c = _getch ();
else
c = (! _kbhit ()) ? eof : _getch ();
#else
raw_mode (true, wait);
// Get current handler.
interrupt_handler saved_interrupt_handler
= ignore_interrupts ();
// Restore it, disabling system call restarts (if possible) so the
// read can be interrupted.
set_interrupt_handler (saved_interrupt_handler, false);
int c = std::cin.get ();
if (std::cin.fail () || std::cin.eof ())
{
std::cin.clear ();
clearerr (stdin);
}
// Restore it, enabling system call restarts (if possible).
set_interrupt_handler (saved_interrupt_handler, true);
raw_mode (false, true);
#endif
return c;
}
std::string get_P_tmpdir (void)
{
#if defined (OCTAVE_USE_WINDOWS_API)
std::string retval;
#if defined (P_tmpdir)
retval = P_tmpdir;
#endif
// Apparently some versions of MinGW and MSVC either don't define
// P_tmpdir, or they define it to a single backslash, neither of which
// is particularly helpful.
if (retval.empty () || retval == R"(\)")
{
retval = sys::env::getenv ("TEMP");
if (retval.empty ())
retval = sys::env::getenv ("TMP");
if (retval.empty ())
retval = R"(c:\temp)";
}
return retval;
#elif defined (P_tmpdir)
return P_tmpdir;
#else
return "/tmp";
#endif
}
}
DEFUN (clc, , ,
doc: /* -*- texinfo -*-
@deftypefn {} {} clc ()
@deftypefnx {} {} home ()
Clear the terminal screen and move the cursor to the upper left corner.
@end deftypefn */)
{
bool skip_redisplay = true;
octave::command_editor::clear_screen (skip_redisplay);
return ovl ();
}
DEFALIAS (home, clc);
DEFUN (getenv, args, ,
doc: /* -*- texinfo -*-
@deftypefn {} {} getenv (@var{var})
Return the value of the environment variable @var{var}.
For example,
@example
getenv ("PATH")
@end example
@noindent
returns a string containing the value of your path.
@seealso{setenv, unsetenv}
@end deftypefn */)
{
if (args.length () != 1)
print_usage ();
std::string name = args(0).string_value ();
return ovl (octave::sys::env::getenv (name));
}
/*
%!assert (ischar (getenv ("OCTAVE_HOME")))
*/
DEFUN (setenv, args, ,
doc: /* -*- texinfo -*-
@deftypefn {} {} setenv (@var{var}, @var{value})
@deftypefnx {} {} setenv (@var{var})
@deftypefnx {} {} putenv (@dots{})
Set the value of the environment variable @var{var} to @var{value}.
If no @var{value} is specified then the variable will be assigned the null
string.
@seealso{unsetenv, getenv}
@end deftypefn */)
{
int nargin = args.length ();
if (nargin < 1 || nargin > 2)
print_usage ();
std::string var = args(0).xstring_value ("setenv: VAR must be a string");
std::string val = (nargin == 2
? args(1).xstring_value ("setenv: VALUE must be a string")
: "");
octave::sys::env::putenv (var, val);
return ovl ();
}
DEFALIAS (putenv, setenv);
/*
%!test
%! setenv ("dummy_variable_that_cannot_matter", "foobar");
%! assert (getenv ("dummy_variable_that_cannot_matter"), "foobar");
%! unsetenv ("dummy_variable_that_cannot_matter");
%! assert (getenv ("dummy_variable_that_cannot_matter"), "");
*/
DEFUN (unsetenv, args, ,
doc: /* -*- texinfo -*-
@deftypefn {} {@var{status} =} unsetenv (@var{var})
Delete the environment variable @var{var}.
Return 0 if the variable was deleted, or did not exist, and -1 if an error
occurred.
@seealso{setenv, getenv}
@end deftypefn */)
{
if (args.length () != 1)
print_usage ();
std::string tmp = args(0).string_value ();
return ovl (octave::sys::unsetenv_wrapper (tmp));
}
/*
## Test for unsetenv is in setenv test
*/
#if defined (OCTAVE_USE_WINDOWS_API)
namespace octave
{
static void
reg_close_key_wrapper (HKEY key)
{
RegCloseKey (key);
}
// This function is also used in ov-java.cc, so don't declare static.
// Maybe the functions that use it should be here instead?
LONG
get_regkey_value (HKEY h_rootkey, const std::string subkey,
const std::string name, octave_value& value)
{
LONG result;
HKEY h_subkey;
std::wstring wsubkey = sys::u8_to_wstring (subkey);
result = RegOpenKeyExW (h_rootkey, wsubkey.c_str (), 0, KEY_READ,
&h_subkey);
if (result != ERROR_SUCCESS)
return result;
unwind_protect frame;
frame.add_fcn (reg_close_key_wrapper, h_subkey);
std::wstring wname = sys::u8_to_wstring (name);
DWORD length = 0;
result = RegQueryValueExW (h_subkey, wname.c_str (), nullptr, nullptr,
nullptr, &length);
if (result != ERROR_SUCCESS)
return result;
DWORD type = 0;
OCTAVE_LOCAL_BUFFER (BYTE, data, length);
result = RegQueryValueExW (h_subkey, wname.c_str (), nullptr, &type,
data, &length);
if (result != ERROR_SUCCESS)
return result;
if (type == REG_DWORD)
value = octave_int32 (*(reinterpret_cast<DWORD *> (data)));
else if (type == REG_SZ || type == REG_EXPAND_SZ)
value = string_vector (sys::u8_from_wstring (reinterpret_cast<wchar_t *> (data)));
return result;
}
static LONG
get_regkey_names (HKEY h_rootkey, const std::string subkey,
std::list<std::string> &fields)
{
LONG retval;
HKEY h_subkey;
fields.clear ();
std::wstring wsubkey = sys::u8_to_wstring (subkey);
retval = RegOpenKeyExW (h_rootkey, wsubkey.c_str (), 0, KEY_READ,
&h_subkey);
if (retval != ERROR_SUCCESS)
return retval;
DWORD idx = 0;
const int MAX_VALUE_NAME_SIZE = 32766;
wchar_t value_name[MAX_VALUE_NAME_SIZE+1];
DWORD value_name_size = MAX_VALUE_NAME_SIZE;
while (true)
{
retval = RegEnumValueW (h_subkey, idx, value_name, &value_name_size,
nullptr, nullptr, nullptr, nullptr);
if (retval != ERROR_SUCCESS)
break;
fields.push_back (sys::u8_from_wstring (value_name));
value_name_size = MAX_VALUE_NAME_SIZE;
idx++;
}
if (retval == ERROR_NO_MORE_ITEMS)
retval = ERROR_SUCCESS;
RegCloseKey (h_subkey);
return retval;
}
}
#endif
DEFUN (winqueryreg, args, ,
doc: /* -*- texinfo -*-
@deftypefn {} {@var{value} =} winqueryreg (@var{rootkey}, @var{subkey}, @var{valuename})
@deftypefnx {} {@var{value} =} winqueryreg (@var{rootkey}, @var{subkey})
@deftypefnx {} {@var{names} =} winqueryreg (@code{"name"}, @var{rootkey}, @var{subkey})
Query names or value from the Windows registry.
On Windows, return the value of the registry key @var{subkey} from the root key
@var{rootkey}. You can specify the name of the queried registry value with the
optional argument @var{valuename}. Otherwise, if called with only two
arguments or @var{valuename} is empty, then the default value of @var{subkey}
is returned. If the registry value is of type @nospell{@qcode{"REG_DWORD"}}
then @var{value} is of class int32. If the value is of the type
@nospell{@qcode{"REG_SZ"}} or @nospell{@qcode{"REG_EXPAND_SZ"}} a string is
returned.
If the first argument is @qcode{"name"}, a cell array of strings with the names
of the values at that key is returned.
The variable @var{rootkey} must be a string with a valid root key identifier:
@table @asis
@item @nospell{HKCR}
@itemx @nospell{HKEY_CLASSES_ROOT}
@item @nospell{HKEY_CURRENT_CONFIG}
@item @nospell{HKCU}
@itemx @nospell{HKEY_CURRENT_USER}
@item @nospell{HKLM}
@itemx @nospell{HKEY_LOCAL_MACHINE}
@item @nospell{HKU}
@itemx @nospell{HKEY_USERS}
@item @nospell{HKEY_PERFORMANCE_DATA}
@end table
Examples:
Get a list of value names at the key @nospell{@qcode{'HKCU\Environment'}}:
@example
@group
@var{valuenames} = winqueryreg ("name", "HKEY_CURRENT_USER", ...
"Environment");
@end group
@end example
For each @var{valuenames}, display the value:
@example
@group
for @var{k} = 1:numel (@var{valuenames})
@var{val} = winqueryreg ("HKEY_CURRENT_USER", "Environment", ...
@var{valuenames}@{@var{k}@});
@var{str} = sprintf ("%s = %s", @var{valuenames}@{@var{k}@}, num2str (@var{val}));
disp (@var{str});
endfor
@end group
@end example
On non-Windows platforms this function fails with an error.
@end deftypefn */)
{
#if defined (OCTAVE_USE_WINDOWS_API)
if ((args.length () < 2) || (args.length () > 3))
print_usage ();
// Input check
std::string rootkey_name
= args(0).xstring_value ("winqueryreg: the first argument must be 'name' "
"or a valid ROOTKEY identifier");
std::string subkey_name = "";
std::string value_name = "";
bool get_names = false;
if (rootkey_name.compare ("name") == 0)
{
if (args.length () < 3)
error ("winqueryreg: if the first argument is 'name', "
"ROOTKEY and SUBKEY must be given");
get_names = true;
rootkey_name
= args(1).xstring_value ("winqueryreg: ROOTKEY must be a string");
subkey_name
= args(2).xstring_value ("winqueryreg: SUBKEY must be a string");
}
else
{
subkey_name
= args(1).xstring_value ("winqueryreg: SUBKEY must be a string");
if (args.length () == 3)
value_name
= args(2).xstring_value ("winqueryreg: VALUENAME must be a string");
}
// Get rootkey handle
HKEY h_rootkey;
if (rootkey_name == "HKEY_CLASSES_ROOT" || rootkey_name == "HKCR")
h_rootkey = HKEY_CLASSES_ROOT;
else if (rootkey_name == "HKEY_CURRENT_CONFIG")
h_rootkey = HKEY_CURRENT_CONFIG;
else if (rootkey_name == "HKEY_CURRENT_USER" || rootkey_name == "HKCU")
h_rootkey = HKEY_CURRENT_USER;
else if (rootkey_name == "HKEY_LOCAL_MACHINE" || rootkey_name == "HKLM")
h_rootkey = HKEY_LOCAL_MACHINE;
else if (rootkey_name == "HKEY_PERFORMANCE_DATA")
h_rootkey = HKEY_PERFORMANCE_DATA;
else if (rootkey_name == "HKEY_USERS" || rootkey_name == "HKU")
h_rootkey = HKEY_USERS;
else
error ("winqueryreg: ROOTKEY is not a valid root key identifier");
if (get_names)
{
std::list<std::string> fields;
LONG retval = octave::get_regkey_names (h_rootkey, subkey_name, fields);
if (retval != ERROR_SUCCESS)
error ("winqueryreg: error %ld reading names from registry", retval);
Cell fieldnames (dim_vector (1, fields.size ()));
size_t i;
std::list<std::string>::const_iterator it;
for (i = 0, it = fields.begin (); it != fields.end (); ++it, ++i)
fieldnames(i) = *it;
return ovl (fieldnames);
}
else
{
octave_value key_val;
LONG retval = octave::get_regkey_value (h_rootkey, subkey_name,
value_name, key_val);
if (retval == ERROR_FILE_NOT_FOUND)
error ("winqueryreg: no value found for '%s' at %s\\%s.",
value_name.c_str (), rootkey_name.c_str (),
subkey_name.c_str ());
if (retval != ERROR_SUCCESS)
error ("winqueryreg: error %ld reading the specified key", retval);
return ovl (key_val);
}
#else
octave_unused_parameter (args);
error ("winqueryreg: function is only supported on Windows platforms");
#endif
}
/*
%!testif ; ispc ()
%! assert (ischar (winqueryreg ("HKEY_LOCAL_MACHINE",
%! 'SOFTWARE\Microsoft\Windows\CurrentVersion',
%! "ProgramFilesDir")));
%!testif ; ispc ()
%! assert (isa (winqueryreg ("HKEY_LOCAL_MACHINE",
%! 'SYSTEM\CurrentControlSet\Control\FileSystem',
%! "Win31FileSystem"), "int32"));
%!testif ; ispc ()
%! assert (iscellstr (winqueryreg ("name", "HKEY_LOCAL_MACHINE",
%! 'SOFTWARE\Microsoft\Windows\CurrentVersion')));
%!testif ; ispc ()
%! fail ('winqueryreg (1, ''SOFTWARE\Microsoft\Windows\CurrentVersion'')',
%! "first argument must be 'name' or a valid ROOTKEY identifier");
%!testif ; ispc ()
%! fail ('winqueryreg ("HKEY_LOCAL_MACHINE", 1)', "SUBKEY must be a string");
%!testif ; ispc ()
%! fail (['winqueryreg ("HKEY_LOCAL_MACHINE", ', ...
%! '''SOFTWARE\Microsoft\Windows\CurrentVersion'', 1)'],
%! "VALUENAME must be a string");
%!testif ; ispc ()
%! fail (['winqueryreg ("FOO", ', ...
%! '''SOFTWARE\Microsoft\Windows\CurrentVersion'')'],
%! "ROOTKEY is not a valid root key identifier");
%!testif ; ispc ()
%! fail ('winqueryreg ("HKEY_LOCAL_MACHINE", ''FOO\bar'')',
%! "no value found for");
%!testif ; ispc ()
%! fail (['winqueryreg ("HKEY_LOCAL_MACHINE", ', ...
%! '''SOFTWARE\Microsoft\Windows\CurrentVersion'', "foo")'],
%! "no value found for");
%!testif ; ispc ()
%! fail ('winqueryreg ("name", "HKEY_LOCAL_MACHINE")',
%! "if the first argument is 'name', ROOTKEY and SUBKEY must be given");
%!testif ; ispc ()
%! fail (['winqueryreg ("name", 1, ', ...
%! '''SOFTWARE\Microsoft\Windows\CurrentVersion'')'],
%! "ROOTKEY must be a string");
%!testif ; ispc ()
%! fail ('winqueryreg ("name", "HKEY_LOCAL_MACHINE", 1)',
%! "SUBKEY must be a string");
*/
// FIXME: perhaps kbhit should also be able to print a prompt?
DEFMETHOD (kbhit, interp, args, ,
doc: /* -*- texinfo -*-
@deftypefn {} {} kbhit ()
@deftypefnx {} {} kbhit (1)
Read a single keystroke from the keyboard.
If called with an argument, don't wait for a keypress.
For example,
@example
x = kbhit ();
@end example
@noindent
will set @var{x} to the next character typed at the keyboard as soon as
it is typed.
@example
x = kbhit (1);
@end example
@noindent
is identical to the above example, but doesn't wait for a keypress,
returning the empty string if no key is available.
@seealso{input, pause}
@end deftypefn */)
{
// FIXME: add timeout and default value args?
Fdrawnow (interp);
int c = octave::kbhit (args.length () == 0);
if (c == -1)
c = 0;
char s[2] = { static_cast<char> (c), '\0' };
return octave_value (s);
}
// State of the pause system
static bool Vpause_enabled = true;
DEFMETHOD (pause, interp, args, nargout,
doc: /* -*- texinfo -*-
@deftypefn {} {} pause ()
@deftypefnx {} {} pause (@var{n})
@deftypefnx {} {@var{old_state} =} pause ("on")
@deftypefnx {} {@var{old_state} =} pause ("off")
@deftypefnx {} {@var{old_state} =} pause ("query")
Suspend the execution of the program or change the state of the pause function.
If invoked without an input arguments then the program is suspended until a
character is typed. If argument @var{n} is a positive real value, it indicates
the number of seconds the program shall be suspended, for example:
@example
@group
tic; pause (0.05); toc
@print{} Elapsed time is 0.05039 seconds.
@end group
@end example
The following example prints a message and then waits 5 seconds before
clearing the screen.
@example
@group
disp ("wait please...");
pause (5);
clc;
@end group
@end example
If invoked with a string argument @qcode{"on"}, @qcode{"off"}, or
@qcode{"query"}, the state of the pause function is changed or queried. When
the state is @qcode{"off"}, the pause function returns immediately. The
optional return value contains the previous state of the pause function. In
the following example pause is disabled locally:
@example
@group
old_state = pause ("off");
tic; pause (0.05); toc
@print{} Elapsed time is 3.00407e-05 seconds.
pause (old_state);
@end group
@end example
While the program is suspended Octave still handles figures painting and
graphics callbacks execution.
@seealso{kbhit}
@end deftypefn */)
{
octave_value_list retval;
int nargin = args.length ();
if (nargin > 1)
print_usage ();
if (nargin == 1 && args(0).is_string ())
{
bool saved_state = Vpause_enabled;
std::string state = args(0).string_value ();
if (state == "on")
Vpause_enabled = true;
else if (state == "off")
Vpause_enabled = false;
else if (state == "query")
;// Do nothing
else
error ("pause: first argument must be \"on\", \"off\" or \"query\"");
if (nargout > 0 || state == "query")
retval.append (saved_state ? "on" : "off");
}
else if (Vpause_enabled)
{
double dval;
if (nargin == 0)
dval = octave_Inf;
else
dval = args(0).xdouble_value ("pause: N must be a scalar real value");
if (octave::math::isnan (dval))
warning ("pause: NaN is an invalid delay");
else
{
Fdrawnow (interp);
octave::sleep (dval, true);
}
}
return retval;
}
/*
%!test
%! pause (1);
%!error (pause (1, 2))
*/
// FIXME: maybe this should only return 1 if IEEE floating
// point functions really work.
DEFUN (isieee, , ,
doc: /* -*- texinfo -*-
@deftypefn {} {} isieee ()
Return true if your computer @emph{claims} to conform to the IEEE standard
for floating point calculations.
No actual tests are performed.
@end deftypefn */)
{
octave::mach_info::float_format flt_fmt
= octave::mach_info::native_float_format ();
return ovl (flt_fmt == octave::mach_info::flt_fmt_ieee_little_endian
|| flt_fmt == octave::mach_info::flt_fmt_ieee_big_endian);
}
/*
%!assert (islogical (isieee ()))
*/
DEFUN (native_float_format, , ,
doc: /* -*- texinfo -*-
@deftypefn {} {} native_float_format ()
Return the native floating point format as a string.
@end deftypefn */)
{
octave::mach_info::float_format flt_fmt
= octave::mach_info::native_float_format ();
return ovl (octave::mach_info::float_format_as_string (flt_fmt));
}
/*
%!assert (ischar (native_float_format ()))
*/
DEFUN (tilde_expand, args, ,
doc: /* -*- texinfo -*-
@deftypefn {} {} tilde_expand (@var{string})
@deftypefnx {} {} tilde_expand (@var{cellstr})
Perform tilde expansion on @var{string}.
If @var{string} begins with a tilde character, (@samp{~}), all of the
characters preceding the first slash (or all characters, if there is no
slash) are treated as a possible user name, and the tilde and the following
characters up to the slash are replaced by the home directory of the named
user. If the tilde is followed immediately by a slash, the tilde is
replaced by the home directory of the user running Octave.
If the input is a cell array of strings @var{cellstr} then tilde expansion
is performed on each string element.
Examples:
@example
@group
tilde_expand ("~joeuser/bin")
@result{} "/home/joeuser/bin"
tilde_expand ("~/bin")
@result{} "/home/jwe/bin"
@end group
@end example
@end deftypefn */)
{
if (args.length () != 1)
print_usage ();
octave_value arg = args(0);
string_vector sv = arg.xstring_vector_value ("tilde_expand: argument must be char or cellstr object");
sv = octave::sys::file_ops::tilde_expand (sv);
if (arg.iscellstr ())
return ovl (Cell (arg.dims (), sv));
else
return ovl (sv);
}
/*
%!test
%! home = get_home_directory ();
%! assert (tilde_expand ("~/foobar"), [home "/foobar"]);
%! assert (tilde_expand ("/foo/bar"), "/foo/bar");
%! assert (tilde_expand ("foo/bar"), "foo/bar");
*/
DEFUN (get_home_directory, , ,
doc: /* -*- texinfo -*-
@deftypefn {} {@var{homedir} =} get_home_directory ()
Return the current home directory.
On most systems, this is equivalent to @code{getenv ("HOME")}. On Windows
systems, if the environment variable @env{HOME} is not set then it is
equivalent to
@code{fullfile (getenv ("HOMEDRIVE"), getenv ("HOMEPATH"))}
@seealso{getenv}
@end deftypefn */)
{
return ovl (octave::sys::env::get_home_directory ());
}
/*
%!test
%! if (! ispc ())
%! assert (get_home_directory (), getenv ("HOME"));
%! endif
*/
DEFUN (__blas_version__, , ,
doc: /* -*- texinfo -*-
@deftypefn {} {} __blas_version__ ()
Undocumented internal function.
@end deftypefn */)
{
return ovl (octave::sys::blas_version ());
}
DEFUN (__lapack_version__, , ,
doc: /* -*- texinfo -*-
@deftypefn {} {} __lapack_version__ ()
Undocumented internal function.
@end deftypefn */)
{
return ovl (octave::sys::lapack_version ());
}
|