9da7f4 | 2001-06-05 | Martin Stjernholm | | /* -*- c -*-
|
6e1727 | 2002-04-24 | Henrik Grubbström (Grubba) | | * $Id: builtin.cmod,v 1.85 2002/04/24 15:45:06 grubba Exp $
|
9da7f4 | 2001-06-05 | Martin Stjernholm | | */
|
c3da7f | 2000-07-04 | Martin Stjernholm | |
|
3a5b1d | 2000-05-24 | Fredrik Hübinette (Hubbe) | | #include "global.h"
#include "interpret.h"
#include "svalue.h"
#include "opcodes.h"
#include "pike_macros.h"
#include "object.h"
#include "program.h"
#include "array.h"
|
bb8a78 | 2000-12-01 | Fredrik Hübinette (Hubbe) | | #include "pike_error.h"
|
3a5b1d | 2000-05-24 | Fredrik Hübinette (Hubbe) | | #include "constants.h"
#include "mapping.h"
#include "stralloc.h"
#include "multiset.h"
#include "pike_types.h"
#include "pike_memory.h"
#include "threads.h"
#include <math.h>
#include <ctype.h>
#include "module_support.h"
#include "cyclic.h"
#include "bignum.h"
|
098c80 | 2000-05-24 | Fredrik Hübinette (Hubbe) | | #include "main.h"
|
b8c5b2 | 2000-05-25 | Fredrik Hübinette (Hubbe) | | #include "operators.h"
|
9da7f4 | 2001-06-05 | Martin Stjernholm | | #include "builtin_functions.h"
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | | #include "fsort.h"
|
812f9a | 2002-04-06 | Henrik Grubbström (Grubba) | | #include "port.h"
|
3a5b1d | 2000-05-24 | Fredrik Hübinette (Hubbe) | |
|
d9a93b | 2001-07-01 | Fredrik Hübinette (Hubbe) | |
|
7d1b3b | 2001-12-21 | Henrik Grubbström (Grubba) | | /*! @decl array(array(int|string)) _describe_program(program p)
*!
*! Debug function for showing the symbol table of a program.
*/
PIKEFUN array(array(int|string)) _describe_program(mixed x)
efun;
{
struct program *p;
struct array *res;
int i;
if (!(p = program_from_svalue(sp - args))) {
Pike_error("_describe_program(): Bad argument 1 (expected program).\n");
}
for (i=0; i < (int)p->num_identifier_references;i++) {
struct reference *ref = p->identifier_references + i;
struct identifier *id = ID_FROM_PTR(p, ref);
|
cab69e | 2002-04-24 | Henrik Grubbström (Grubba) | | struct inherit *inh = INHERIT_FROM_PTR(p, ref);
|
7d1b3b | 2001-12-21 | Henrik Grubbström (Grubba) | | push_int(ref->id_flags);
ref_push_string(id->name);
|
cab69e | 2002-04-24 | Henrik Grubbström (Grubba) | | push_int(id->identifier_flags);
if (id->identifier_flags & IDENTIFIER_C_FUNCTION) {
push_int(-2);
} else {
push_int(id->func.offset);
}
push_int(ref->inherit_offset);
push_int(inh->inherit_level);
f_aggregate(6);
|
7d1b3b | 2001-12-21 | Henrik Grubbström (Grubba) | | }
f_aggregate(p->num_identifier_references);
res = sp[-1].u.array;
sp--;
pop_n_elems(args);
push_array(res);
}
|
d9a93b | 2001-07-01 | Fredrik Hübinette (Hubbe) | | /*! @decl string basetype(mixed x)
*!
*! Same as sprintf("%t",x);
*!
*! @seealso
*! @[sprintf()]
*/
PIKEFUN string basetype(mixed x)
efun;
optflags OPT_TRY_OPTIMIZE;
{
int t=x->type;
if(x->type == T_OBJECT && x->u.object->prog)
{
ptrdiff_t fun=FIND_LFUN(x->u.object->prog, LFUN__SPRINTF);
if(fun != -1)
{
push_int('t');
f_aggregate_mapping(0);
apply_low(x->u.object, fun, 2);
if(Pike_sp[-1].type == T_STRING)
{
stack_swap();
pop_stack();
return;
|
9f516a | 2001-12-16 | Martin Stjernholm | | } else if (UNSAFE_IS_ZERO(Pike_sp-1)) {
|
63a730 | 2001-07-02 | Henrik Grubbström (Grubba) | | pop_n_elems(2);
|
9db2bf | 2001-07-02 | Henrik Grubbström (Grubba) | | push_constant_text("object");
return;
} else {
Pike_error("Non-string returned from _sprintf()\n");
|
d9a93b | 2001-07-01 | Fredrik Hübinette (Hubbe) | | }
}
}
pop_stack();
switch(t)
{
case T_ARRAY: push_constant_text("array"); break;
case T_FLOAT: push_constant_text("float"); break;
case T_FUNCTION: push_constant_text("function"); break;
case T_INT: push_constant_text("int"); break;
case T_LVALUE: push_constant_text("lvalue"); break;
case T_MAPPING: push_constant_text("mapping"); break;
case T_MULTISET: push_constant_text("multiset"); break;
case T_OBJECT: push_constant_text("object"); break;
case T_PROGRAM: push_constant_text("program"); break;
case T_STRING: push_constant_text("string"); break;
case T_TYPE: push_constant_text("type"); break;
case T_ZERO: push_constant_text("zero"); break;
case T_VOID: push_constant_text("void"); break;
case T_MAPPING_DATA: push_constant_text("mapping_data"); break;
default: push_constant_text("unknown"); break;
}
}
/*! @decl string int2char(int x)
|
ba2480 | 2002-04-07 | Martin Nilsson | | *! @appears String.int2char
|
d9a93b | 2001-07-01 | Fredrik Hübinette (Hubbe) | | *!
*! Same as sprintf("%c",x);
*!
*! @seealso
*! @[sprintf()]
*/
PIKEFUN string int2char(int|object x)
efun;
optflags OPT_TRY_OPTIMIZE;
{
int c;
if(x->type == T_OBJECT && x->u.object->prog)
{
ptrdiff_t fun=FIND_LFUN(x->u.object->prog, LFUN__SPRINTF);
if(fun != -1)
{
push_int('c');
f_aggregate_mapping(0);
apply_low(x->u.object, fun, 2);
if(Pike_sp[-1].type == T_STRING)
{
stack_swap();
pop_stack();
return;
}
|
8f5b5b | 2001-07-02 | Henrik Grubbström (Grubba) | | Pike_error("Non-string returned from _sprintf()\n");
|
d9a93b | 2001-07-01 | Fredrik Hübinette (Hubbe) | | }
}
if(x->type != T_INT)
|
8f5b5b | 2001-07-02 | Henrik Grubbström (Grubba) | | Pike_error("Bad argument 1 to int2char.\n");
|
d9a93b | 2001-07-01 | Fredrik Hübinette (Hubbe) | |
c=x->u.integer;
if(c>=0 && c<256)
{
struct pike_string *s;
s=begin_shared_string(1);
s->str[0]=c;
RETURN end_shared_string(s);
}else{
struct string_builder tmp;
init_string_builder(&tmp,0);
string_builder_putchar(&tmp, c);
RETURN finish_string_builder(&tmp);
}
}
|
7b4529 | 2001-08-15 | Fredrik Hübinette (Hubbe) | | /*! @decl string int2hex(int x)
|
ba2480 | 2002-04-07 | Martin Nilsson | | *! @appears String.int2hex
|
7b4529 | 2001-08-15 | Fredrik Hübinette (Hubbe) | | *!
*! Same as sprintf("%x",x);
*!
*! @seealso
*! @[sprintf()]
*/
PIKEFUN string int2hex(int|object x)
efun;
optflags OPT_TRY_OPTIMIZE;
{
INT_TYPE c;
unsigned long n;
int len;
struct pike_string *s;
if(x->type == T_OBJECT && x->u.object->prog)
{
ptrdiff_t fun=FIND_LFUN(x->u.object->prog, LFUN__SPRINTF);
if(fun != -1)
{
push_int('x');
f_aggregate_mapping(0);
apply_low(x->u.object, fun, 2);
if(Pike_sp[-1].type == T_STRING)
{
stack_swap();
pop_stack();
return;
}
Pike_error("Non-string returned from _sprintf()\n");
}
}
if(x->type != T_INT)
Pike_error("Bad argument 1 to int2hex.\n");
c=x->u.integer;
len=1;
if(c<0) {
len++;
|
301e98 | 2002-01-18 | Martin Nilsson | | n=(-c)&((unsigned int)(-1));
|
7b4529 | 2001-08-15 | Fredrik Hübinette (Hubbe) | | }else{
n=c;
}
|
301e98 | 2002-01-18 | Martin Nilsson | | while(n>65535) { n>>=16; len+=4; }
while(n>15) { n>>=4; len++; }
|
7b4529 | 2001-08-15 | Fredrik Hübinette (Hubbe) | |
s=begin_shared_string(len);
c=x->u.integer;
if(!c)
{
s->str[0]='0';
}else{
if(c<0)
{
s->str[0]='-';
|
301e98 | 2002-01-18 | Martin Nilsson | | n=(-c)&((unsigned int)(-1));
|
7b4529 | 2001-08-15 | Fredrik Hübinette (Hubbe) | | }else{
n=c;
}
|
301e98 | 2002-01-18 | Martin Nilsson | | while(len && n)
|
7b4529 | 2001-08-15 | Fredrik Hübinette (Hubbe) | | {
s->str[--len]="0123456789abcdef"[n&0xf];
n>>=4;
}
}
RETURN end_shared_string(s);
}
|
049833 | 2001-02-10 | Henrik Grubbström (Grubba) | | /*! @decl array column(array data, mixed index)
*!
*! Extract a column from a two-dimensional array.
*!
*! This function is exactly equivalent to:
*! @code{map(@[data], lambda(mixed x,mixed y) { return x[y]; }, @[index])@}
*!
*! Except of course it is a lot shorter and faster.
*! That is, it indices every index in the array data on the value of
*! the argument index and returns an array with the results.
*!
*! @seealso
*! @[rows()]
*/
|
b0f835 | 2001-01-07 | Henrik Grubbström (Grubba) | | PIKEFUN array column(array data, mixed index)
|
3a5b1d | 2000-05-24 | Fredrik Hübinette (Hubbe) | | efun;
optflags OPT_TRY_OPTIMIZE;
{
INT32 e;
struct array *a;
DECLARE_CYCLIC();
/* Optimization */
|
b0f835 | 2001-01-07 | Henrik Grubbström (Grubba) | | if(data->refs == 1)
|
3a5b1d | 2000-05-24 | Fredrik Hübinette (Hubbe) | | {
/* An array with one ref cannot possibly be cyclic */
struct svalue sval;
|
b0f835 | 2001-01-07 | Henrik Grubbström (Grubba) | | data->type_field = BIT_MIXED | BIT_UNFINISHED;
for(e=0;e<data->size;e++)
|
3a5b1d | 2000-05-24 | Fredrik Hübinette (Hubbe) | | {
|
b0f835 | 2001-01-07 | Henrik Grubbström (Grubba) | | index_no_free(&sval, ITEM(data)+e, index);
free_svalue(ITEM(data)+e);
ITEM(data)[e]=sval;
|
3a5b1d | 2000-05-24 | Fredrik Hübinette (Hubbe) | | }
pop_stack();
return;
}
|
b0f835 | 2001-01-07 | Henrik Grubbström (Grubba) | | if((a=(struct array *)BEGIN_CYCLIC(data,0)))
|
3a5b1d | 2000-05-24 | Fredrik Hübinette (Hubbe) | | {
add_ref(a);
}else{
|
b0f835 | 2001-01-07 | Henrik Grubbström (Grubba) | | push_array(a=allocate_array(data->size));
|
3a5b1d | 2000-05-24 | Fredrik Hübinette (Hubbe) | | SET_CYCLIC_RET(a);
for(e=0;e<a->size;e++)
|
b0f835 | 2001-01-07 | Henrik Grubbström (Grubba) | | index_no_free(ITEM(a)+e, ITEM(data)+e, index);
|
3a5b1d | 2000-05-24 | Fredrik Hübinette (Hubbe) | |
sp--;
}
END_CYCLIC();
RETURN a;
}
|
049833 | 2001-02-10 | Henrik Grubbström (Grubba) | | /*! @decl multiset mkmultiset(array a)
*!
*! This function creates a multiset from an array.
*!
*! @seealso
*! @[aggregate_multiset()]
*!
*/
|
3a5b1d | 2000-05-24 | Fredrik Hübinette (Hubbe) | | PIKEFUN multiset(1) mkmultiset(array(1=mixed) a)
efun;
|
8f998d | 2000-08-31 | Henrik Grubbström (Grubba) | | optflags OPT_TRY_OPTIMIZE|OPT_EXTERNAL_DEPEND;
|
3a5b1d | 2000-05-24 | Fredrik Hübinette (Hubbe) | | {
RETURN mkmultiset(a);
}
|
049833 | 2001-02-10 | Henrik Grubbström (Grubba) | | /*! @decl int trace(int t)
*!
*! This function changes the debug trace level.
*!
*! The old level is returned.
*!
*! Trace level 1 or higher means that calls to Pike functions are
*! printed to stderr, level 2 or higher means calls to builtin functions
*! are printed, 3 means every opcode interpreted is printed, 4 means
*! arguments to these opcodes are printed as well.
*!
*! See the @tt{-t@} command-line option for more information.
*/
|
098c80 | 2000-05-24 | Fredrik Hübinette (Hubbe) | | PIKEFUN int trace(int t)
efun;
optflags OPT_SIDE_EFFECT;
{
pop_n_elems(args);
push_int(t_flag);
t_flag=t;
}
|
d6fd96 | 2001-02-10 | Henrik Grubbström (Grubba) | | /*! @decl string ctime(int timestamp)
*!
|
049833 | 2001-02-10 | Henrik Grubbström (Grubba) | | *! Convert the output from a previous call to @[time()] into a readable
*! string containing the current year, month, day and time.
*!
*! @seealso
*! @[time()], @[localtime()], @[mktime()], @[gmtime()]
*/
|
b0f835 | 2001-01-07 | Henrik Grubbström (Grubba) | | PIKEFUN string ctime(int timestamp)
|
098c80 | 2000-05-24 | Fredrik Hübinette (Hubbe) | | efun;
optflags OPT_TRY_OPTIMIZE;
{
|
b0f835 | 2001-01-07 | Henrik Grubbström (Grubba) | | time_t i=(time_t)timestamp;
|
098c80 | 2000-05-24 | Fredrik Hübinette (Hubbe) | | RETURN make_shared_string(ctime(&i));
}
|
049833 | 2001-02-10 | Henrik Grubbström (Grubba) | | /*! @decl mapping mkmapping(array ind, array val)
*!
*! Make a mapping from two arrays.
*!
*! Makes a mapping @[ind[x]]:@[val[x]], @tt{0 <= x < sizeof(ind)@}.
*!
*! @[ind] and @[val] must have the same size.
*!
*! This is the inverse operation of @[indices()] and @[values()].
*!
*! @seealso
*! @[indices()], @[values()]
*/
|
b0f835 | 2001-01-07 | Henrik Grubbström (Grubba) | | PIKEFUN mapping(1:2) mkmapping(array(1=mixed) ind, array(2=mixed) val)
|
098c80 | 2000-05-24 | Fredrik Hübinette (Hubbe) | | efun;
|
8f998d | 2000-08-31 | Henrik Grubbström (Grubba) | | optflags OPT_TRY_OPTIMIZE|OPT_EXTERNAL_DEPEND;
|
098c80 | 2000-05-24 | Fredrik Hübinette (Hubbe) | | {
|
b0f835 | 2001-01-07 | Henrik Grubbström (Grubba) | | if(ind->size != val->size)
|
098c80 | 2000-05-24 | Fredrik Hübinette (Hubbe) | | bad_arg_error("mkmapping", sp-args, args, 2, "array", sp+1-args,
"mkmapping called on arrays of different sizes (%d != %d)\n",
|
b0f835 | 2001-01-07 | Henrik Grubbström (Grubba) | | ind->size, val->size);
|
098c80 | 2000-05-24 | Fredrik Hübinette (Hubbe) | |
|
b0f835 | 2001-01-07 | Henrik Grubbström (Grubba) | | RETURN mkmapping(ind, val);
|
098c80 | 2000-05-24 | Fredrik Hübinette (Hubbe) | | }
|
3a5b1d | 2000-05-24 | Fredrik Hübinette (Hubbe) | |
|
31acb7 | 2001-07-26 | Martin Nilsson | | /*! @decl int count(string haystack, string needle)
*! @belongs String
|
049833 | 2001-02-10 | Henrik Grubbström (Grubba) | | *!
*! Count the number of non-overlapping times the string @[needle] occurrs
*! in the string @[haystack].
*!
*! @seealso
*! @[search()], @[`/()]
*/
|
661305 | 2000-08-10 | Henrik Grubbström (Grubba) | | PIKEFUN int string_count(string haystack, string needle)
|
991fdf | 2000-05-25 | Fredrik Hübinette (Hubbe) | | errname String.count;
optflags OPT_TRY_OPTIMIZE;
{
|
89fc4c | 2000-08-10 | Henrik Grubbström (Grubba) | | ptrdiff_t c = 0;
ptrdiff_t i, j;
|
991fdf | 2000-05-25 | Fredrik Hübinette (Hubbe) | |
switch (needle->len)
{
case 0:
switch (haystack->len)
{
case 0: c=1; break; /* "" appears one time in "" */
case 1: c=0; break; /* "" doesn't appear in "x" */
default: c=haystack->len-1; /* one time between each character */
}
break;
case 1:
/* maybe optimize? */
default:
for (i=0; i<haystack->len; i++)
{
j=string_search(haystack,needle,i);
if (j==-1) break;
i=j+needle->len-1;
c++;
}
break;
}
|
661305 | 2000-08-10 | Henrik Grubbström (Grubba) | | RETURN DO_NOT_WARN((INT_TYPE)c);
|
991fdf | 2000-05-25 | Fredrik Hübinette (Hubbe) | | }
|
31acb7 | 2001-07-26 | Martin Nilsson | | /*! @decl string trim_whites (string s)
*! @belongs String
|
5117f1 | 2001-04-16 | Martin Stjernholm | | *!
*! Trim leading and trailing spaces and tabs from the string @[s].
*/
PIKEFUN string string_trim_whites (string s)
errname String.trim_whites;
optflags OPT_TRY_OPTIMIZE;
{
ptrdiff_t start = 0, end = s->len;
int chr;
switch (s->size_shift) {
#define DO_IT(TYPE) \
{ \
for (; start < s->len; start++) { \
chr = ((TYPE *) s->str)[start]; \
if (chr != ' ' && chr != '\t') break; \
} \
while (--end > start) { \
chr = ((TYPE *) s->str)[end]; \
if (chr != ' ' && chr != '\t') break; \
} \
}
case 0: DO_IT (p_wchar0); break;
case 1: DO_IT (p_wchar1); break;
case 2: DO_IT (p_wchar2); break;
#undef DO_IT
}
RETURN string_slice (s, start, end + 1 - start);
}
|
31acb7 | 2001-07-26 | Martin Nilsson | | /*! @decl string trim_all_whites (string s)
*! @belongs String
|
5117f1 | 2001-04-16 | Martin Stjernholm | | *!
*! Trim leading and trailing white spaces characters (space, tab,
*! newline and carriage return) from the string @[s].
*/
PIKEFUN string string_trim_all_whites (string s)
errname String.trim_all_whites;
optflags OPT_TRY_OPTIMIZE;
{
ptrdiff_t start = 0, end = s->len;
int chr;
switch (s->size_shift) {
#define DO_IT(TYPE) \
{ \
for (; start < s->len; start++) { \
chr = ((TYPE *) s->str)[start]; \
if (chr != ' ' && chr != '\t' && chr != '\n' && chr != '\r') \
break; \
} \
while (--end > start) { \
chr = ((TYPE *) s->str)[end]; \
if (chr != ' ' && chr != '\t' && chr != '\n' && chr != '\r') \
break; \
} \
}
case 0: DO_IT (p_wchar0); break;
case 1: DO_IT (p_wchar1); break;
case 2: DO_IT (p_wchar2); break;
#undef DO_IT
}
RETURN string_slice (s, start, end + 1 - start);
}
|
31acb7 | 2001-07-26 | Martin Nilsson | | /*! @decl int implements(program prog, program api)
*! @belongs Program
|
049833 | 2001-02-10 | Henrik Grubbström (Grubba) | | *!
*! Returns 1 if @[prog] implements @[api].
*/
|
b0f835 | 2001-01-07 | Henrik Grubbström (Grubba) | | PIKEFUN int program_implements(program prog, program api)
|
991fdf | 2000-05-25 | Fredrik Hübinette (Hubbe) | | errname Program.implements;
optflags OPT_TRY_OPTIMIZE;
{
|
b0f835 | 2001-01-07 | Henrik Grubbström (Grubba) | | RETURN implements(prog, api);
|
991fdf | 2000-05-25 | Fredrik Hübinette (Hubbe) | | }
|
31acb7 | 2001-07-26 | Martin Nilsson | | /*! @decl int inherits(program child, program parent)
*! @belongs Program
|
049833 | 2001-02-10 | Henrik Grubbström (Grubba) | | *!
*! Returns 1 if @[child] has inherited @[parent].
*/
|
f3c715 | 2001-04-14 | Fredrik Hübinette (Hubbe) | | PIKEFUN int program_inherits(program parent, program child)
|
991fdf | 2000-05-25 | Fredrik Hübinette (Hubbe) | | errname Program.inherits;
optflags OPT_TRY_OPTIMIZE;
{
|
f3c715 | 2001-04-14 | Fredrik Hübinette (Hubbe) | | RETURN low_get_storage(parent, child) != -1;
|
991fdf | 2000-05-25 | Fredrik Hübinette (Hubbe) | | }
|
31acb7 | 2001-07-26 | Martin Nilsson | | /*! @decl string defined(program p)
*! @belongs Program
|
049833 | 2001-02-10 | Henrik Grubbström (Grubba) | | *!
*! Returns a string with filename and linenumber describing where
*! the program @[p] was defined.
*!
*! The returned string is of the format @tt{"@i{filename@}:@i{linenumber@}"@}.
*!
*! If it cannot be determined where the program was defined, @tt{0@} (zero)
*! will be returned.
*/
|
b8c5b2 | 2000-05-25 | Fredrik Hübinette (Hubbe) | | PIKEFUN string program_defined(program p)
errname Program.defined;
optflags OPT_TRY_OPTIMIZE;
{
if(p && p->num_linenumbers)
{
INT32 line;
|
50edc8 | 2001-07-13 | Henrik Grubbström (Grubba) | | struct pike_string *tmp = get_program_line(p, &line);
|
b8c5b2 | 2000-05-25 | Fredrik Hübinette (Hubbe) | |
|
50edc8 | 2001-07-13 | Henrik Grubbström (Grubba) | | pop_n_elems(args);
push_string(tmp);
if(line >= 1)
{
push_constant_text(":");
push_int(line);
f_add(3);
|
b8c5b2 | 2000-05-25 | Fredrik Hübinette (Hubbe) | | }
|
50edc8 | 2001-07-13 | Henrik Grubbström (Grubba) | | return;
|
b8c5b2 | 2000-05-25 | Fredrik Hübinette (Hubbe) | | }
pop_n_elems(args);
push_int(0);
}
|
31acb7 | 2001-07-26 | Martin Nilsson | | /*! @decl int(8..8)|int(16..16)|int(32..32) width(string s)
*! @belongs String
|
049833 | 2001-02-10 | Henrik Grubbström (Grubba) | | *!
*! Returns the width of a string.
*!
*! Three return values are possible:
*! @int
*! @value 8
*! The string @[s] only contains characters <= 255.
*! @value 16
*! The string @[s] only contains characters <= 65535.
*! @value 32
*! The string @[s] contains characters >= 65536.
*! @endint
*/
|
d6fd96 | 2001-02-10 | Henrik Grubbström (Grubba) | | PIKEFUN int(8 .. 8)|int(16 .. 16)|int(32 .. 32) string_width(string s)
|
991fdf | 2000-05-25 | Fredrik Hübinette (Hubbe) | | errname String.width;
optflags OPT_TRY_OPTIMIZE;
{
RETURN 8 * (1 << s->size_shift);
}
|
049833 | 2001-02-10 | Henrik Grubbström (Grubba) | | /*! @decl mixed m_delete(object|mapping map, mixed index)
*!
*! If @[map] is an object that implements @[lfun::_m_delete()],
*! that function will be called with @[index] as the signle argument.
*!
*! Other wise if @[map] is a mapping the entry with index @[index]
*! will be removed from @[map] destructively.
*!
*! If the mapping does not have an entry with index @[index], nothing is done.
*!
*! @returns
*! The value that was removed will be returned.
*!
*! @note
*! Note that @[m_delete()] changes @[map] destructively.
*!
*! @seealso
*! @[mappingp()]
*/
|
a3453e | 2001-02-05 | Per Hedbor | | PIKEFUN mixed m_delete(object|mapping map, mixed index)
|
7f80d4 | 2000-06-19 | Fredrik Hübinette (Hubbe) | | efun;
optflags OPT_SIDE_EFFECT;
{
|
a3453e | 2001-02-05 | Per Hedbor | | /*FIXME: Should be
* type function(mapping(1=mixed:2=mixed),1:2)|
* function(object,mixed:mixed);
*
* or similar
*/
if( map->type == T_MAPPING )
{
struct svalue s;
map_delete_no_free(map->u.mapping, index, &s);
pop_n_elems(args);
*sp=s;
sp++;
}
|
e9af83 | 2001-02-10 | Martin Stjernholm | | else if (map->type == T_OBJECT && map->u.object->prog)
|
a3453e | 2001-02-05 | Per Hedbor | | {
|
049833 | 2001-02-10 | Henrik Grubbström (Grubba) | | int id = FIND_LFUN(map->u.object->prog, LFUN__M_DELETE);
|
ea5601 | 2001-02-09 | Per Hedbor | |
if( id == -1 )
SIMPLE_BAD_ARG_ERROR("m_delete", 1, "object with _m_delete");
apply_low( map->u.object, id, 1 );
|
a3453e | 2001-02-05 | Per Hedbor | | stack_swap();
pop_stack();
|
79f698 | 2001-02-05 | Henrik Grubbström (Grubba) | | } else {
SIMPLE_BAD_ARG_ERROR("m_delete", 1, "object|mapping");
|
a3453e | 2001-02-05 | Per Hedbor | | }
|
7f80d4 | 2000-06-19 | Fredrik Hübinette (Hubbe) | | }
|
9da7f4 | 2001-06-05 | Martin Stjernholm | | /*! @decl int get_weak_flag(array|mapping|multiset m)
|
049833 | 2001-02-10 | Henrik Grubbström (Grubba) | | *!
|
9da7f4 | 2001-06-05 | Martin Stjernholm | | *! Returns the weak flag settings for @[m]. It's a combination of
*! @[Pike.WEAK_INDICES] and @[Pike.WEAK_VALUES].
|
049833 | 2001-02-10 | Henrik Grubbström (Grubba) | | */
|
e1b419 | 2001-06-06 | Fredrik Hübinette (Hubbe) | | PIKEFUN int get_weak_flag(array m)
|
ee9fa9 | 2000-07-06 | Martin Stjernholm | | efun;
|
8f998d | 2000-08-31 | Henrik Grubbström (Grubba) | | optflags OPT_EXTERNAL_DEPEND;
|
ee9fa9 | 2000-07-06 | Martin Stjernholm | | {
|
e1b419 | 2001-06-06 | Fredrik Hübinette (Hubbe) | | RETURN (m->flags & ARRAY_WEAK_FLAG) ? PIKE_WEAK_VALUES : 0;
}
PIKEFUN int get_weak_flag(mapping m)
{
RETURN mapping_get_flags(m) & MAPPING_WEAK;
}
PIKEFUN int get_weak_flag(multiset m)
{
|
5b15bb | 2001-12-10 | Martin Stjernholm | | #ifdef PIKE_NEW_MULTISETS
RETURN multiset_get_flags(m) & MULTISET_WEAK;
#else
|
e1b419 | 2001-06-06 | Fredrik Hübinette (Hubbe) | | RETURN (m->ind->flags & (ARRAY_WEAK_FLAG|ARRAY_WEAK_SHRINK)) ?
|
9da7f4 | 2001-06-05 | Martin Stjernholm | | PIKE_WEAK_INDICES : 0;
|
5b15bb | 2001-12-10 | Martin Stjernholm | | #endif
|
ee9fa9 | 2000-07-06 | Martin Stjernholm | | }
|
aa68b1 | 2001-03-19 | Fredrik Hübinette (Hubbe) | | PIKEFUN program __empty_program()
efun;
optflags OPT_EXTERNAL_DEPEND;
{
RETURN low_allocate_program();
}
|
1c1c5e | 2001-04-08 | Fredrik Hübinette (Hubbe) | | /*! @decl string function_name(function f)
*!
*! Return the name of the function @[f].
*!
*! If @[f] is a global function defined in the runtime @tt{0@} (zero)
*! will be returned.
*!
*! @seealso
*! @[function_object()]
*/
PIKEFUN string function_name(program|function func)
efun;
optflags OPT_TRY_OPTIMIZE;
{
switch(func->type)
{
default:
|
2a0f32 | 2002-02-28 | Henrik Grubbström (Grubba) | | bad_arg_error("function_name", Pike_sp-args, args, 1,
"function|program", Pike_sp-args,
"Bad argument.\n");
|
1c1c5e | 2001-04-08 | Fredrik Hübinette (Hubbe) | | return; /* NOTREACHED */
case PIKE_T_PROGRAM:
{
struct program *p=func->u.program;
if(p->parent)
{
int e;
p=p->parent;
/* search constants in parent for this
* program...
*/
for(e = p->num_identifier_references; e--; )
{
struct identifier *id;
if (p->identifier_references[e].id_flags & ID_HIDDEN)
continue;
id = ID_FROM_INT(p, e);
if (IDENTIFIER_IS_CONSTANT(id->identifier_flags) &&
is_eq( & PROG_FROM_INT(p, e)->constants[id->func.offset].sval,
func))
REF_RETURN id->name;
}
}
break;
}
case PIKE_T_FUNCTION:
if(func->subtype == FUNCTION_BUILTIN) break;
if(!func->u.object->prog)
bad_arg_error("function_name", Pike_sp-args, args, 1,
"function", Pike_sp-args,
"Destructed object.\n");
|
5a6d7d | 2001-04-10 | Fredrik Hübinette (Hubbe) | | if(func->u.object->prog == pike_trampoline_program)
{
struct pike_trampoline *t;
t=((struct pike_trampoline *)func->u.object->storage);
if(t->frame->current_object->prog)
REF_RETURN ID_FROM_INT(t->frame->current_object->prog,
t->func)->name;
}
|
1c1c5e | 2001-04-08 | Fredrik Hübinette (Hubbe) | |
REF_RETURN ID_FROM_INT(func->u.object->prog, func->subtype)->name;
}
pop_n_elems(args);
push_int(0);
}
/*! @decl object function_object(function|program f)
*!
*! Return the object the function @[f] is in.
*!
*! If @[f] is a global function defined in the runtime @tt{0@} (zero)
*! will be returned.
*!
*! @seealso
*! @[function_name()]
*/
|
5a6d7d | 2001-04-10 | Fredrik Hübinette (Hubbe) | | PIKEFUN object|program function_object(object|program|function func)
|
1c1c5e | 2001-04-08 | Fredrik Hübinette (Hubbe) | | efun;
optflags OPT_TRY_OPTIMIZE;
|
5a6d7d | 2001-04-10 | Fredrik Hübinette (Hubbe) | | type function(function|object:object)|function(program:program);
|
1c1c5e | 2001-04-08 | Fredrik Hübinette (Hubbe) | | {
switch(func->type)
{
case PIKE_T_PROGRAM:
{
struct program *p;
if(!(p=func->u.program->parent)) break;
add_ref(p);
free_program(func->u.program);
func->u.program=p;
return;
}
case PIKE_T_FUNCTION:
if(func->subtype == FUNCTION_BUILTIN) break;
|
5a6d7d | 2001-04-10 | Fredrik Hübinette (Hubbe) | | if(func->u.object->prog == pike_trampoline_program)
{
struct object *o;
o=((struct pike_trampoline *)func->u.object->storage)->frame->current_object;
add_ref(o);
pop_n_elems(args);
push_object(o);
return;
}
|
1c1c5e | 2001-04-08 | Fredrik Hübinette (Hubbe) | | func->type=T_OBJECT;
return;
|
5a6d7d | 2001-04-10 | Fredrik Hübinette (Hubbe) | |
default:
SIMPLE_BAD_ARG_ERROR("function_object",1,"function");
|
1c1c5e | 2001-04-08 | Fredrik Hübinette (Hubbe) | | }
pop_n_elems(args);
push_int(0);
}
|
d95fa8 | 2001-06-05 | Fredrik Hübinette (Hubbe) | | /*! @decl int random(int max)
*!
*! This function returns a random number in the range 0 - @[max]-1.
*!
*! @seealso
*! @[random_seed()]
*/
|
e1b419 | 2001-06-06 | Fredrik Hübinette (Hubbe) | |
PIKEFUN mixed random(object o)
|
d95fa8 | 2001-06-05 | Fredrik Hübinette (Hubbe) | | efun;
optflags OPT_TRY_OPTIMIZE|OPT_EXTERNAL_DEPEND;
{
|
e1b419 | 2001-06-06 | Fredrik Hübinette (Hubbe) | | apply(o,"_random",0);
stack_swap();
pop_stack();
}
|
d95fa8 | 2001-06-05 | Fredrik Hübinette (Hubbe) | |
|
e1b419 | 2001-06-06 | Fredrik Hübinette (Hubbe) | | PIKEFUN int random(int i)
{
if(i <= 0) RETURN 0;
RETURN my_rand() % i;
}
PIKEFUN float random(float f)
{
if(f<=0.0) RETURN 0.0;
|
d95fa8 | 2001-06-05 | Fredrik Hübinette (Hubbe) | | #define N 1048576
|
e1b419 | 2001-06-06 | Fredrik Hübinette (Hubbe) | | RETURN f * (my_rand()%N/((float)N)) +
f * (my_rand()%N/( ((float)N) * ((float)N) ));
|
d95fa8 | 2001-06-05 | Fredrik Hübinette (Hubbe) | |
|
e1b419 | 2001-06-06 | Fredrik Hübinette (Hubbe) | | }
|
d95fa8 | 2001-06-05 | Fredrik Hübinette (Hubbe) | |
|
e1b419 | 2001-06-06 | Fredrik Hübinette (Hubbe) | | PIKEFUN mixed random(array a)
{
if(!a->size)
SIMPLE_BAD_ARG_ERROR("random", 1, "array with elements in it");
push_svalue(a->item + (my_rand() % a->size));
stack_swap();
pop_stack();
}
|
d95fa8 | 2001-06-05 | Fredrik Hübinette (Hubbe) | |
|
e1b419 | 2001-06-06 | Fredrik Hübinette (Hubbe) | | PIKEFUN mixed random(multiset m)
{
|
5b15bb | 2001-12-10 | Martin Stjernholm | | if(multiset_is_empty (m))
|
e1b419 | 2001-06-06 | Fredrik Hübinette (Hubbe) | | SIMPLE_BAD_ARG_ERROR("random", 1, "multiset with elements in it");
|
5b15bb | 2001-12-10 | Martin Stjernholm | | #ifdef PIKE_NEW_MULTISETS
if (multiset_indval (m)) {
ptrdiff_t nodepos = multiset_get_nth (m, my_rand() % multiset_sizeof (m));
push_multiset_index (m, nodepos);
push_multiset_value (m, nodepos);
sub_msnode_ref (m);
f_aggregate (2);
}
else {
push_multiset_index (m, multiset_get_nth (m, my_rand() % multiset_sizeof (m)));
sub_msnode_ref (m);
}
#else
|
e1b419 | 2001-06-06 | Fredrik Hübinette (Hubbe) | | push_svalue(m->ind->item + (my_rand() % m->ind->size));
|
5b15bb | 2001-12-10 | Martin Stjernholm | | #endif
|
e1b419 | 2001-06-06 | Fredrik Hübinette (Hubbe) | | stack_swap();
pop_stack();
}
|
d95fa8 | 2001-06-05 | Fredrik Hübinette (Hubbe) | |
|
5b15bb | 2001-12-10 | Martin Stjernholm | | PIKEFUN array random(mapping m)
|
e1b419 | 2001-06-06 | Fredrik Hübinette (Hubbe) | | {
struct mapping_data *md=m->data;
size_t bucket, count;
struct keypair *k;
if(!m_sizeof(m))
SIMPLE_BAD_ARG_ERROR("random", 1, "mapping with elements in it");
/* Find a random, nonempty bucket */
bucket=my_rand() % md->hashsize;
while(! md->hash[bucket] )
if(++bucket > (size_t)md->hashsize)
bucket=0;
/* Count entries in bucket */
count=0;
for(k=md->hash[bucket];k;k=k->next) count++;
/* Select a random entry in this bucket */
count = my_rand() % count;
k=md->hash[bucket];
while(count-- > 0) k=k->next;
/* Push result and return */
push_svalue(&k->ind);
push_svalue(&k->val);
f_aggregate(2);
stack_swap();
pop_stack();
|
d95fa8 | 2001-06-05 | Fredrik Hübinette (Hubbe) | | }
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | /*
* Backtrace handling.
*/
|
bcbce0 | 2001-08-15 | Martin Nilsson | | /*! @module Pike
*/
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | /*! @class BacktraceFrame
*/
PIKECLASS backtrace_frame
{
|
f61a48 | 2001-06-19 | Henrik Grubbström (Grubba) | | PIKEVAR mixed fun;
|
2aca9f | 2001-06-19 | Henrik Grubbström (Grubba) | | PIKEVAR array args;
|
de395b | 2001-06-19 | Henrik Grubbström (Grubba) | | CVAR struct program *prog; /* FIXME: Ought to be a private pikevar... */
|
90f876 | 2002-04-08 | Martin Stjernholm | | CVAR PIKE_OPCODE_T *pc;
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | CVAR struct pike_string *filename;
|
2aca9f | 2001-06-19 | Henrik Grubbström (Grubba) | | CVAR INT_TYPE lineno;
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | |
INIT
{
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | THIS->fun.type = T_INT;
|
f61a48 | 2001-06-19 | Henrik Grubbström (Grubba) | | THIS->fun.u.integer = 0;
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | THIS->prog = NULL;
|
90f876 | 2002-04-08 | Martin Stjernholm | | THIS->pc = NULL;
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | THIS->lineno = 0;
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | THIS->args = NULL;
THIS->filename = NULL;
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | }
EXIT
{
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | if (THIS->prog) {
free_program(THIS->prog);
THIS->prog = NULL;
}
if (THIS->args) {
free_array(THIS->args);
THIS->args = NULL;
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | }
if (THIS->filename) {
free_string(THIS->filename);
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | THIS->filename = NULL;
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | }
|
1073bf | 2001-06-26 | Henrik Grubbström (Grubba) | | THIS->pc = NULL;
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | THIS->lineno = 0;
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | free_svalue(&THIS->fun);
THIS->fun.type = T_INT;
|
de395b | 2001-06-19 | Henrik Grubbström (Grubba) | | THIS->fun.u.integer = 0;
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | }
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | | PIKEFUN int(0..1) _is_type(string t)
{
INT_TYPE res = (t == findstring("array"));
pop_n_elems(args);
push_int(res);
}
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | PIKEFUN string _sprintf(int c, mapping|void opts)
{
pop_n_elems(args);
push_text("backtrace_frame(");
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | if (THIS->pc) {
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | if (!THIS->filename) {
|
50edc8 | 2001-07-13 | Henrik Grubbström (Grubba) | | THIS->filename = get_line(THIS->pc, THIS->prog, &THIS->lineno);
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | }
|
1073bf | 2001-06-26 | Henrik Grubbström (Grubba) | | THIS->pc = NULL;
}
if (THIS->prog) {
free_program(THIS->prog);
THIS->prog = NULL;
}
if (THIS->filename) {
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | ref_push_string(THIS->filename);
push_text(":");
push_int(THIS->lineno);
push_text(", ");
f_add(4);
} else {
push_text("Unknown file, ");
}
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | if (THIS->fun.type == PIKE_T_FUNCTION) {
if (THIS->fun.u.object->prog) {
push_svalue(&THIS->fun);
f_function_name(1);
push_text("(), ");
f_add(2);
} else {
free_svalue(&THIS->fun);
THIS->fun.type = PIKE_T_INT;
THIS->fun.u.integer = 0;
THIS->fun.subtype = NUMBER_DESTRUCTED;
push_text("destructed_function(), ");
}
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | } else {
push_text("destructed_function(), ");
}
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | if (THIS->args) {
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | push_text("Args: ");
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | push_int(THIS->args->size);
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | f_add(2);
} else {
push_text("No args");
}
push_text(")");
f_add(5);
}
PIKEFUN int _sizeof()
{
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | if (THIS->args) {
push_int(THIS->args->size + 3);
} else {
push_int(3);
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | }
}
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | | PIKEFUN mixed `[](int index, int|void end_or_none)
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | {
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | | INT_TYPE end = index;
INT32 numargs = 0;
INT32 i;
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | if (THIS->args) {
numargs = THIS->args->size;
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | }
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | |
numargs += 3;
if (!end_or_none) {
if (index < 0) {
index_error("pike_frame->`[]", Pike_sp-args, args, NULL, Pike_sp-args,
"Indexing with negative index (%"PRINTPIKEINT"d)\n", index);
} else if (index >= numargs) {
index_error("pike_frame->`[]", Pike_sp-args, args, NULL, Pike_sp-args,
"Indexing with too large index (%"PRINTPIKEINT"d)\n", index);
}
} else {
if (end_or_none->type != PIKE_T_INT) {
SIMPLE_BAD_ARG_ERROR("`[]",2,"int|void");
}
end = end_or_none->u.integer;
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | }
pop_n_elems(args);
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | | if (end_or_none) {
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | if ((end < 0) || (end < index) || (index >= numargs)) {
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | | f_aggregate(0);
return;
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | }
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | |
if (end >= numargs) {
end = numargs-1;
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | }
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | | }
for (i = index; i <= end; i++) {
switch(i) {
case 0: /* Filename */
case 1: /* Linenumber */
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | if (THIS->pc) {
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | | if (!THIS->filename) {
|
50edc8 | 2001-07-13 | Henrik Grubbström (Grubba) | | THIS->filename = get_line(THIS->pc, THIS->prog, &THIS->lineno);
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | | }
|
1073bf | 2001-06-26 | Henrik Grubbström (Grubba) | | THIS->pc = NULL;
}
if (THIS->prog) {
free_program(THIS->prog);
THIS->prog = NULL;
}
if (i) {
/* Linenumber */
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | | push_int(THIS->lineno);
} else {
|
1073bf | 2001-06-26 | Henrik Grubbström (Grubba) | | /* Filename */
if (THIS->filename) {
ref_push_string(THIS->filename);
} else {
push_int(0);
}
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | | }
|
1073bf | 2001-06-26 | Henrik Grubbström (Grubba) | | break;
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | | case 2: /* Function */
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | push_svalue(&THIS->fun);
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | | break;
default: /* Arguments */
{
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | if ((i > 2) && (THIS->args) && (i-3 < THIS->args->size)) {
push_svalue(THIS->args->item + (i - 3));
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | | break;
}
bad_arg_error("backtrace_frame->`[]", Pike_sp-args, args, 1,
"int(0..)", Pike_sp-args,
"Bad argument 1 to backtrace_frame->`[](): "
"Expected int(0..%d)\n",
numargs + 2);
}
/* NOT_REACHED */
break;
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | }
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | | }
if (end_or_none) {
f_aggregate(1 + end - index);
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | }
}
|
d2cd4e | 2001-06-18 | Henrik Grubbström (Grubba) | |
|
1073bf | 2001-06-26 | Henrik Grubbström (Grubba) | | PIKEFUN mixed `[]=(int index, mixed value)
{
INT32 numargs = 0;
if (THIS->args) {
numargs = THIS->args->size;
}
numargs += 3;
if ((index < -numargs) || (index >= numargs)) {
index_error("pike_frame->`[]=", Pike_sp-args, args, NULL, Pike_sp-args,
"Index %"PRINTPIKEINT"d is out of array range 0 - %d,\n",
index, numargs-1);
} else if (index < 0) {
index += numargs;
}
if (args > 2) {
pop_n_elems(args - 2);
args = 2;
}
switch(index) {
case 0: /* Filename */
case 1: /* Linenumber */
/* First make sure we have line-number info. */
if (THIS->pc) {
if (!THIS->filename) {
|
50edc8 | 2001-07-13 | Henrik Grubbström (Grubba) | | THIS->filename = get_line(THIS->pc, THIS->prog, &THIS->lineno);
|
1073bf | 2001-06-26 | Henrik Grubbström (Grubba) | | }
THIS->pc = NULL;
}
if (THIS->prog) {
free_program(THIS->prog);
THIS->prog = NULL;
}
if (index) {
/* Linenumber */
if (value->type != PIKE_T_INT) {
SIMPLE_BAD_ARG_ERROR("backtrace_frame->`[]=", 2, "int(1..)");
}
THIS->lineno = value->u.integer;
} else {
/* Filename */
if (value->type != PIKE_T_STRING) {
if ((value->type != PIKE_T_INT) ||
(value->u.integer)) {
SIMPLE_BAD_ARG_ERROR("backtrace_frame->`[]=", 2,
"string|int(0..0)");
}
if (THIS->filename) {
free_string(THIS->filename);
THIS->filename = NULL;
}
} else {
if (THIS->filename) {
free_string(THIS->filename);
THIS->filename = NULL;
}
copy_shared_string(THIS->filename, value->u.string);
}
}
break;
case 2: /* Function */
assign_svalue(&THIS->fun, value);
break;
default: /* Arguments */
assign_svalue(THIS->args->item + index - 3, value);
break;
}
stack_swap();
pop_stack();
}
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | };
/*! @endclass
*/
|
bcbce0 | 2001-08-15 | Martin Nilsson | | /*! @endmodule
*/
|
a8e989 | 2001-09-05 | Fredrik Hübinette (Hubbe) | | void low_backtrace(struct Pike_interpreter *i)
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | {
|
c98dd2 | 2001-06-26 | Martin Stjernholm | | struct pike_frame *f, *of = 0;
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | int size = 0;
|
9906e3 | 2001-06-20 | Henrik Grubbström (Grubba) | | struct array *res = NULL;
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | |
|
a8e989 | 2001-09-05 | Fredrik Hübinette (Hubbe) | | for (f = i->frame_pointer; f; f = f->next) {
|
9906e3 | 2001-06-20 | Henrik Grubbström (Grubba) | | size++;
}
res = allocate_array_no_init(size, 0);
push_array(res);
|
a8e989 | 2001-09-05 | Fredrik Hübinette (Hubbe) | | for (f = i->frame_pointer; f && size; f = (of = f)->next) {
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | struct object *o = low_clone(backtrace_frame_program);
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | struct backtrace_frame_struct *bf;
|
e89d72 | 2002-01-04 | Henrik Grubbström (Grubba) | | struct identifier *function = NULL;
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | |
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | call_c_initializers(o);
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | |
|
9906e3 | 2001-06-20 | Henrik Grubbström (Grubba) | | size--;
res->item[size].u.object = o;
res->item[size].type = PIKE_T_OBJECT;
res->item[size].subtype = 0;
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | bf = OBJ2_BACKTRACE_FRAME(o);
if ((bf->prog = f->context.prog)) {
add_ref(bf->prog);
|
90f876 | 2002-04-08 | Martin Stjernholm | | bf->pc = f->pc + ( (f->flags & PIKE_FRAME_RETURN_INTERNAL) ? -1 : 0);
|
1ce86a | 2001-11-08 | Fredrik Hübinette (Hubbe) | |
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | }
if ((bf->fun.u.object = f->current_object) &&
(bf->fun.u.object->prog)) {
add_ref(bf->fun.u.object);
bf->fun.subtype = f->fun;
bf->fun.type = PIKE_T_FUNCTION;
|
e89d72 | 2002-01-04 | Henrik Grubbström (Grubba) | | function = ID_FROM_INT(f->current_object->prog, f->fun);
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | } else {
bf->fun.u.integer = 0;
bf->fun.subtype = NUMBER_DESTRUCTED;
bf->fun.type = PIKE_T_INT;
}
if (f->locals) {
INT32 numargs = DO_NOT_WARN((INT32) MINIMUM(f->num_args,
|
a8e989 | 2001-09-05 | Fredrik Hübinette (Hubbe) | | i->stack_pointer - f->locals));
|
e89d72 | 2002-01-04 | Henrik Grubbström (Grubba) | | INT32 varargs = 0;
|
c98dd2 | 2001-06-26 | Martin Stjernholm | | if(of)
/* f->num_args can be too large, so this is necessary for some
* reason. I don't know why. /mast */
numargs = DO_NOT_WARN((INT32)MINIMUM(f->num_args,of->locals - f->locals));
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | |
numargs = MAXIMUM(numargs, 0);
|
e89d72 | 2002-01-04 | Henrik Grubbström (Grubba) | | /* Handle varargs... */
if (function && (function->identifier_flags & IDENTIFIER_VARARGS) &&
(f->locals + numargs < i->stack_pointer) &&
(f->locals[numargs].type == T_ARRAY)) {
varargs = f->locals[numargs].u.array->size;
}
if (numargs + varargs) {
bf->args = allocate_array_no_init(numargs + varargs, 0);
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | assign_svalues_no_free(bf->args->item, f->locals, numargs, BIT_MIXED);
|
e89d72 | 2002-01-04 | Henrik Grubbström (Grubba) | | if (varargs) {
assign_svalues_no_free(bf->args->item + numargs,
f->locals[numargs].u.array->item,
varargs, BIT_MIXED);
}
|
0f47db | 2001-06-19 | Henrik Grubbström (Grubba) | | }
}
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | }
|
9906e3 | 2001-06-20 | Henrik Grubbström (Grubba) | | /* NOTE: res has already been pushed on the stack. */
|
d27df5 | 2001-06-18 | Henrik Grubbström (Grubba) | | }
|
e1b419 | 2001-06-06 | Fredrik Hübinette (Hubbe) | |
|
a8e989 | 2001-09-05 | Fredrik Hübinette (Hubbe) | | /*! @decl array(Pike.BacktraceFrame) backtrace()
*!
*! FIXME: This documentation is not up to date!
*!
*! Get a description of the current call stack.
*!
*! The description is returned as an array with one entry for each call
*! frame on the stack.
*!
*! Each entry has this format:
*! @array
*! @elem string file
*! A string with the filename if known, else zero.
*! @elem int line
*! An integer containing the linenumber if known, else zero.
*! @elem function fun
*! The function that was called at this level.
*! @elem mixed|void ... args
*! The arguments that the function was called with.
*! @endarray
*!
*! The current call frame will be last in the array.
*!
*! @note
*! Please note that the frame order may be reversed in a later version
*! (than 7.1) of Pike to accomodate for deferred backtraces.
*!
*! Note that the arguments reported in the backtrace are the current
*! values of the variables, and not the ones that were at call-time.
*! This can be used to hide sensitive information from backtraces
*! (eg passwords).
*!
*! @seealso
*! @[catch()], @[throw()]
*/
PMOD_EXPORT
PIKEFUN array(mixed) backtrace()
efun;
optflags OPT_EXTERNAL_DEPEND;
{
low_backtrace(& Pike_interpreter);
}
|
a3c433 | 2001-06-20 | Per Hedbor | | #define INITIAL_BUF_LEN 4096
/*! @module String
*/
/*! @class Buffer
*! A buffer, used for building strings. It's
*! conceptually similar to a string, but you can only @[add]
*! strings to it, and you can only @[get] the value from it once.
*!
*! There is a reason for those seemingly rather odd limitations,
*! it makes it possible to do some optimizations that really speed
*! things up.
*!
*! You do not need to use this class unless you add very many
*! strings together, or very large strings.
*!
*! @example
*! For the fastest possible operation, write your code like this:
*!
*! @code{
*! String.Buffer b = String.Buffer( );
*!
*! function add = b->add;
*!
*! .. call add several times in code ...
*!
*! string result = b->get(); // also clears the buffer
*! @}
*/
|
41730d | 2001-07-26 | Martin Nilsson | | PIKECLASS Buffer
|
a3c433 | 2001-06-20 | Per Hedbor | | {
|
73b07a | 2001-06-21 | Per Hedbor | | CVAR struct string_builder str;
CVAR int initial;
|
a3c433 | 2001-06-20 | Per Hedbor | | void f_Buffer_get_copy( INT32 args );
void f_Buffer_get( INT32 args );
void f_Buffer_add( INT32 args );
|
a46585 | 2002-01-01 | Martin Nilsson | | /*! @decl void create(int initial_size)
|
41730d | 2001-07-26 | Martin Nilsson | | *!
*! Initializes a new buffer.
*!
|
1f88bf | 2001-09-24 | Henrik Grubbström (Grubba) | | *! If no @[initial_size] is specified, 256 is used. If you
|
41730d | 2001-07-26 | Martin Nilsson | | *! know approximately how big the buffer will be, you can optimize
*! the operation of @[add()] (slightly) by passing the size to this
*! function.
*/
|
a3c433 | 2001-06-20 | Per Hedbor | | PIKEFUN void create( int|void size )
{
struct Buffer_struct *str = THIS;
if( args )
str->initial = MAXIMUM( size->u.integer, 512 );
else
{
|
73b07a | 2001-06-21 | Per Hedbor | | str->initial = 256;
|
a3c433 | 2001-06-20 | Per Hedbor | | push_int(0);
}
}
PIKEFUN string _sprintf( int flag, mapping flags )
{
switch( flag )
{
case 'O':
{
struct pike_string *res;
struct Buffer_struct *str = THIS;
push_text( "Buffer(%d /* %d */)" );
|
73b07a | 2001-06-21 | Per Hedbor | | if( str->str.s )
|
a3c433 | 2001-06-20 | Per Hedbor | | {
|
73b07a | 2001-06-21 | Per Hedbor | | push_int(str->str.s->len);
push_int(str->str.malloced);
|
a3c433 | 2001-06-20 | Per Hedbor | | }
else
{
push_int( 0 );
push_int( 0 );
}
f_sprintf( 3 );
res = Pike_sp[-1].u.string;
Pike_sp--;
RETURN res;
}
case 's':
{
pop_n_elems( args );
if( Pike_fp->current_object->refs != 1 )
f_Buffer_get_copy( 0 );
else
f_Buffer_get( 0 );
}
return;
case 't':
RETURN make_shared_binary_string("Buffer",6);
}
pop_n_elems( args );
push_int( 0 );
Pike_sp[-1].subtype = 1;
}
PIKEFUN mixed cast( string type )
{
struct pike_string *string_t;
struct pike_string *int_t;
MAKE_CONSTANT_SHARED_STRING( string_t, "string" );
MAKE_CONSTANT_SHARED_STRING( int_t, "int" );
if( type == string_t )
{
pop_n_elems( args );
if( Pike_fp->current_object->refs != 1 )
f_Buffer_get_copy( 0 );
else
f_Buffer_get( 0 );
return;
}
if( type == int_t )
{
struct Buffer_struct *str = THIS;
pop_stack();
if( Pike_fp->current_object->refs != 1 )
f_Buffer_get_copy( 0 );
else
f_Buffer_get( 0 );
o_cast_to_int( );
return;
}
Pike_error("Cannot cast to %s\n", type->str );
}
PIKEFUN object `+( string what )
{
struct Buffer_struct *str = THIS, *str2;
struct object *res = clone_object( Buffer_program, 0 );
|
73b07a | 2001-06-21 | Per Hedbor | | if( str->str.s )
{
str2 = OBJ2_BUFFER( res );
if( str2->str.s ) free_string_builder( &str2->str );
*str2 = *str;
init_string_builder_alloc( &str2->str,
str->str.malloced,
str->str.s->size_shift );
MEMCPY( (void *)str2->str.s, (void *)str->str.s,
str->str.malloced+sizeof(struct pike_string));
}
|
a3c433 | 2001-06-20 | Per Hedbor | | apply( res, "add", 1 );
RETURN res;
}
|
4e5f5d | 2001-10-04 | Martin Nilsson | | /*! @decl int add(string ... data)
|
41730d | 2001-07-26 | Martin Nilsson | | *!
*! Adds @[data] to the buffer. Returns the size of the buffer.
*!
*/
|
3301b1 | 2001-06-20 | Per Hedbor | | PIKEFUN int add( string ... arg1 )
|
a3c433 | 2001-06-20 | Per Hedbor | | {
struct Buffer_struct *str = THIS;
|
3301b1 | 2001-06-20 | Per Hedbor | | int j;
|
b195b9 | 2001-09-21 | Henrik Grubbström (Grubba) | |
if (!str->str.s && args) {
int sum = 0;
int shift = 0;
for (j=0; j < args; j++) {
struct pike_string *a = Pike_sp[j-args].u.string;
sum += a->len;
shift |= a->size_shift;
}
if (sum < str->initial) {
sum = str->initial;
}
init_string_builder_alloc(&str->str, sum, shift & ~(shift>>1));
}
|
a3c433 | 2001-06-20 | Per Hedbor | |
|
3301b1 | 2001-06-20 | Per Hedbor | | for( j = 0; j<args; j++ )
|
a3c433 | 2001-06-20 | Per Hedbor | | {
|
b195b9 | 2001-09-21 | Henrik Grubbström (Grubba) | | struct pike_string *a = Pike_sp[j-args].u.string;
|
73b07a | 2001-06-21 | Per Hedbor | | string_builder_shared_strcat( &str->str, a );
|
3301b1 | 2001-06-20 | Per Hedbor | | }
|
b195b9 | 2001-09-21 | Henrik Grubbström (Grubba) | |
if (str->str.s) {
RETURN str->str.s->len;
} else {
RETURN 0;
}
|
a3c433 | 2001-06-20 | Per Hedbor | | }
|
41730d | 2001-07-26 | Martin Nilsson | | /*! @decl string get_copy()
*!
*! Get the data from the buffer. Significantly slower than @[get],
*! but does not clear the buffer.
*/
|
a3c433 | 2001-06-20 | Per Hedbor | | PIKEFUN string get_copy()
{
|
73b07a | 2001-06-21 | Per Hedbor | | struct pike_string *str = THIS->str.s;
if( str )
|
a3c433 | 2001-06-20 | Per Hedbor | | {
|
73b07a | 2001-06-21 | Per Hedbor | | ptrdiff_t len = str->len;
if( len > 0 )
{
char *d = (char *)str->str;
switch( str->size_shift )
{
case 0:
RETURN make_shared_binary_string(d,len);
break;
case 1:
RETURN make_shared_binary_string1((short*)d,len>>1);
break;
case 2:
RETURN make_shared_binary_string2((int*)d,len>>2);
break;
}
}
|
a3c433 | 2001-06-20 | Per Hedbor | | }
|
73b07a | 2001-06-21 | Per Hedbor | | push_text("");
return;
|
a3c433 | 2001-06-20 | Per Hedbor | | }
|
41730d | 2001-07-26 | Martin Nilsson | | /*! @decl string get()
*!
*! Get the data from the buffer.
*!
*! @note
*! This will clear the data in the buffer
*/
|
a3c433 | 2001-06-20 | Per Hedbor | | PIKEFUN string get( )
{
struct Buffer_struct *str = THIS;
|
73b07a | 2001-06-21 | Per Hedbor | | if( str->str.s )
|
a3c433 | 2001-06-20 | Per Hedbor | | {
|
73b07a | 2001-06-21 | Per Hedbor | | struct pike_string *s = finish_string_builder( &str->str );
str->str.malloced = 0;
str->str.s = 0;
RETURN s;
|
a3c433 | 2001-06-20 | Per Hedbor | | }
|
73b07a | 2001-06-21 | Per Hedbor | | pop_n_elems(args);
push_text("");
return;
|
a3c433 | 2001-06-20 | Per Hedbor | | }
|
edb084 | 2001-07-11 | Martin Stjernholm | | /*! @decl int _sizeof()
*!
*! Returns the size of the buffer.
*/
|
41730d | 2001-07-26 | Martin Nilsson | | PIKEFUN int _sizeof()
|
edb084 | 2001-07-11 | Martin Stjernholm | | {
struct Buffer_struct *str = THIS;
RETURN str->str.s ? str->str.s->len : 0;
}
|
a3c433 | 2001-06-20 | Per Hedbor | | INIT
{
struct Buffer_struct *str = THIS;
|
73b07a | 2001-06-21 | Per Hedbor | | MEMSET( str, 0, sizeof( *str ) );
|
a3c433 | 2001-06-20 | Per Hedbor | | }
EXIT
{
struct Buffer_struct *str = THIS;
|
73b07a | 2001-06-21 | Per Hedbor | | if( str->str.s )
free_string_builder( &str->str );
|
a3c433 | 2001-06-20 | Per Hedbor | | }
}
|
41730d | 2001-07-26 | Martin Nilsson | | /*! @endclass
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | | */
/*! @class Replace
*/
PIKECLASS multi_string_replace
{
CVAR struct tupel
{
int prefix;
struct pike_string *ind;
struct pike_string *val;
} *v;
CVAR size_t v_sz;
CVAR size_t sz;
CVAR INT32 set_start[256];
CVAR INT32 set_end[256];
static int replace_sortfun(struct tupel *a,struct tupel *b)
{
return DO_NOT_WARN((int)my_quick_strcmp(a->ind, b->ind));
}
|
f01b12 | 2001-07-01 | Henrik Grubbström (Grubba) | | PIKEFUN void create(array(string)|void from_, array(string)|void to_)
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | | {
int i;
|
f01b12 | 2001-07-01 | Henrik Grubbström (Grubba) | | struct array *from;
struct array *to;
if (!args) {
push_int(0);
return;
}
if (!from_ || !to_) {
Pike_error("Bad number of arguments to create().\n");
}
from = from_->u.array;
to = to_->u.array;
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | | if (from->size != to->size) {
Pike_error("Replace must have equal-sized from and to arrays.\n");
}
for (i = 0; i < (int)from->size; i++) {
if (from->item[i].type != PIKE_T_STRING) {
Pike_error("Replace: from array is not an array(string).\n");
}
if (to->item[i].type != PIKE_T_STRING) {
Pike_error("Replace: to array is not an array(string).\n");
}
}
if (THIS->v) {
for (i = 0; i < (int)THIS->v_sz; i++) {
if (!THIS->v[i].ind) break;
free_string(THIS->v[i].ind);
THIS->v[i].ind = NULL;
free_string(THIS->v[i].val);
THIS->v[i].val = NULL;
}
}
if (THIS->v && (THIS->v_sz < (size_t)from->size)) {
free(THIS->v);
THIS->v = NULL;
THIS->v_sz = 0;
}
if (!THIS->v) {
THIS->v = (struct tupel *)xalloc(sizeof(struct tupel) * from->size);
THIS->v_sz = from->size;
}
for (i = 0; i < (int)from->size; i++) {
copy_shared_string(THIS->v[i].ind, from->item[i].u.string);
copy_shared_string(THIS->v[i].val, to->item[i].u.string);
THIS->v[i].prefix = -2; /* Uninitialized */
}
THIS->sz = from->size;
fsort((char *)THIS->v, from->size, sizeof(struct tupel),
(fsortfun)replace_sortfun);
MEMSET(THIS->set_start, 0, sizeof(INT32)*256);
MEMSET(THIS->set_end, 0, sizeof(INT32)*256);
for (i = 0; i < (int)from->size; i++) {
INT32 x = index_shared_string(THIS->v[from->size-1-i].ind, 0);
if ((x >= 0) && (x < 256))
THIS->set_start[x] = from->size-1-i;
x = index_shared_string(THIS->v[i].ind, 0);
if ((x >= 0) && (x < 256))
THIS->set_end[x] = i+1;
}
|
f01b12 | 2001-07-01 | Henrik Grubbström (Grubba) | | pop_n_elems(args);
push_int(0);
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | | }
static int find_longest_prefix(char *str,
ptrdiff_t len,
int size_shift,
struct tupel *v,
INT32 a,
INT32 b)
{
INT32 c,match=-1;
ptrdiff_t tmp;
while(a<b)
{
c=(a+b)/2;
tmp=generic_quick_binary_strcmp(v[c].ind->str,
v[c].ind->len,
v[c].ind->size_shift,
str,
MINIMUM(len,v[c].ind->len),
size_shift);
if(tmp<0)
{
INT32 match2=find_longest_prefix(str,
len,
size_shift,
v,
c+1,
b);
if(match2!=-1) return match2;
while(1)
{
if(v[c].prefix==-2)
{
v[c].prefix=find_longest_prefix(v[c].ind->str,
v[c].ind->len,
v[c].ind->size_shift,
v,
0 /* can this be optimized? */,
c);
}
c=v[c].prefix;
if(c<a || c<match) return match;
if(!generic_quick_binary_strcmp(v[c].ind->str,
v[c].ind->len,
v[c].ind->size_shift,
str,
MINIMUM(len,v[c].ind->len),
size_shift))
return c;
}
}
else if(tmp>0)
{
b=c;
}
else
{
a=c+1; /* There might still be a better match... */
match=c;
}
}
return match;
}
PIKEFUN string `()(string str)
{
struct string_builder ret;
ptrdiff_t length = str->len;
ptrdiff_t s;
int *set_start = THIS->set_start;
int *set_end = THIS->set_end;
struct tupel *v = THIS->v;
int num = THIS->sz;
if (!num) {
add_ref(str);
RETURN str;
}
init_string_builder(&ret,str->size_shift);
for(s=0;length > 0;)
{
INT32 a,b;
ptrdiff_t ch;
ch = index_shared_string(str, s);
if((ch >= 0) && (ch < 256))
b = set_end[ch];
else
b = num;
if(b)
{
if((ch >= 0) && (ch < 256))
a = set_start[ch];
else
a = 0;
a = find_longest_prefix(str->str+(s << str->size_shift),
length,
str->size_shift,
v, a, b);
if(a!=-1)
{
ch = v[a].ind->len;
if(!ch) ch=1;
s += ch;
length -= ch;
string_builder_shared_strcat(&ret, v[a].val);
continue;
}
}
string_builder_putchar(&ret,
DO_NOT_WARN((INT32)ch));
s++;
length--;
}
RETURN finish_string_builder(&ret);
}
|
9f9157 | 2001-07-01 | Henrik Grubbström (Grubba) | | PIKEFUN array(string) _encode()
{
size_t i;
for (i=0; i < THIS->sz; i++) {
ref_push_string(THIS->v[i].ind);
}
f_aggregate(DO_NOT_WARN((INT32)THIS->sz));
for (i=0; i < THIS->sz; i++) {
ref_push_string(THIS->v[i].val);
}
f_aggregate(DO_NOT_WARN((INT32)THIS->sz));
f_aggregate(2);
}
PIKEFUN void _decode(array(array(string)) encoded)
{
INT32 i;
for (i=0; i < encoded->size; i++) {
push_svalue(encoded->item + i);
stack_swap();
}
pop_stack();
f_multi_string_replace_create(i);
}
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | | INIT
{
THIS->v = NULL;
THIS->v_sz = 0;
THIS->sz = 0;
}
EXIT
{
if (THIS->v) {
int i;
for (i = 0; i < (int)THIS->v_sz; i++) {
if (!THIS->v[i].ind) break;
free_string(THIS->v[i].ind);
THIS->v[i].ind = NULL;
free_string(THIS->v[i].val);
THIS->v[i].val = NULL;
}
free(THIS->v);
}
THIS->v = NULL;
THIS->v_sz = 0;
THIS->sz = 0;
}
}
|
0c4ad0 | 2001-07-05 | Henrik Grubbström (Grubba) | | /*! @endclass
*/
|
832dd6 | 2002-02-21 | Per Hedbor | | /* NOTE: Documentation for these recides in System.pmod. */
PIKECLASS Time
{
CVAR int hard_update;
PIKEFUN int `->( string x )
{
extern struct timeval current_time;
struct pike_string *usec;
struct pike_string *sec;
MAKE_CONSTANT_SHARED_STRING( sec, "sec" );
MAKE_CONSTANT_SHARED_STRING( usec, "usec" );
if( !x )
RETURN 0;
if( THIS->hard_update )
|
812f9a | 2002-04-06 | Henrik Grubbström (Grubba) | | GETTIMEOFDAY( ¤t_time );
|
832dd6 | 2002-02-21 | Per Hedbor | |
if( x == usec )
RETURN current_time.tv_usec;
if( x == sec )
RETURN current_time.tv_sec;
#ifdef AUTO_BIGNUM
pop_stack();
push_int( current_time.tv_sec );
push_int( 1000000 );
f_multiply( 2 );
push_int( current_time.tv_usec );
f_add( 2 );
return;
#else
RETURN (current_time.tv_sec * 1000000 + current_time.tv_usec);
#endif
}
PIKEFUN int `[]( string x )
{
f_Time_cq__backtick_2D_3E( args );
}
PIKEFUN void create( int|void fast )
{
THIS->hard_update = !fast;
}
}
PIKECLASS Timer
{
CVAR struct timeval last_time;
CVAR int hard_update;
|
362ddd | 2002-02-21 | Per Hedbor | |
PIKEFUN float peek( )
|
832dd6 | 2002-02-21 | Per Hedbor | | {
extern struct timeval current_time;
FLOAT_TYPE res;
if( THIS->hard_update )
|
812f9a | 2002-04-06 | Henrik Grubbström (Grubba) | | GETTIMEOFDAY( ¤t_time );
|
832dd6 | 2002-02-21 | Per Hedbor | | res = current_time.tv_sec-THIS->last_time.tv_sec +
(current_time.tv_usec-THIS->last_time.tv_usec)/1000000.0;
RETURN res;
}
|
362ddd | 2002-02-21 | Per Hedbor | | PIKEFUN float get( )
{
extern struct timeval current_time;
f_Timer_peek( 0 );
THIS->last_time = current_time;
return;
}
|
832dd6 | 2002-02-21 | Per Hedbor | | PIKEFUN void create( int|void fast )
{
extern struct timeval current_time;
THIS->hard_update = !fast;
if( THIS->hard_update )
|
812f9a | 2002-04-06 | Henrik Grubbström (Grubba) | | GETTIMEOFDAY( ¤t_time );
|
832dd6 | 2002-02-21 | Per Hedbor | | THIS->last_time = current_time;
}
}
|
0c4ad0 | 2001-07-05 | Henrik Grubbström (Grubba) | | /*! @class SingleReplace
*/
PIKECLASS single_string_replace
{
CVAR SearchMojt mojt;
CVAR struct pike_string *del;
CVAR struct pike_string *to;
INIT
{
THIS->mojt.vtab = NULL;
THIS->mojt.data = NULL;
THIS->del = NULL;
THIS->to = NULL;
}
EXIT
{
if (THIS->mojt.vtab) {
THIS->mojt.vtab->freeme(THIS->mojt.data);
THIS->mojt.vtab = NULL;
THIS->mojt.data = NULL;
}
if (THIS->del) {
free_string(THIS->del);
THIS->del = NULL;
}
if (THIS->to) {
free_string(THIS->to);
THIS->to = NULL;
}
}
PIKEFUN void create(string|void del_, string|void to_)
{
struct pike_string *del;
struct pike_string *to;
/* Clean up... */
exit_single_string_replace_struct();
if (!del_) return;
if (!to_) {
SIMPLE_BAD_ARG_ERROR("String.SingleReplace->create", 2, "string");
}
if (del_->u.string == to_->u.string) {
/* No-op... */
return;
}
copy_shared_string(THIS->del, del = del_->u.string);
copy_shared_string(THIS->to, to = to_->u.string);
if (del->len) {
|
50edc8 | 2001-07-13 | Henrik Grubbström (Grubba) | | THIS->mojt = simple_compile_memsearcher(del);
|
0c4ad0 | 2001-07-05 | Henrik Grubbström (Grubba) | | }
}
/*** replace function ***/
typedef char *(* replace_searchfunc)(void *,void *,size_t);
PIKEFUN string `()(string str)
{
int shift;
struct pike_string *del = THIS->del;
struct pike_string *to = THIS->to;
struct pike_string *ret = NULL;
if (!str->len || !del || !to) {
/* The result is already on the stack in the correct place... */
return;
}
shift = MAXIMUM(str->size_shift, to->size_shift);
if (!del->len) {
int e, pos;
ret = begin_wide_shared_string(str->len + to->len * (str->len-1),
shift);
low_set_index(ret, 0, index_shared_string(str, 0));
for(pos=e=1;e<str->len;e++)
{
pike_string_cpy(MKPCHARP_STR_OFF(ret,pos), to);
pos+=to->len;
low_set_index(ret,pos++,index_shared_string(str,e));
}
} else {
char *s, *end, *tmp;
replace_searchfunc f = (replace_searchfunc)0;
void *mojt_data = THIS->mojt.data;
PCHARP r;
end = str->str+(str->len<<str->size_shift);
switch(str->size_shift)
{
case 0: f = (replace_searchfunc)THIS->mojt.vtab->func0; break;
case 1: f = (replace_searchfunc)THIS->mojt.vtab->func1; break;
case 2: f = (replace_searchfunc)THIS->mojt.vtab->func2; break;
#ifdef PIKE_DEBUG
default: fatal("Illegal shift.\n");
#endif
}
if(del->len == to->len)
{
ret = begin_wide_shared_string(str->len, shift);
} else {
INT32 delimiters = 0;
s = str->str;
while((s = f(mojt_data, s, (end-s)>>str->size_shift)))
{
delimiters++;
s += del->len << str->size_shift;
}
if (!delimiters) {
/* The result is already on the stack in the correct place... */
return;
}
ret = begin_wide_shared_string(str->len +
(to->len-del->len)*delimiters, shift);
}
s = str->str;
r = MKPCHARP_STR(ret);
while((tmp = f(mojt_data, s, (end-s)>>str->size_shift)))
{
#ifdef PIKE_DEBUG
if(tmp + (del->len << str->size_shift) > end)
fatal("generic_memory_search found a match beyond end of string!\n");
#endif
generic_memcpy(r,MKPCHARP(s,str->size_shift),(tmp-s)>>str->size_shift);
INC_PCHARP(r,(tmp-s)>>str->size_shift);
pike_string_cpy(r,to);
INC_PCHARP(r,to->len);
s=tmp+(del->len << str->size_shift);
}
generic_memcpy(r,MKPCHARP(s,str->size_shift),(end-s)>>str->size_shift);
}
RETURN end_shared_string(ret);
}
PIKEFUN array(string) _encode()
{
if (THIS->del) {
ref_push_string(THIS->del);
ref_push_string(THIS->to);
f_aggregate(2);
} else {
push_int(0);
}
}
PIKEFUN void _decode(array(string)|int(0..0) encoded_)
{
INT32 i = 0;
if (encoded_->type == PIKE_T_ARRAY) {
struct array *encoded = encoded_->u.array;
for (i=0; i < encoded->size; i++) {
push_svalue(encoded->item + i);
stack_swap();
}
}
pop_stack();
f_single_string_replace_create(i);
}
}
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | | /*! @endclass
*/
/*! @endmodule
*/
|
a3c433 | 2001-06-20 | Per Hedbor | |
|
8bef1b | 2001-09-27 | Fredrik Hübinette (Hubbe) | |
PIKECLASS automap_marker
{
PIKEVAR array arg;
PIKEVAR int depth;
PIKEFUN void create(array a, int d)
{
if(THIS->arg) free_array(THIS->arg);
add_ref(THIS->arg=a);
THIS->depth=d;
}
PIKEFUN string _sprintf(int mode, mapping flags)
{
pop_n_elems(args);
push_text("%O%*'[*]'n");
if(THIS->arg)
ref_push_array(THIS->arg);
else
push_int(0);
push_int(THIS->depth*3);
f_sprintf(3);
}
}
static void low_automap(int d,
int depth,
struct svalue *fun,
struct svalue *real_args,
INT32 args)
{
INT32 x,e,tmp,size=0x7fffffff;
struct svalue *tmpargs=Pike_sp - args;
struct array *ret;
for(e=0;e<args;e++)
{
if(real_args[e].type==T_OBJECT &&
real_args[e].u.object->prog == automap_marker_program &&
OBJ2_AUTOMAP_MARKER(real_args[e].u.object)->depth >= d)
{
if(tmpargs[e].type != T_ARRAY)
|
a241e0 | 2001-09-27 | Fredrik Hübinette (Hubbe) | | index_error("__automap__",
Pike_sp-args,
args,
tmpargs,
NULL,
"Automap on non-array.\n");
|
8bef1b | 2001-09-27 | Fredrik Hübinette (Hubbe) | | tmp=tmpargs[e].u.array->size;
if(tmp < size)
size=tmp;
}
}
#ifdef PIKE_DEBUG
if(size == 0x7fffffff)
fatal("No automap markers found in low_automap\n");
#endif
push_array(ret=allocate_array(size));
for(x=0;x<size;x++)
{
for(e=0;e<args;e++)
{
if(real_args[e].type==T_OBJECT &&
real_args[e].u.object->prog == automap_marker_program &&
OBJ2_AUTOMAP_MARKER(real_args[e].u.object)->depth >= d)
{
#ifdef PIKE_DEBUG
if(x >= tmpargs[e].u.array->size)
fatal("low_automap failed to determine size!\n");
#endif
push_svalue(ITEM(tmpargs[e].u.array)+x);
}else{
push_svalue(tmpargs+e);
}
}
if(d == depth)
apply_svalue(fun,args);
else
low_automap(d+1,depth,fun,real_args,args);
ITEM(ret)[x]=*--Pike_sp;
}
stack_unlink(args);
}
PIKEFUN array __automap__(mixed fun, mixed ... tmpargs)
efun;
{
int e,depth=-1;
check_stack(args);
for(e=0;e<args-1;e++)
{
if(tmpargs[e].type==T_OBJECT &&
tmpargs[e].u.object->prog == automap_marker_program)
{
int tmp=OBJ2_AUTOMAP_MARKER(tmpargs[e].u.object)->depth;
if(tmp > depth) depth=tmp;
ref_push_array(OBJ2_AUTOMAP_MARKER(tmpargs[e].u.object)->arg);
}else{
push_svalue(tmpargs+e);
}
}
check_stack(depth * (args+1));
low_automap(1,depth,fun,tmpargs,args-1);
stack_unlink(args);
}
|
3a5b1d | 2000-05-24 | Fredrik Hübinette (Hubbe) | | void init_builtin(void)
{
|
ab8282 | 2000-05-25 | Fredrik Hübinette (Hubbe) | | INIT
|
3a5b1d | 2000-05-24 | Fredrik Hübinette (Hubbe) | | }
|
865075 | 2001-06-25 | Henrik Grubbström (Grubba) | |
void exit_builtin(void)
{
EXIT
}
|