[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
tostr(code)
, and value, which defaults to zero, are made
available to any try
-except
statements that catch the error. If
the error is not caught, then message will appear on the first line of
the traceback printed to the user.
E_INVARG
if
func-name is not recognized as the name of a known built-in function.
This allows you to compute the name of the function to call and, in particular,
allows you to write a call to a built-in function that may or may not exist in
the particular version of the server you're using.
E_INVARG
if
name is provided but no function with that name is available on the
server.
Each function description is a list of the following form:
{name, min-args, max-args, types} |
where name is the name of the built-in function, min-args is the
minimum number of arguments that must be provided to the function,
max-args is the maximum number of arguments that can be provided to the
function or -1
if there is no maximum, and types is a list of
max-args integers (or min-args if max-args is -1
),
each of which represents the type of argument required in the corresponding
position. Each type number is as would be returned from the typeof()
built-in function except that -1
indicates that any type of value is
acceptable and -2
indicates that either integers or floating-point
numbers may be given. For example, here are several entries from the list:
{"listdelete", 2, 2, {4, 0}} {"suspend", 0, 1, {0}} {"server_log", 1, 2, {2, -1}} {"max", 1, -1, {-2}} {"tostr", 0, -1, {}} |
listdelete()
takes exactly 2 arguments, of which the first must be a
list (LIST == 4
) and the second must be an integer (INT == 0
).
suspend()
has one optional argument that, if provided, must be an
integer. server_log()
has one required argument that must be a string
(STR == 2
) and one optional argument that, if provided, may be of any
type. max()
requires at least one argument but can take any number
above that, and the first argument must be either an integer or a
floating-point number; the type(s) required for any other arguments can't be
determined from this description. Finally, tostr()
takes any number of
arguments at all, but it can't be determined from this description which
argument types would be acceptable in which positions.
E_PERM
is raised. The normal result of calling eval()
is a two element list.
The first element is true if there were no compilation errors and false
otherwise. The second element is either the result returned from the fictional
verb (if there were no compilation errors) or a list of the compiler's error
messages (otherwise).
When the fictional verb is invoked, the various built-in variables have values as shown below:
player the same as in the calling verb
this #-1
caller the same as the initial value of |
The fictional verb runs with the permissions of the programmer and as if its `d' permissions bit were on.
eval("return 3 + 4;") => {1, 7} |
E_PERM
is raised.
Note: This does not change the owner of the currently-running verb, only the permissions of this particular invocation. It is used in verbs owned by wizards to make themselves run with lesser (usually non-wizard) permissions.
caller_perms()
returns #-1
.
resume()
function.) When the
task is resumed, it will have a full quota of ticks and seconds. This function
is useful for programs that run for a long time or require a lot of ticks. If
seconds is negative, then E_INVARG
is raised. Suspend()
returns zero unless it was resumed via resume()
, in which case it
returns the second argument given to that function.
In some sense, this function forks the `rest' of the executing task. However,
there is a major difference between the use of `suspend(seconds)'
and the use of the `fork (seconds)'. The `fork' statement
creates a new task (a forked task) while the currently-running task still
goes on to completion, but a suspend()
suspends the currently-running
task (thus making it into a suspended task). This difference may be best
explained by the following examples, in which one verb calls another:
.program #0:caller_A #0.prop = 1; #0:callee_A(); #0.prop = 2; . .program #0:callee_A fork(5) #0.prop = 3; endfork . .program #0:caller_B #0.prop = 1; #0:callee_B(); #0.prop = 2; . .program #0:callee_B suspend(5); #0.prop = 3; . |
Consider #0:caller_A
, which calls #0:callee_A
. Such a task would
assign 1 to #0.prop
, call #0:callee_A
, fork a new task, return to
#0:caller_A
, and assign 2 to #0.prop
, ending this task. Five
seconds later, if the forked task had not been killed, then it would begin to
run; it would assign 3 to #0.prop
and then stop. So, the final value of
#0.prop
(i.e., the value after more than 5 seconds) would be 3.
Now consider #0:caller_B
, which calls #0:callee_B
instead of
#0:callee_A
. This task would assign 1 to #0.prop
, call
#0:callee_B
, and suspend. Five seconds later, if the suspended task had
not been killed, then it would resume; it would assign 3 to #0.prop
,
return to #0:caller_B
, and assign 2 to #0.prop
, ending the task.
So, the final value of #0.prop
(i.e., the value after more than 5
seconds) would be 2.
A suspended task, like a forked task, can be described by the
queued_tasks()
function and killed by the kill_task()
function.
Suspending a task does not change its task id. A task can be suspended again
and again by successive calls to suspend()
.
By default, there is no limit to the number of tasks any player may suspend, but such a limit can be imposed from within the database. See the chapter on server assumptions about the database for details.
suspend()
will return value,
which defaults to zero. If value is of type ERR
, it will be
raised, rather than returned, in the suspended task. Resume()
raises
E_INVARG
if task-id does not specify an existing suspended task
and E_PERM
if the programmer is neither a wizard nor the owner of the
specified task.
queue_info(X)
will return zero for
any X not in the result of queue_info()
.
{task-id, start-time, x, y, programmer, verb-loc, verb-name, line, this} |
where task-id is an integer identifier for this queued task,
start-time is the time after which this task will begin execution (in
time()
format), x and y are obsolete values that are no
longer interesting, programmer is the permissions with which this task
will begin execution (and also the player who owns this task),
verb-loc is the object on which the verb that forked this task was
defined at the time, verb-name is that name of that verb, line is
the number of the first line of the code in that verb that this task will
execute, and this is the value of the variable `this' in that verb.
For reading tasks, start-time is -1
.
The x and y fields are now obsolete and are retained only for backward-compatibility reasons. They may be reused for new purposes in some future version of the server.
E_PERM
is raised. If there is no task on the queue with the given
task-id, then E_INVARG
is raised.
callers()
is a list, each element of which
gives information about one pending verb or function in the following format:
{this, verb-name, programmer, verb-loc, player, line-number} |
For verbs, this is the initial value of the variable `this' in that verb, verb-name is the name used to invoke that verb, programmer is the player with whose permissions that verb is running, verb-loc is the object on which that verb is defined, player is the initial value of the variable `player' in that verb, and line-number indicates which line of the verb's code is executing. The line-number element is included only if the include-line-numbers argument was provided and true.
For functions, this, programmer, and verb-loc are all
#-1
, verb-name is the name of the function, and line-number
is an index used internally to determine the current state of the built-in
function. The simplest correct test for a built-in function entry is
(VERB-LOC == #-1 && PROGRAMMER == #-1 && VERB-NAME != "") |
The first element of the list returned by callers()
gives information on
the verb that called the currently-executing verb, the second element describes
the verb that called that one, and so on. The last element of the list
describes the first verb called in this task.
callers()
function, but
for the suspended task with the given task-id; the
include-line-numbers argument has the same meaning as in
callers()
. Raises E_INVARG
if task-id does not specify an
existing suspended task and E_PERM
if the programmer is neither a wizard
nor the owner of the specified task.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |