]> Creatis software - CreaPhase.git/blob - octave_packages/m/miscellaneous/run.m
update packages
[CreaPhase.git] / octave_packages / m / miscellaneous / run.m
1 ## Copyright (C) 2007-2012 David Bateman
2 ##
3 ## This file is part of Octave.
4 ##
5 ## Octave is free software; you can redistribute it and/or modify it
6 ## under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 3 of the License, or (at
8 ## your option) any later version.
9 ##
10 ## Octave is distributed in the hope that it will be useful, but
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 ## General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with Octave; see the file COPYING.  If not, see
17 ## <http://www.gnu.org/licenses/>.
18
19 ## -*- texinfo -*-
20 ## @deftypefn  {Command} {} run @var{script}
21 ## @deftypefnx {Function File} {} run (@var{script})
22 ## Run scripts in the current workspace that are not necessarily on the
23 ## path.  If @var{script} is the script to run, including its path, then
24 ## @code{run} changes the directory to the directory where @var{script} is
25 ## found.  @code{run} then executes the script, and returns to the original
26 ## directory.
27 ## @seealso{system}
28 ## @end deftypefn
29
30 function run (script)
31
32   if (nargin != 1)
33     print_usage ();
34   endif
35
36   [d, f, ext] = fileparts (script);
37   if (! isempty (d))
38     if (exist (d, "dir"))
39       wd = pwd ();
40       unwind_protect
41         cd (d);
42         if (! exist (cstrcat (f, ext), "file"))
43           error ("run: file SCRIPT must exist and be a valid Octave scriptfile");
44         endif
45         evalin ("caller", sprintf ("source (\"%s%s\");", f, ext),
46                 "rethrow (lasterror ())");
47       unwind_protect_cleanup
48         cd (wd);
49       end_unwind_protect
50     else
51       error ("run: the path %s doesn't exist", d);
52     endif
53   else
54     if (exist (script, "file"))
55       evalin ("caller", sprintf ("source (\"%s\");", script),
56               "rethrow (lasterror ())");
57     else
58       error ("run: %s not found", script);
59     endif
60   endif
61 endfunction