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
|
/*
Copyright (C) 1994-2015 John W. Eaton
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
<http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <cerrno>
#include <cstdio>
#include <cstddef>
#include <stdlib.h>
#include <cstring>
#include <sstream>
#include <string>
#include <sys/types.h>
#include <unistd.h>
#include "file-ops.h"
#include "file-stat.h"
#include "glob-match.h"
#include "oct-env.h"
#include "pathsearch.h"
#include "str-vec.h"
#include "Cell.h"
#include "defun.h"
#include "dir-ops.h"
#include "dirfns.h"
#include "error.h"
#include "gripes.h"
#include "input.h"
#include "load-path.h"
#include "octave-link.h"
#include "oct-obj.h"
#include "pager.h"
#include "procstream.h"
#include "sysdep.h"
#include "toplev.h"
#include "unwind-prot.h"
#include "utils.h"
#include "variables.h"
// TRUE means we ask for confirmation before recursively removing a
// directory tree.
static bool Vconfirm_recursive_rmdir = true;
// The time we last time we changed directories.
octave_time Vlast_chdir_time = 0.0;
static int
octave_change_to_directory (const std::string& newdir)
{
std::string xdir = file_ops::tilde_expand (newdir);
int cd_ok = octave_env::chdir (xdir);
if (cd_ok)
{
Vlast_chdir_time.stamp ();
// FIXME: should these actions be handled as a list of functions
// to call so users can add their own chdir handlers?
load_path::update ();
octave_link::change_directory (octave_env::get_current_directory ());
}
else
error ("%s: %s", newdir.c_str (), gnulib::strerror (errno));
return cd_ok;
}
DEFUN (cd, args, nargout,
"-*- texinfo -*-\n\
@deftypefn {Command} {} cd @var{dir}\n\
@deftypefnx {Command} {} cd\n\
@deftypefnx {Built-in Function} {@var{old_dir} =} cd (@var{dir})\n\
@deftypefnx {Command} {} chdir @dots{}\n\
Change the current working directory to @var{dir}.\n\
\n\
If @var{dir} is omitted, the current directory is changed to the user's home\n\
directory (@qcode{\"~\"}).\n\
\n\
For example,\n\
\n\
@example\n\
cd ~/octave\n\
@end example\n\
\n\
@noindent\n\
changes the current working directory to @file{~/octave}. If the\n\
directory does not exist, an error message is printed and the working\n\
directory is not changed.\n\
\n\
@code{chdir} is an alias for @code{cd} and can be used in all of the same\n\
calling formats.\n\
\n\
Compatibility Note: When called with no arguments, @sc{matlab} prints the\n\
present working directory rather than changing to the user's home directory.\n\
@seealso{pwd, mkdir, rmdir, dir, ls}\n\
@end deftypefn")
{
octave_value_list retval;
int argc = args.length () + 1;
string_vector argv = args.make_argv ("cd");
if (error_state)
return retval;
if (nargout > 0)
retval = octave_value (octave_env::get_current_directory ());
if (argc > 1)
{
std::string dirname = argv[1];
if (dirname.length () > 0)
octave_change_to_directory (dirname);
}
else
{
std::string home_dir = octave_env::get_home_directory ();
if (! home_dir.empty ())
octave_change_to_directory (home_dir);
}
return retval;
}
DEFALIAS (chdir, cd);
DEFUN (pwd, , ,
"-*- texinfo -*-\n\
@deftypefn {Built-in Function} {} pwd ()\n\
@deftypefnx {Built-in Function} {@var{dir} =} pwd ()\n\
Return the current working directory.\n\
@seealso{cd, dir, ls, mkdir, rmdir}\n\
@end deftypefn")
{
return octave_value (octave_env::get_current_directory ());
}
DEFUN (readdir, args, ,
"-*- texinfo -*-\n\
@deftypefn {Built-in Function} {@var{files} =} readdir (@var{dir})\n\
@deftypefnx {Built-in Function} {[@var{files}, @var{err}, @var{msg}] =} readdir (@var{dir})\n\
Return the names of files in the directory @var{dir} as a cell array of\n\
strings.\n\
\n\
If an error occurs, return an empty cell array in @var{files}.\n\
If successful, @var{err} is 0 and @var{msg} is an empty string.\n\
Otherwise, @var{err} is nonzero and @var{msg} contains a system-dependent\n\
error message.\n\
@seealso{ls, dir, glob, what}\n\
@end deftypefn")
{
octave_value_list retval;
retval(2) = std::string ();
retval(1) = -1.0;
retval(0) = Cell ();
if (args.length () == 1)
{
std::string dirname = args(0).string_value ();
if (error_state)
gripe_wrong_type_arg ("readdir", args(0));
else
{
dir_entry dir (dirname);
if (dir)
{
string_vector dirlist = dir.read ();
retval(1) = 0.0;
retval(0) = Cell (dirlist.sort ());
}
else
{
retval(2) = dir.error ();
}
}
}
else
print_usage ();
return retval;
}
// FIXME: should maybe also allow second arg to specify mode?
// OTOH, that might cause trouble with compatibility later...
DEFUNX ("mkdir", Fmkdir, args, ,
"-*- texinfo -*-\n\
@deftypefn {Built-in Function} {} mkdir @var{dir}\n\
@deftypefnx {Built-in Function} {} mkdir (@var{parent}, @var{dir})\n\
@deftypefnx {Built-in Function} {[@var{status}, @var{msg}, @var{msgid}] =} mkdir (@dots{})\n\
Create a directory named @var{dir} in the directory @var{parent}.\n\
\n\
If no @var{parent} directory is specified the present working directory is\n\
used.\n\
\n\
If successful, @var{status} is 1, and @var{msg}, @var{msgid} are empty\n\
character strings (""). Otherwise, @var{status} is 0, @var{msg} contains a\n\
system-dependent error message, and @var{msgid} contains a unique message\n\
identifier.\n\
\n\
When creating a directory permissions will be set to\n\
@code{0777 - @var{umask}}.\n\
@seealso{rmdir, pwd, cd, umask}\n\
@end deftypefn")
{
octave_value_list retval;
retval(2) = std::string ();
retval(1) = std::string ();
retval(0) = false;
int nargin = args.length ();
std::string dirname;
if (nargin == 2)
{
std::string parent = args(0).string_value ();
std::string dir = args(1).string_value ();
if (error_state)
{
gripe_wrong_type_arg ("mkdir", args(0));
return retval;
}
else
dirname = file_ops::concat (parent, dir);
}
else if (nargin == 1)
{
dirname = args(0).string_value ();
if (error_state)
{
gripe_wrong_type_arg ("mkdir", args(0));
return retval;
}
}
if (nargin == 1 || nargin == 2)
{
std::string msg;
dirname = file_ops::tilde_expand (dirname);
file_stat fs (dirname);
if (fs && fs.is_dir ())
{
// For compatibility with Matlab, we return true when the
// directory already exists.
retval(2) = "mkdir";
retval(1) = "directory exists";
retval(0) = true;
}
else
{
int status = octave_mkdir (dirname, 0777, msg);
if (status < 0)
{
retval(2) = "mkdir";
retval(1) = msg;
}
else
retval(0) = true;
}
}
else
print_usage ();
return retval;
}
DEFUNX ("rmdir", Frmdir, args, ,
"-*- texinfo -*-\n\
@deftypefn {Built-in Function} {} rmdir @var{dir}\n\
@deftypefnx {Built-in Function} {} rmdir (@var{dir}, \"s\")\n\
@deftypefnx {Built-in Function} {[@var{status}, @var{msg}, @var{msgid}] =} rmdir (@dots{})\n\
Remove the directory named @var{dir}.\n\
\n\
If the optional second parameter is supplied with value @qcode{\"s\"},\n\
recursively remove all subdirectories as well.\n\
\n\
If successful, @var{status} is 1, and @var{msg}, @var{msgid} are empty\n\
character strings (""). Otherwise, @var{status} is 0, @var{msg} contains a\n\
system-dependent error message, and @var{msgid} contains a unique message\n\
identifier.\n\
\n\
@seealso{mkdir, confirm_recursive_rmdir, pwd}\n\
@end deftypefn")
{
octave_value_list retval;
retval(2) = std::string ();
retval(1) = std::string ();
retval(0) = false;
int nargin = args.length ();
if (nargin == 1 || nargin == 2)
{
std::string dirname = args(0).string_value ();
if (error_state)
gripe_wrong_type_arg ("rmdir", args(0));
else
{
std::string fulldir = file_ops::tilde_expand (dirname);
int status = -1;
std::string msg;
if (nargin == 2)
{
if (args(1).string_value () == "s")
{
bool doit = true;
if (interactive && ! forced_interactive
&& Vconfirm_recursive_rmdir)
{
std::string prompt
= "remove entire contents of " + fulldir + "? ";
doit = octave_yes_or_no (prompt);
}
if (doit)
status = octave_recursive_rmdir (fulldir, msg);
}
else
error ("rmdir: expecting second argument to be \"s\"");
}
else
status = octave_rmdir (fulldir, msg);
if (status < 0)
{
retval(2) = "rmdir";
retval(1) = msg;
}
else
retval(0) = true;
}
}
else
print_usage ();
return retval;
}
DEFUNX ("link", Flink, args, ,
"-*- texinfo -*-\n\
@deftypefn {Built-in Function} {} link @var{old} @var{new}\n\
@deftypefnx {Built-in Function} {[@var{err}, @var{msg}] =} link (@var{old}, @var{new})\n\
Create a new link (also known as a hard link) to an existing file.\n\
\n\
If successful, @var{err} is 0 and @var{msg} is an empty string.\n\
Otherwise, @var{err} is nonzero and @var{msg} contains a system-dependent\n\
error message.\n\
@seealso{symlink, unlink, readlink, lstat}\n\
@end deftypefn")
{
octave_value_list retval;
retval(1) = std::string ();
retval(0) = -1.0;
if (args.length () == 2)
{
std::string from = args(0).string_value ();
if (error_state)
gripe_wrong_type_arg ("link", args(0));
else
{
std::string to = args(1).string_value ();
if (error_state)
gripe_wrong_type_arg ("link", args(1));
else
{
std::string msg;
int status = octave_link (from, to, msg);
if (status < 0)
retval(1) = msg;
retval(0) = status;
}
}
}
else
print_usage ();
return retval;
}
DEFUNX ("symlink", Fsymlink, args, ,
"-*- texinfo -*-\n\
@deftypefn {Built-in Function} {} symlink @var{old} @var{new}\n\
@deftypefnx {Built-in Function} {[@var{err}, @var{msg}] =} symlink (@var{old}, @var{new})\n\
Create a symbolic link @var{new} which contains the string @var{old}.\n\
\n\
If successful, @var{err} is 0 and @var{msg} is an empty string.\n\
Otherwise, @var{err} is nonzero and @var{msg} contains a system-dependent\n\
error message.\n\
@seealso{link, unlink, readlink, lstat}\n\
@end deftypefn")
{
octave_value_list retval;
retval(1) = std::string ();
retval(0) = -1.0;
if (args.length () == 2)
{
std::string from = args(0).string_value ();
if (error_state)
gripe_wrong_type_arg ("symlink", args(0));
else
{
std::string to = args(1).string_value ();
if (error_state)
gripe_wrong_type_arg ("symlink", args(1));
else
{
std::string msg;
int status = octave_symlink (from, to, msg);
if (status < 0)
retval(1) = msg;
retval(0) = status;
}
}
}
else
print_usage ();
return retval;
}
DEFUNX ("readlink", Freadlink, args, ,
"-*- texinfo -*-\n\
@deftypefn {Built-in Function} {} readlink @var{symlink}\n\
@deftypefnx {Built-in Function} {[@var{result}, @var{err}, @var{msg}] =} readlink (@var{symlink})\n\
Read the value of the symbolic link @var{symlink}.\n\
\n\
If successful, @var{result} contains the contents of the symbolic link\n\
@var{symlink}, @var{err} is 0, and @var{msg} is an empty string.\n\
Otherwise, @var{err} is nonzero and @var{msg} contains a system-dependent\n\
error message.\n\
@seealso{lstat, symlink, link, unlink, delete}\n\
@end deftypefn")
{
octave_value_list retval;
retval(2) = std::string ();
retval(1) = -1.0;
retval(0) = std::string ();
if (args.length () == 1)
{
std::string symlink = args(0).string_value ();
if (error_state)
gripe_wrong_type_arg ("readlink", args(0));
else
{
std::string result;
std::string msg;
int status = octave_readlink (symlink, result, msg);
if (status < 0)
retval(2) = msg;
retval(1) = status;
retval(0) = result;
}
}
else
print_usage ();
return retval;
}
DEFUNX ("rename", Frename, args, ,
"-*- texinfo -*-\n\
@deftypefn {Built-in Function} {} rename @var{old} @var{new}\n\
@deftypefnx {Built-in Function} {[@var{err}, @var{msg}] =} rename (@var{old}, @var{new})\n\
Change the name of file @var{old} to @var{new}.\n\
\n\
If successful, @var{err} is 0 and @var{msg} is an empty string.\n\
Otherwise, @var{err} is nonzero and @var{msg} contains a system-dependent\n\
error message.\n\
@seealso{movefile, copyfile, ls, dir}\n\
@end deftypefn")
{
octave_value_list retval;
retval(1) = std::string ();
retval(0) = -1.0;
if (args.length () == 2)
{
std::string from = args(0).string_value ();
if (error_state)
gripe_wrong_type_arg ("rename", args(0));
else
{
std::string to = args(1).string_value ();
if (error_state)
gripe_wrong_type_arg ("rename", args(1));
else
{
std::string msg;
int status = octave_rename (from, to, msg);
if (status < 0)
retval(1) = msg;
retval(0) = status;
}
}
}
else
print_usage ();
return retval;
}
DEFUN (glob, args, ,
"-*- texinfo -*-\n\
@deftypefn {Built-in Function} {} glob (@var{pattern})\n\
Given an array of pattern strings (as a char array or a cell array) in\n\
@var{pattern}, return a cell array of file names that match any of\n\
them, or an empty cell array if no patterns match.\n\
\n\
The pattern strings are interpreted as filename globbing patterns (as they\n\
are used by Unix shells).\n\
\n\
Within a pattern\n\
\n\
@table @code\n\
@item *\n\
matches any string, including the null string,\n\
\n\
@item ?\n\
matches any single character, and\n\
\n\
@item [@dots{}]\n\
matches any of the enclosed characters.\n\
@end table\n\
\n\
Tilde expansion is performed on each of the patterns before looking for\n\
matching file names. For example:\n\
\n\
@example\n\
ls\n\
@result{}\n\
file1 file2 file3 myfile1 myfile1b\n\
glob (\"*file1\")\n\
@result{}\n\
@{\n\
[1,1] = file1\n\
[2,1] = myfile1\n\
@}\n\
glob (\"myfile?\")\n\
@result{}\n\
@{\n\
[1,1] = myfile1\n\
@}\n\
glob (\"file[12]\")\n\
@result{}\n\
@{\n\
[1,1] = file1\n\
[2,1] = file2\n\
@}\n\
@end example\n\
@seealso{ls, dir, readdir, what}\n\
@end deftypefn")
{
octave_value retval;
if (args.length () == 1)
{
string_vector pat = args(0).all_strings ();
if (error_state)
gripe_wrong_type_arg ("glob", args(0));
else
{
glob_match pattern (file_ops::tilde_expand (pat));
retval = Cell (pattern.glob ());
}
}
else
print_usage ();
return retval;
}
/*
%!test
%! tmpdir = tempname;
%! filename = {"file1", "file2", "file3", "myfile1", "myfile1b"};
%! if (mkdir (tmpdir))
%! cwd = pwd;
%! cd (tmpdir);
%! if (strcmp (canonicalize_file_name (pwd), canonicalize_file_name (tmpdir)))
%! a = 0;
%! for n = 1:5
%! save (filename{n}, "a");
%! endfor
%! else
%! rmdir (tmpdir);
%! error ("Couldn't change to temporary dir");
%! endif
%! else
%! error ("Couldn't create temporary directory");
%! endif
%! result1 = glob ("*file1");
%! result2 = glob ("myfile?");
%! result3 = glob ("file[12]");
%! for n = 1:5
%! delete (filename{n});
%! endfor
%! cd (cwd);
%! rmdir (tmpdir);
%! assert (result1, {"file1"; "myfile1"});
%! assert (result2, {"myfile1"});
%! assert (result3, {"file1"; "file2"});
*/
DEFUN (__fnmatch__, args, ,
"-*- texinfo -*-\n\
@deftypefn {Built-in Function} {} fnmatch (@var{pattern}, @var{string})\n\
Return true or false for each element of @var{string} that matches any of\n\
the elements of the string array @var{pattern}, using the rules of\n\
\n\
filename pattern matching. For example:\n\
\n\
@example\n\
@group\n\
fnmatch (\"a*b\", @{\"ab\"; \"axyzb\"; \"xyzab\"@})\n\
@result{} [ 1; 1; 0 ]\n\
@end group\n\
@end example\n\
@seealso{glob, regexp}\n\
@end deftypefn")
{
octave_value retval;
if (args.length () == 2)
{
string_vector pat = args(0).all_strings ();
string_vector str = args(1).all_strings ();
if (error_state)
gripe_wrong_type_arg ("fnmatch", args(0));
else
{
glob_match pattern (file_ops::tilde_expand (pat));
retval = pattern.match (str);
}
}
else
print_usage ();
return retval;
}
DEFUN (filesep, args, ,
"-*- texinfo -*-\n\
@deftypefn {Built-in Function} {} filesep ()\n\
@deftypefnx {Built-in Function} {} filesep (\"all\")\n\
Return the system-dependent character used to separate directory names.\n\
\n\
If @qcode{\"all\"} is given, the function returns all valid file separators\n\
in the form of a string. The list of file separators is system-dependent.\n\
It is @samp{/} (forward slash) under UNIX or @w{Mac OS X}, @samp{/} and\n\
@samp{\\} (forward and backward slashes) under Windows.\n\
@seealso{pathsep}\n\
@end deftypefn")
{
octave_value retval;
if (args.length () == 0)
retval = file_ops::dir_sep_str ();
else if (args.length () == 1)
{
std::string s = args(0).string_value ();
if (! error_state)
{
if (s == "all")
retval = file_ops::dir_sep_chars ();
else
gripe_wrong_type_arg ("filesep", args(0));
}
else
gripe_wrong_type_arg ("filesep", args(0));
}
else
print_usage ();
return retval;
}
DEFUN (pathsep, args, nargout,
"-*- texinfo -*-\n\
@deftypefn {Built-in Function} {@var{val} =} pathsep ()\n\
@deftypefnx {Built-in Function} {@var{old_val} =} pathsep (@var{new_val})\n\
Query or set the character used to separate directories in a path.\n\
@seealso{filesep}\n\
@end deftypefn")
{
octave_value retval;
int nargin = args.length ();
if (nargout > 0 || nargin == 0)
retval = dir_path::path_sep_str ();
if (nargin == 1)
{
std::string sval = args(0).string_value ();
if (! error_state)
{
switch (sval.length ())
{
case 1:
dir_path::path_sep_char (sval[0]);
break;
case 0:
dir_path::path_sep_char ('\0');
break;
default:
error ("pathsep: argument must be a single character");
break;
}
}
else
error ("pathsep: argument must be a single character");
}
else if (nargin > 1)
print_usage ();
return retval;
}
DEFUN (confirm_recursive_rmdir, args, nargout,
"-*- texinfo -*-\n\
@deftypefn {Built-in Function} {@var{val} =} confirm_recursive_rmdir ()\n\
@deftypefnx {Built-in Function} {@var{old_val} =} confirm_recursive_rmdir (@var{new_val})\n\
@deftypefnx {Built-in Function} {} confirm_recursive_rmdir (@var{new_val}, \"local\")\n\
Query or set the internal variable that controls whether Octave\n\
will ask for confirmation before recursively removing a directory tree.\n\
\n\
When called from inside a function with the @qcode{\"local\"} option, the\n\
variable is changed locally for the function and any subroutines it calls.\n\
The original variable value is restored when exiting the function.\n\
@seealso{rmdir}\n\
@end deftypefn")
{
return SET_INTERNAL_VARIABLE (confirm_recursive_rmdir);
}
|