e576bb | 2002-10-11 | Martin Nilsson | | |
8fe0e4 | 2005-05-08 | Martin Nilsson | | || $Id: builtin_functions.c,v 1.598 2005/05/08 11:15:24 nilsson Exp $
|
e576bb | 2002-10-11 | Martin Nilsson | | */
|
aedfb1 | 2002-10-09 | Martin Nilsson | |
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | #include "global.h"
#include "interpret.h"
#include "svalue.h"
|
bb55f8 | 1997-03-16 | Fredrik Hübinette (Hubbe) | | #include "pike_macros.h"
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | #include "object.h"
#include "program.h"
#include "array.h"
|
b2d3e4 | 2000-12-01 | Fredrik Hübinette (Hubbe) | | #include "pike_error.h"
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | #include "constants.h"
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | #include "mapping.h"
#include "stralloc.h"
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | #include "multiset.h"
#include "pike_types.h"
|
66bcf0 | 2002-12-07 | Henrik Grubbström (Grubba) | | #include "pike_rusage.h"
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | #include "operators.h"
#include "fsort.h"
#include "callback.h"
|
624d09 | 1996-02-24 | Fredrik Hübinette (Hubbe) | | #include "gc.h"
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | #include "backend.h"
#include "main.h"
|
9aa6fa | 1997-05-19 | Fredrik Hübinette (Hubbe) | | #include "pike_memory.h"
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | | #include "threads.h"
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | #include "time_stuff.h"
|
6023ae | 1997-01-18 | Fredrik Hübinette (Hubbe) | | #include "version.h"
|
aac015 | 1997-01-26 | Fredrik Hübinette (Hubbe) | | #include "encode.h"
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | #include <math.h>
|
38bddc | 1996-08-12 | Fredrik Hübinette (Hubbe) | | #include <ctype.h>
|
32a958 | 1997-01-31 | Fredrik Hübinette (Hubbe) | | #include "module_support.h"
|
9c6f7d | 1997-04-15 | Fredrik Hübinette (Hubbe) | | #include "module.h"
#include "opcodes.h"
|
fc3345 | 1997-10-02 | Fredrik Hübinette (Hubbe) | | #include "cyclic.h"
|
89b072 | 1998-05-05 | Fredrik Hübinette (Hubbe) | | #include "signal_handler.h"
|
37775c | 2004-04-06 | Martin Nilsson | | #include "pike_security.h"
|
c1073a | 1999-05-11 | Mirar (Pontus Hagland) | | #include "builtin_functions.h"
|
39ac73 | 1999-10-20 | Fredrik Noring | | #include "bignum.h"
|
629c5e | 2001-08-31 | Martin Stjernholm | | #include "peep.h"
|
081147 | 2001-07-02 | Fredrik Hübinette (Hubbe) | | #include "docode.h"
#include "lex.h"
|
a63b36 | 2003-11-07 | Martin Stjernholm | | #include "pike_float.h"
|
693018 | 1996-02-25 | Fredrik Hübinette (Hubbe) | |
|
8bee43 | 1998-04-01 | Henrik Grubbström (Grubba) | | #ifdef HAVE_POLL
|
df284f | 1998-04-29 | Henrik Grubbström (Grubba) | | #ifdef HAVE_POLL_H
|
8bee43 | 1998-04-01 | Henrik Grubbström (Grubba) | | #include <poll.h>
|
df284f | 1998-04-29 | Henrik Grubbström (Grubba) | | #endif /* HAVE_POLL_H */
#ifdef HAVE_SYS_POLL_H
#include <sys/poll.h>
#endif /* HAVE_SYS_POLL_H */
|
8bee43 | 1998-04-01 | Henrik Grubbström (Grubba) | | #endif /* HAVE_POLL */
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | #ifdef HAVE_CRYPT_H
#include <crypt.h>
#endif
|
8fe810 | 1998-03-16 | Henrik Grubbström (Grubba) | |
|
92bb06 | 1998-05-19 | Henrik Grubbström (Grubba) | |
|
38bddc | 1996-08-12 | Fredrik Hübinette (Hubbe) | |
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function checks if the values @[a] and @[b] are equal.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! For all types but arrays, multisets and mappings, this operation is
|
f79bd8 | 2003-04-01 | Martin Nilsson | | *! the same as doing @expr{@[a] == @[b]@}.
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! For arrays, mappings and multisets however, their contents are checked
*! recursively, and if all their contents are the same and in the same
*! place, they are considered equal.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[copy_value()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_equal(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
int i;
|
7cc831 | 1998-04-10 | Henrik Grubbström (Grubba) | | if(args != 2)
|
7c9e8a | 2003-01-04 | Martin Nilsson | | SIMPLE_TOO_FEW_ARGS_ERROR("equal", 2);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | i=is_equal(Pike_sp-2,Pike_sp-1);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
push_int(i);
}
|
7535f8 | 2001-01-08 | Henrik Grubbström (Grubba) | | |
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Construct an array with the arguments as indices.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function could be written in Pike as:
|
f79bd8 | 2003-04-01 | Martin Nilsson | | *! @code
*! array aggregate(mixed ... elems) { return elems; }
*! @endcode
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @note
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Arrays are dynamically allocated there is no need to declare them
|
f79bd8 | 2003-04-01 | Martin Nilsson | | *! like @expr{int a[10]=allocate(10);@} (and it isn't possible either) like
*! in C, just @expr{array(int) a=allocate(10);@} will do.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[sizeof()], @[arrayp()], @[allocate()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void debug_f_aggregate(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
struct array *a;
|
99946c | 1996-02-17 | Fredrik Hübinette (Hubbe) | | a=aggregate_array(args);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | push_array(a);
}
|
faafc5 | 2005-03-16 | Henrik Grubbström (Grubba) | | static node *optimize_f_aggregate(node *n)
{
node *args = CDR(n);
node *new_args = NULL;
node *add_args = NULL;
int count;
if (!args) return NULL;
args->parent = NULL;
for (count = 0; args->token == F_ARG_LIST; args = CAR(args)) {
if (CDR(args) && CDR(args)->token == F_PUSH_ARRAY) {
count += 16;
} else {
count++;
}
if (!CAR(args)) break;
CAR(args)->parent = args;
}
if (args->token == F_PUSH_ARRAY) {
count += 16;
} else if (args->token != F_ARG_LIST) {
count++;
}
if (count <= 32) {
CDR(n)->parent = n;
return NULL;
}
count = 0;
if (args->token != F_ARG_LIST) {
if (args->token == F_PUSH_ARRAY) {
add_args = copy_node(CAR(args));
} else {
new_args = copy_node(args);
count = 1;
}
args = args->parent;
}
for(; args; args = args->parent) {
if (CDR(args)->token == F_PUSH_ARRAY) {
if (count) {
add_args = mknode(F_ARG_LIST, add_args,
mkapplynode(copy_node(CAR(n)), new_args));
new_args = NULL;
count = 0;
}
add_args = mknode(F_ARG_LIST, add_args, copy_node(CADR(args)));
} else {
new_args = mknode(F_ARG_LIST, new_args, copy_node(CDR(args)));
count++;
if (count > 31) {
add_args = mknode(F_ARG_LIST, add_args,
mkapplynode(copy_node(CAR(n)), new_args));
new_args = NULL;
count = 0;
}
}
}
if (count) {
add_args = mknode(F_ARG_LIST, add_args,
mkapplynode(copy_node(CAR(n)), new_args));
new_args = NULL;
count = 0;
}
CDR(n)->parent = n;
return mkefuncallnode("`+", add_args);
}
|
081147 | 2001-07-02 | Fredrik Hübinette (Hubbe) | |
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | | |
5ad096 | 2003-11-10 | Martin Stjernholm | | *! Return an integer derived from the string @[s]. The same string
*! will always hash to the same value, also between processes.
*!
*! If @[max] is given, the result will be >= 0 and < @[max],
*! otherwise the result will be >= 0 and <= 0x7fffffff.
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | | *!
*! @note
*! This function is provided for backward compatibility reasons.
*!
|
5ad096 | 2003-11-10 | Martin Stjernholm | | *! This function is byte-order dependant for wide strings.
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | | *!
*! @seealso
*! @[hash()], @[hash_7_0()]
*/
static void f_hash_7_4(INT32 args)
{
size_t i = 0;
struct pike_string *s = Pike_sp[-args].u.string;
if(!args)
SIMPLE_TOO_FEW_ARGS_ERROR("hash_7_4",1);
if(Pike_sp[-args].type != T_STRING)
SIMPLE_BAD_ARG_ERROR("hash_7_4", 1, "string");
i = simple_hashmem((unsigned char *)s->str, s->len<<s->size_shift,
100<<s->size_shift);
if(args > 1)
{
if(Pike_sp[1-args].type != T_INT)
SIMPLE_BAD_ARG_ERROR("hash_7_4",2,"int");
if(!Pike_sp[1-args].u.integer)
PIKE_ERROR("hash_7_4", "Modulo by zero.\n", Pike_sp, args);
i%=(unsigned INT32)Pike_sp[1-args].u.integer;
}
pop_n_elems(args);
push_int64(i);
}
|
a05604 | 2001-10-28 | Martin Nilsson | | |
ce4d67 | 2001-01-31 | Henrik Grubbström (Grubba) | | *!
|
5ad096 | 2003-11-10 | Martin Stjernholm | | *! Return an integer derived from the string @[s]. The same string
*! always hashes to the same value, also between processes.
*!
*! If @[max] is given, the result will be >= 0 and < @[max],
*! otherwise the result will be >= 0 and <= 0x7fffffff.
|
ce4d67 | 2001-01-31 | Henrik Grubbström (Grubba) | | *!
*! @note
*! This function is provided for backward compatibility reasons.
*!
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | | *! This function is not NUL-safe, and is byte-order dependant.
*!
|
ce4d67 | 2001-01-31 | Henrik Grubbström (Grubba) | | *! @seealso
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | | *! @[hash()], @[hash_7_4()]
|
ce4d67 | 2001-01-31 | Henrik Grubbström (Grubba) | | */
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | | static void f_hash_7_0( INT32 args )
|
348cff | 2000-12-11 | Per Hedbor | | {
struct pike_string *s = Pike_sp[-args].u.string;
unsigned int i;
if(!args)
|
7c9e8a | 2003-01-04 | Martin Nilsson | | SIMPLE_TOO_FEW_ARGS_ERROR("hash_7_0",1);
|
348cff | 2000-12-11 | Per Hedbor | | if(Pike_sp[-args].type != T_STRING)
|
7c9e8a | 2003-01-04 | Martin Nilsson | | SIMPLE_BAD_ARG_ERROR("hash_7_0", 1, "string");
|
348cff | 2000-12-11 | Per Hedbor | |
if( s->size_shift )
{
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | | f_hash_7_4( args );
|
348cff | 2000-12-11 | Per Hedbor | | return;
}
|
986b52 | 2001-03-17 | Henrik Grubbström (Grubba) | | i = DO_NOT_WARN((unsigned int)hashstr( (unsigned char *)s->str,
MINIMUM(100,s->len)));
|
348cff | 2000-12-11 | Per Hedbor | | if(args > 1)
{
if(Pike_sp[1-args].type != T_INT)
|
7c9e8a | 2003-01-04 | Martin Nilsson | | SIMPLE_BAD_ARG_ERROR("hash_7_0",2,"int");
|
348cff | 2000-12-11 | Per Hedbor | |
if(!Pike_sp[1-args].u.integer)
|
7c9e8a | 2003-01-04 | Martin Nilsson | | PIKE_ERROR("hash_7_0", "Modulo by zero.\n", Pike_sp, args);
|
348cff | 2000-12-11 | Per Hedbor | |
i%=(unsigned INT32)Pike_sp[1-args].u.integer;
}
pop_n_elems(args);
push_int( i );
}
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
ce4d67 | 2001-01-31 | Henrik Grubbström (Grubba) | | |
5ad096 | 2003-11-10 | Martin Stjernholm | | *! Return an integer derived from the string @[s]. The same string
*! always hashes to the same value, also between processes,
*! architectures, and Pike versions (see compatibility notes below,
*! though).
*!
*! If @[max] is given, the result will be >= 0 and < @[max],
*! otherwise the result will be >= 0 and <= 0x7fffffff.
|
ce4d67 | 2001-01-31 | Henrik Grubbström (Grubba) | | *!
*! @note
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | | *! The hash algorithm was changed in Pike 7.5. If you want a hash
*! that is compatible with Pike 7.4 and earlier, use @[hash_7_4()].
|
5ad096 | 2003-11-10 | Martin Stjernholm | | *! The difference only affects wide strings.
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | | *!
*! The hash algorithm was also changed in Pike 7.1. If you want a hash
|
a05604 | 2001-10-28 | Martin Nilsson | | *! that is compatible with Pike 7.0 and earlier, use @[hash_7_0()].
|
ce4d67 | 2001-01-31 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
5ad096 | 2003-11-10 | Martin Stjernholm | | *! @[hash_7_0()], @[hash_7_4()], @[hash_value]
|
ce4d67 | 2001-01-31 | Henrik Grubbström (Grubba) | | */
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | | PMOD_EXPORT void f_hash(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
cb787a | 2000-08-24 | Henrik Grubbström (Grubba) | | size_t i = 0;
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | | struct pike_string *s;
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | |
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | if(!args)
|
8aefbc | 1999-03-19 | Fredrik Hübinette (Hubbe) | | SIMPLE_TOO_FEW_ARGS_ERROR("hash",1);
|
98d8e7 | 2000-12-10 | Per Hedbor | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[-args].type != T_STRING)
|
8aefbc | 1999-03-19 | Fredrik Hübinette (Hubbe) | | SIMPLE_BAD_ARG_ERROR("hash", 1, "string");
|
f28591 | 1999-03-09 | Fredrik Hübinette (Hubbe) | |
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | | s = Pike_sp[-args].u.string;
switch(s->size_shift) {
case 0:
i = simple_hashmem(STR0(s), s->len, 100);
break;
case 1:
i = simple_hashmem1(STR1(s), s->len, 100);
break;
case 2:
i = simple_hashmem2(STR2(s), s->len, 100);
break;
default:
Pike_fatal("hash(): Unsupported string shift: %d\n", s->size_shift);
break;
}
|
98d8e7 | 2000-12-10 | Per Hedbor | |
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | if(args > 1)
{
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[1-args].type != T_INT)
|
8aefbc | 1999-03-19 | Fredrik Hübinette (Hubbe) | | SIMPLE_BAD_ARG_ERROR("hash",2,"int");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
c5ab04 | 2004-05-13 | Martin Nilsson | | if(Pike_sp[1-args].u.integer <= 0)
PIKE_ERROR("hash", "Modulo < 1.\n", Pike_sp, args);
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | i%=(unsigned INT32)Pike_sp[1-args].u.integer;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
pop_n_elems(args);
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | push_int64(i);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
5ad096 | 2003-11-10 | Martin Stjernholm | |
void f_hash_value(INT32 args)
{
unsigned INT32 h;
if(!args)
SIMPLE_TOO_FEW_ARGS_ERROR("hash_value",1);
h = hash_svalue (Pike_sp - args);
pop_n_elems (args);
push_int (h);
}
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Copy a value recursively.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! If the result value is changed destructively (only possible for
*! multisets, arrays and mappings) the copied value will not be changed.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! The resulting value will always be equal to the copied (as tested with
*! the function @[equal()]), but they may not the the same value (as tested
*! with @[`==()]).
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[equal()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_copy_value(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
if(!args)
|
8aefbc | 1999-03-19 | Fredrik Hübinette (Hubbe) | | SIMPLE_TOO_FEW_ARGS_ERROR("copy_value",1);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
pop_n_elems(args-1);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | copy_svalues_recursively_no_free(Pike_sp,Pike_sp-1,1,0);
free_svalue(Pike_sp-1);
Pike_sp[-1]=Pike_sp[0];
dmalloc_touch_svalue(Pike_sp-1);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | struct case_info {
|
9776dd | 2001-06-21 | Henrik Grubbström (Grubba) | | INT32 low;
|
8fe0e4 | 2005-05-08 | Martin Nilsson | | INT16 mode;
INT16 data;
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | };
#define CIM_NONE 0 /* Case-less */
|
164d67 | 1999-03-20 | Henrik Grubbström (Grubba) | | #define CIM_UPPERDELTA 1 /* Upper-case, delta to lower-case in data */
#define CIM_LOWERDELTA 2 /* Lower-case, -delta to upper-case in data */
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | #define CIM_CASEBIT 3 /* Some case, case mask in data */
#define CIM_CASEBITOFF 4 /* Same as above, but also offset by data */
|
0cb415 | 2000-07-19 | Andreas Lange | | static const struct case_info case_info[] = {
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | #include "case_info.h"
|
9776dd | 2001-06-21 | Henrik Grubbström (Grubba) | | { 0x7fffffff, CIM_NONE, 0x0000, },
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | };
|
9776dd | 2001-06-21 | Henrik Grubbström (Grubba) | | static struct case_info *find_ci(INT32 c)
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | {
static struct case_info *cache = NULL;
|
5e3f72 | 1999-03-20 | Per Hedbor | | struct case_info *ci = cache;
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | int lo = 0;
int hi = NELEM(case_info);
|
9776dd | 2001-06-21 | Henrik Grubbström (Grubba) | | if ((c < 0) || (c > 0xeffff)) {
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | return NULL;
|
9776dd | 2001-06-21 | Henrik Grubbström (Grubba) | | }
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | |
if ((ci) && (ci[0].low <= c) && (ci[1].low > c)) {
|
480bf0 | 2000-07-27 | Andreas Lange | | return ci;
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | }
while (lo != hi-1) {
int mid = (lo + hi)/2;
if (case_info[mid].low < c) {
lo = mid;
} else if (case_info[mid].low == c) {
lo = mid;
break;
} else {
hi = mid;
}
}
|
a8d36d | 2000-07-19 | Andreas Lange | | return(cache = (struct case_info *)case_info + lo);
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | }
|
9776dd | 2001-06-21 | Henrik Grubbström (Grubba) | | static struct case_info *find_ci_shift0(INT32 c)
|
480bf0 | 2000-07-27 | Andreas Lange | | {
static struct case_info *cache = NULL;
struct case_info *ci = cache;
int lo = 0;
int hi = CASE_INFO_SHIFT0_HIGH;
|
9776dd | 2001-06-21 | Henrik Grubbström (Grubba) | | if ((c < 0) || (c > 0xefffff)) {
|
480bf0 | 2000-07-27 | Andreas Lange | | return NULL;
|
9776dd | 2001-06-21 | Henrik Grubbström (Grubba) | | }
|
480bf0 | 2000-07-27 | Andreas Lange | |
if ((ci) && (ci[0].low <= c) && (ci[1].low > c)) {
return ci;
}
while (lo != hi-1) {
int mid = (lo + hi)>>1;
if (case_info[mid].low < c) {
lo = mid;
} else if (case_info[mid].low == c) {
lo = mid;
break;
} else {
hi = mid;
}
}
return(cache = (struct case_info *)case_info + lo);
}
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | #define DO_LOWER_CASE(C) do {\
|
9776dd | 2001-06-21 | Henrik Grubbström (Grubba) | | INT32 c = C; \
|
03c75f | 2004-10-14 | Martin Nilsson | | if(c<0xb5){if(c >= 'A' && c <= 'Z' ) C=c+0x20;}else {\
|
332595 | 2004-04-13 | Jonas Wallden | | struct case_info *ci = find_ci(c); \
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | if (ci) { \
switch(ci->mode) { \
|
164d67 | 1999-03-20 | Henrik Grubbström (Grubba) | | case CIM_NONE: case CIM_LOWERDELTA: break; \
case CIM_UPPERDELTA: C = c + ci->data; break; \
case CIM_CASEBIT: C = c | ci->data; break; \
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | case CIM_CASEBITOFF: C = ((c - ci->data) | ci->data) + ci->data; break; \
|
5aad93 | 2002-08-15 | Marcus Comstedt | | default: Pike_fatal("lower_case(): Unknown case_info mode: %d\n", ci->mode); \
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | } \
|
bd662f | 2004-04-12 | Per Hedbor | | }} \
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | } while(0)
|
480bf0 | 2000-07-27 | Andreas Lange | | #define DO_LOWER_CASE_SHIFT0(C) do {\
|
9776dd | 2001-06-21 | Henrik Grubbström (Grubba) | | INT32 c = C; \
|
03c75f | 2004-10-14 | Martin Nilsson | | if(c<0xb5){if(c >= 'A' && c <= 'Z' ) C=c+0x20;}else {\
|
480bf0 | 2000-07-27 | Andreas Lange | | struct case_info *ci = find_ci_shift0(c); \
if (ci) { \
switch(ci->mode) { \
case CIM_NONE: case CIM_LOWERDELTA: break; \
case CIM_UPPERDELTA: C = c + ci->data; break; \
case CIM_CASEBIT: C = c | ci->data; break; \
case CIM_CASEBITOFF: C = ((c - ci->data) | ci->data) + ci->data; break; \
|
5aad93 | 2002-08-15 | Marcus Comstedt | | default: Pike_fatal("lower_case(): Unknown case_info mode: %d\n", ci->mode); \
|
480bf0 | 2000-07-27 | Andreas Lange | | } \
|
bd662f | 2004-04-12 | Per Hedbor | | }} \
|
480bf0 | 2000-07-27 | Andreas Lange | | } while(0)
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | #define DO_UPPER_CASE(C) do {\
|
9776dd | 2001-06-21 | Henrik Grubbström (Grubba) | | INT32 c = C; \
|
03c75f | 2004-10-14 | Martin Nilsson | | if(c<0xb5){if(c >= 'a' && c <= 'z' ) C=c-0x20;}else {\
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | struct case_info *ci = find_ci(c); \
if (ci) { \
switch(ci->mode) { \
|
164d67 | 1999-03-20 | Henrik Grubbström (Grubba) | | case CIM_NONE: case CIM_UPPERDELTA: break; \
case CIM_LOWERDELTA: C = c - ci->data; break; \
case CIM_CASEBIT: C = c & ~ci->data; break; \
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | case CIM_CASEBITOFF: C = ((c - ci->data)& ~ci->data) + ci->data; break; \
|
5aad93 | 2002-08-15 | Marcus Comstedt | | default: Pike_fatal("upper_case(): Unknown case_info mode: %d\n", ci->mode); \
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | } \
|
bd662f | 2004-04-12 | Per Hedbor | | }} \
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | } while(0)
|
480bf0 | 2000-07-27 | Andreas Lange | | #define DO_UPPER_CASE_SHIFT0(C) do {\
|
9776dd | 2001-06-21 | Henrik Grubbström (Grubba) | | INT32 c = C; \
|
03c75f | 2004-10-14 | Martin Nilsson | | if(c<0xb5){if(c >= 'a' && c <= 'z' ) C=c-0x20;}else {\
|
480bf0 | 2000-07-27 | Andreas Lange | | struct case_info *ci = find_ci_shift0(c); \
if (ci) { \
switch(ci->mode) { \
case CIM_NONE: case CIM_UPPERDELTA: break; \
case CIM_LOWERDELTA: C = c - ci->data; break; \
case CIM_CASEBIT: C = c & ~ci->data; break; \
case CIM_CASEBITOFF: C = ((c - ci->data)& ~ci->data) + ci->data; break; \
|
5aad93 | 2002-08-15 | Marcus Comstedt | | default: Pike_fatal("lower_case(): Unknown case_info mode: %d\n", ci->mode); \
|
480bf0 | 2000-07-27 | Andreas Lange | | } \
|
bd662f | 2004-04-12 | Per Hedbor | | }} \
|
480bf0 | 2000-07-27 | Andreas Lange | | } while(0)
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
6f1856 | 2003-09-05 | Henrik Grubbström (Grubba) | | *! @decl int lower_case(int c)
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
6f1856 | 2003-09-05 | Henrik Grubbström (Grubba) | | *! Convert a string or character to lower case.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @returns
*! Returns a copy of the string @[s] with all upper case characters
|
6f1856 | 2003-09-05 | Henrik Grubbström (Grubba) | | *! converted to lower case, or the character @[c] converted to lower
*! case.
*!
*! @note
*! Assumes the string or character to be coded according to
|
09bc45 | 2003-09-05 | Johan Sundström | | *! ISO-10646 (aka Unicode). If they are not, @[Locale.Charset.decoder]
*! can do the initial conversion for you.
|
6f1856 | 2003-09-05 | Henrik Grubbström (Grubba) | | *!
*! @note
*! Prior to Pike 7.5 this function only accepted strings.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
09bc45 | 2003-09-05 | Johan Sundström | | *! @[upper_case()], @[Locale.Charset.decoder]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_lower_case(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | ptrdiff_t i;
|
cabe03 | 1999-03-19 | Henrik Grubbström (Grubba) | | struct pike_string *orig;
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | struct pike_string *ret;
|
6f1856 | 2003-09-05 | Henrik Grubbström (Grubba) | |
check_all_args("lower_case", args, BIT_STRING|BIT_INT, 0);
if (Pike_sp[-args].type == T_INT) {
DO_LOWER_CASE(Pike_sp[-args].u.integer);
pop_n_elems(args-1);
return;
}
|
c5ab04 | 2004-05-13 | Martin Nilsson | | orig = Pike_sp[-args].u.string;
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | ret = begin_wide_shared_string(orig->len, orig->size_shift);
MEMCPY(ret->str, orig->str, orig->len << orig->size_shift);
i = orig->len;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | if (!orig->size_shift) {
p_wchar0 *str = STR0(ret);
while(i--) {
|
480bf0 | 2000-07-27 | Andreas Lange | | DO_LOWER_CASE_SHIFT0(str[i]);
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | }
} else if (orig->size_shift == 1) {
p_wchar1 *str = STR1(ret);
while(i--) {
DO_LOWER_CASE(str[i]);
}
} else if (orig->size_shift == 2) {
p_wchar2 *str = STR2(ret);
while(i--) {
DO_LOWER_CASE(str[i]);
}
} else {
|
5aad93 | 2002-08-15 | Marcus Comstedt | | Pike_fatal("lower_case(): Bad string shift:%d\n", orig->size_shift);
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | }
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
pop_n_elems(args);
push_string(end_shared_string(ret));
}
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
6f1856 | 2003-09-05 | Henrik Grubbström (Grubba) | | *! @decl int upper_case(int c)
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
6f1856 | 2003-09-05 | Henrik Grubbström (Grubba) | | *! Convert a string or character to upper case.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @returns
*! Returns a copy of the string @[s] with all lower case characters
|
6f1856 | 2003-09-05 | Henrik Grubbström (Grubba) | | *! converted to upper case, or the character @[c] converted to upper
*! case.
*!
*! @note
*! Assumes the string or character to be coded according to
|
09bc45 | 2003-09-05 | Johan Sundström | | *! ISO-10646 (aka Unicode). If they are not, @[Locale.Charset.decoder]
*! can do the initial conversion for you.
|
6f1856 | 2003-09-05 | Henrik Grubbström (Grubba) | | *!
*! @note
*! Prior to Pike 7.5 this function only accepted strings.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
09bc45 | 2003-09-05 | Johan Sundström | | *! @[lower_case()], @[Locale.Charset.decoder]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_upper_case(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | ptrdiff_t i;
|
cabe03 | 1999-03-19 | Henrik Grubbström (Grubba) | | struct pike_string *orig;
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | struct pike_string *ret;
|
6f1856 | 2003-09-05 | Henrik Grubbström (Grubba) | | check_all_args("upper_case", args, BIT_STRING|BIT_INT, 0);
if (Pike_sp[-args].type == T_INT) {
DO_UPPER_CASE(Pike_sp[-args].u.integer);
pop_n_elems(args-1);
return;
}
|
c5ab04 | 2004-05-13 | Martin Nilsson | | orig = Pike_sp[-args].u.string;
|
5e3f72 | 1999-03-20 | Per Hedbor | | ret=begin_wide_shared_string(orig->len,orig->size_shift);
|
164d67 | 1999-03-20 | Henrik Grubbström (Grubba) | | MEMCPY(ret->str, orig->str, orig->len << orig->size_shift);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | i = orig->len;
if (!orig->size_shift) {
p_wchar0 *str = STR0(ret);
while(i--) {
|
0cb415 | 2000-07-19 | Andreas Lange | | if(str[i]!=0xff && str[i]!=0xb5) {
|
480bf0 | 2000-07-27 | Andreas Lange | | DO_UPPER_CASE_SHIFT0(str[i]);
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | } else {
|
c5ab04 | 2004-05-13 | Martin Nilsson | |
int j = orig->len;
struct pike_string *wret = begin_wide_shared_string(j, 1);
p_wchar1 *wstr = STR1(wret);
while(--j>i)
wstr[j] = str[j];
i++;
while(i--)
switch( str[i] ) {
case 0xff: wstr[i] = 0x178; break;
case 0xb5: wstr[i] = 0x39c; break;
default:
DO_UPPER_CASE_SHIFT0(str[i]);
wstr[i] = str[i];
break;
}
do_really_free_pike_string(ret);
ret = wret;
break;
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | }
}
} else if (orig->size_shift == 1) {
p_wchar1 *str = STR1(ret);
while(i--) {
DO_UPPER_CASE(str[i]);
}
} else if (orig->size_shift == 2) {
p_wchar2 *str = STR2(ret);
while(i--) {
DO_UPPER_CASE(str[i]);
}
} else {
|
5aad93 | 2002-08-15 | Marcus Comstedt | | Pike_fatal("lower_case(): Bad string shift:%d\n", orig->size_shift);
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | }
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
pop_n_elems(args);
push_string(end_shared_string(ret));
}
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Returns a string of random characters 0-255 with the length @[len].
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_random_string(INT32 args)
|
283ec7 | 2000-04-15 | Fredrik Hübinette (Hubbe) | | {
struct pike_string *ret;
|
65a549 | 2000-08-10 | Per Hedbor | | INT_TYPE len, e;
|
257524 | 2004-05-14 | Martin Nilsson | | get_all_args("random_string",args,"%+",&len);
|
283ec7 | 2000-04-15 | Fredrik Hübinette (Hubbe) | | ret = begin_shared_string(len);
|
1f88bf | 2001-09-24 | Henrik Grubbström (Grubba) | | for(e=0;e<len;e++) ret->str[e] = DO_NOT_WARN((char)my_rand());
|
283ec7 | 2000-04-15 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
push_string(end_shared_string(ret));
}
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function sets the initial value for the random generator.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[random()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_random_seed(INT32 args)
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | {
|
8aefbc | 1999-03-19 | Fredrik Hübinette (Hubbe) | | INT_TYPE i;
|
e37a3e | 1999-10-09 | Fredrik Hübinette (Hubbe) | | #ifdef AUTO_BIGNUM
check_all_args("random_seed",args,BIT_INT | BIT_OBJECT, 0);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[-args].type == T_INT)
|
ca9476 | 2000-01-09 | Fredrik Hübinette (Hubbe) | | {
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | i=Pike_sp[-args].u.integer;
|
ca9476 | 2000-01-09 | Fredrik Hübinette (Hubbe) | | }else{
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | i=hash_svalue(Pike_sp-args);
|
ca9476 | 2000-01-09 | Fredrik Hübinette (Hubbe) | | }
|
e37a3e | 1999-10-09 | Fredrik Hübinette (Hubbe) | | #else
|
8aefbc | 1999-03-19 | Fredrik Hübinette (Hubbe) | | get_all_args("random_seed",args,"%i",&i);
|
e37a3e | 1999-10-09 | Fredrik Hübinette (Hubbe) | | #endif
|
8aefbc | 1999-03-19 | Fredrik Hübinette (Hubbe) | | my_srand(i);
|
f6f02d | 1995-10-16 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | }
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Returns the number of arguments given when the previous function was
*! called.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This is useful for functions that take a variable number of arguments.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[call_function()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | void f_query_num_arg(INT32 args)
{
pop_n_elems(args);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | push_int(Pike_fp ? Pike_fp->args : 0);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
9cf6c8 | 2001-03-11 | Henrik Grubbström (Grubba) | | |
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *! @decl int search(array haystack, mixed needle, int|void start)
*! @decl mixed search(mapping haystack, mixed needle, mixed|void start)
|
b5b59a | 2003-09-04 | Henrik Grubbström (Grubba) | | *! @decl mixed search(object haystack, mixed needle, mixed|void start)
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Search for @[needle] in @[haystack]. Return the position of @[needle] in
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! @[haystack] or @expr{-1@} if not found.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! If the optional argument @[start] is present search is started at
*! this position.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
b5b59a | 2003-09-04 | Henrik Grubbström (Grubba) | | *! @mixed haystack
*! @type string
*! When @[haystack] is a string @[needle] must be a string or an int,
*! and the first occurrence of the string or int is returned.
*!
*! @type array
*! When @[haystack] is an array, @[needle] is compared only to
*! one value at a time in @[haystack].
*!
*! @type mapping
*! When @[haystack] is a mapping, @[search()] tries to find the index
*! connected to the data @[needle]. That is, it tries to lookup the
*! mapping backwards. If @[needle] isn't present in the mapping, zero
*! is returned, and zero_type() will return 1 for this zero.
*!
*! @type object
*! When @[haystack] is an object implementing @[lfun::_search()],
*! the result of calling @[lfun::_search()] with @[needle] will
*! be returned.
*!
*! If @[haystack] is an object that doesn't implement @[lfun::_search()]
*! it is assumed to be an @[Iterator], and implement
*! @[Iterator()->index()], @[Iterator()->value()], and
*! @[Iterator()->next()]. @[search()] will then start comparing
*! elements with @[`==()] until a match with @[needle] is found.
*! If @[needle] is found @[haystack] will be advanced to the element,
*! and the iterator index will be returned. If @[needle] is not
*! found, @[haystack] will be advanced to the end (and will thus
*! evaluate to false), and a zero with zero_type 1 will be returned.
*! @endmixed
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
b5b59a | 2003-09-04 | Henrik Grubbström (Grubba) | | *! @note
*! If @[start] is supplied to an iterator object without an
*! @[lfun::_search()], @[haystack] will need to implement
*! @[Iterator()->set_index()].
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[indices()], @[values()], @[zero_type()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_search(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | ptrdiff_t start;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
if(args < 2)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_TOO_FEW_ARGS_ERROR("search", 2);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | switch(Pike_sp[-args].type)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
case T_STRING:
{
|
9cf6c8 | 2001-03-11 | Henrik Grubbström (Grubba) | | struct pike_string *haystack = Pike_sp[-args].u.string;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | start=0;
if(args > 2)
{
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[2-args].type!=T_INT)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("search", 3, "int");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | start=Pike_sp[2-args].u.integer;
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | if(start<0) {
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | bad_arg_error("search", Pike_sp-args, args, 3, "int(0..)", Pike_sp+2-args,
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | "Start must be greater or equal to zero.\n");
}
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
9cf6c8 | 2001-03-11 | Henrik Grubbström (Grubba) | | if(haystack->len < start)
bad_arg_error("search", Pike_sp-args, args, 3, "int(0..)", Pike_sp-args,
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | "Start must not be greater than the "
"length of the string.\n");
|
84f4f9 | 1998-02-27 | Fredrik Hübinette (Hubbe) | |
|
9cf6c8 | 2001-03-11 | Henrik Grubbström (Grubba) | | if(Pike_sp[1-args].type == T_STRING) {
|
e38ce9 | 2001-10-30 | Henrik Grubbström (Grubba) | |
if (Pike_sp[1-args].u.string->len) {
start = string_search(haystack,
Pike_sp[1-args].u.string,
start);
}
|
9cf6c8 | 2001-03-11 | Henrik Grubbström (Grubba) | | } else if (Pike_sp[1-args].type == T_INT) {
INT_TYPE val = Pike_sp[1-args].u.integer;
switch(Pike_sp[-args].u.string->size_shift) {
case 0:
{
p_wchar0 *str = STR0(haystack);
if (val >= 256) {
start = -1;
break;
}
while (start < haystack->len) {
if (str[start] == val) break;
start++;
}
}
break;
case 1:
{
p_wchar1 *str = STR1(haystack);
if (val >= 65536) {
start = -1;
break;
}
while (start < haystack->len) {
if (str[start] == val) break;
start++;
}
}
break;
case 2:
{
p_wchar2 *str = STR2(haystack);
while (start < haystack->len) {
if (str[start] == (p_wchar2)val) break;
start++;
}
}
break;
default:
|
5aad93 | 2002-08-15 | Marcus Comstedt | | Pike_fatal("search(): Unsupported string shift: %d!\n",
|
9cf6c8 | 2001-03-11 | Henrik Grubbström (Grubba) | | haystack->size_shift);
break;
}
if (start >= haystack->len) {
start = -1;
}
} else {
SIMPLE_BAD_ARG_ERROR("search", 2, "string | int");
}
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | push_int64(start);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | break;
}
case T_ARRAY:
start=0;
if(args > 2)
{
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[2-args].type!=T_INT)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("search", 3, "int");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | start=Pike_sp[2-args].u.integer;
|
c2998a | 1999-11-08 | Henrik Grubbström (Grubba) | | if(start<0) {
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | bad_arg_error("search", Pike_sp-args, args, 3, "int(0..)", Pike_sp+2-args,
|
c2998a | 1999-11-08 | Henrik Grubbström (Grubba) | | "Start must be greater or equal to zero.\n");
}
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | start=array_search(Pike_sp[-args].u.array,Pike_sp+1-args,start);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | push_int64(start);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | break;
case T_MAPPING:
|
c2998a | 1999-11-08 | Henrik Grubbström (Grubba) | | if(args > 2) {
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | mapping_search_no_free(Pike_sp,Pike_sp[-args].u.mapping,Pike_sp+1-args,Pike_sp+2-args);
|
c2998a | 1999-11-08 | Henrik Grubbström (Grubba) | | } else {
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | mapping_search_no_free(Pike_sp,Pike_sp[-args].u.mapping,Pike_sp+1-args,0);
|
c2998a | 1999-11-08 | Henrik Grubbström (Grubba) | | }
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | free_svalue(Pike_sp-args);
Pike_sp[-args]=*Pike_sp;
dmalloc_touch_svalue(Pike_sp);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args-1);
return;
|
b5b59a | 2003-09-04 | Henrik Grubbström (Grubba) | | case T_OBJECT:
|
f54c78 | 2004-12-22 | Henrik Grubbström (Grubba) | | {
struct program *p;
if ((p = (Pike_sp[-args].u.object->prog))) {
struct object *o = Pike_sp[-args].u.object;
int id_level = p->inherits[Pike_sp[-args].subtype].identifier_level;
int id;
int next, ind;
p = p->inherits[Pike_sp[-args].subtype].prog;
id = low_find_lfun(p, LFUN__SEARCH);
if (id >= 0) {
apply_low(o, id + id_level, args-1);
stack_pop_n_elems_keep_top(1);
return;
|
b5b59a | 2003-09-04 | Henrik Grubbström (Grubba) | | }
|
f54c78 | 2004-12-22 | Henrik Grubbström (Grubba) | |
if (((id = find_identifier("value", p)) >= 0) &&
((next = find_identifier("next", p)) >= 0) &&
((ind = find_identifier("index", p)) >= 0)) {
id += id_level;
next += id_level;
ind += id_level;
if (args > 2) {
int fun = find_identifier("set_index", p);
if (fun < 0)
Pike_error ("Cannot call unknown function \"%s\".\n", fun);
apply_low(o, fun + id_level, args-2);
pop_stack();
|
b5b59a | 2003-09-04 | Henrik Grubbström (Grubba) | | }
|
f54c78 | 2004-12-22 | Henrik Grubbström (Grubba) | |
while(1) {
apply_low(o, id, 0);
if (is_eq(Pike_sp-2, Pike_sp-1)) {
apply_low(o, ind, 0);
stack_pop_n_elems_keep_top(3);
return;
}
apply_low(o, next, 0);
if (UNSAFE_IS_ZERO(Pike_sp-1)) {
pop_n_elems(4);
push_undefined();
return;
}
pop_n_elems(2);
|
b5b59a | 2003-09-04 | Henrik Grubbström (Grubba) | | }
}
}
}
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | default:
|
b5b59a | 2003-09-04 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("search", 1, "string|array|mapping|object");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
}
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Returns @expr{1@} if the string @[s] starts with @[prefix],
*! returns @expr{0@} (zero) otherwise.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_has_prefix(INT32 args)
|
a4f17f | 2000-04-12 | Henrik Grubbström (Grubba) | | {
struct pike_string *a, *b;
|
7d1e03 | 2004-05-18 | Martin Nilsson | | if(args<2)
SIMPLE_TOO_FEW_ARGS_ERROR("has_prefix", 2);
if(Pike_sp[-args].type!=T_STRING)
SIMPLE_ARG_TYPE_ERROR("has_prefix", 1, "string");
if(Pike_sp[1-args].type!=T_STRING)
SIMPLE_ARG_TYPE_ERROR("has_prefix", 2, "string");
a = Pike_sp[-args].u.string;
b = Pike_sp[1-args].u.string;
|
a4f17f | 2000-04-12 | Henrik Grubbström (Grubba) | |
if ((b->len > a->len) || (b->size_shift > a->size_shift)) {
pop_n_elems(args);
push_int(0);
return;
}
if ((a == b)||(!b->len)) {
pop_n_elems(args);
push_int(1);
return;
}
if (a->size_shift == b->size_shift) {
int res = !MEMCMP(a->str, b->str, b->len << b->size_shift);
pop_n_elems(args);
push_int(res);
return;
}
#define TWO_SHIFTS(S1, S2) ((S1)|((S2)<<2))
switch(TWO_SHIFTS(a->size_shift, b->size_shift)) {
#define CASE_SHIFT(S1, S2) \
case TWO_SHIFTS(S1, S2): \
{ \
PIKE_CONCAT(p_wchar,S1) *s1 = PIKE_CONCAT(STR,S1)(a); \
PIKE_CONCAT(p_wchar,S2) *s2 = PIKE_CONCAT(STR,S2)(b); \
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | ptrdiff_t len = b->len; \
|
a4f17f | 2000-04-12 | Henrik Grubbström (Grubba) | | while(len-- && (s1[len] == s2[len])) \
; \
pop_n_elems(args); \
push_int(len == -1); \
return; \
} \
break
CASE_SHIFT(1,0);
CASE_SHIFT(2,0);
CASE_SHIFT(2,1);
default:
|
b2d3e4 | 2000-12-01 | Fredrik Hübinette (Hubbe) | | Pike_error("has_prefix(): Unexpected string shift combination: a:%d, b:%d!\n",
|
a4f17f | 2000-04-12 | Henrik Grubbström (Grubba) | | a->size_shift, b->size_shift);
break;
}
#undef CASE_SHIFT
#undef TWO_SHIFTS
}
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Returns @expr{1@} if the string @[s] ends with @[suffix],
*! returns @expr{0@} (zero) otherwise.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
54277b | 2000-12-18 | Henrik Grubbström (Grubba) | | PMOD_EXPORT void f_has_suffix(INT32 args)
{
struct pike_string *a, *b;
|
7d1e03 | 2004-05-18 | Martin Nilsson | | if(args<2)
SIMPLE_TOO_FEW_ARGS_ERROR("has_suffix", 2);
if(Pike_sp[-args].type!=T_STRING)
SIMPLE_ARG_TYPE_ERROR("has_suffix", 1, "string");
if(Pike_sp[1-args].type!=T_STRING)
SIMPLE_ARG_TYPE_ERROR("has_suffix", 2, "string");
a = Pike_sp[-args].u.string;
b = Pike_sp[1-args].u.string;
|
54277b | 2000-12-18 | Henrik Grubbström (Grubba) | |
if ((b->len > a->len) || (b->size_shift > a->size_shift)) {
pop_n_elems(args);
push_int(0);
return;
}
if ((a == b)||(!b->len)) {
pop_n_elems(args);
push_int(1);
return;
}
if (a->size_shift == b->size_shift) {
|
ce1a58 | 2000-12-18 | Henrik Grubbström (Grubba) | | int res = !MEMCMP(a->str + ((a->len - b->len)<<b->size_shift), b->str,
|
54277b | 2000-12-18 | Henrik Grubbström (Grubba) | | b->len << b->size_shift);
pop_n_elems(args);
push_int(res);
return;
}
#define TWO_SHIFTS(S1, S2) ((S1)|((S2)<<2))
switch(TWO_SHIFTS(a->size_shift, b->size_shift)) {
#define CASE_SHIFT(S1, S2) \
case TWO_SHIFTS(S1, S2): \
{ \
PIKE_CONCAT(p_wchar,S1) *s1 = PIKE_CONCAT(STR,S1)(a) + a->len - b->len; \
PIKE_CONCAT(p_wchar,S2) *s2 = PIKE_CONCAT(STR,S2)(b); \
ptrdiff_t len = b->len; \
while(len-- && (s1[len] == s2[len])) \
; \
pop_n_elems(args); \
push_int(len == -1); \
return; \
} \
break
CASE_SHIFT(1,0);
CASE_SHIFT(2,0);
CASE_SHIFT(2,1);
default:
Pike_error("has_prefix(): Unexpected string shift combination: a:%d, b:%d!\n",
a->size_shift, b->size_shift);
break;
}
#undef CASE_SHIFT
#undef TWO_SHIFTS
}
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
01587a | 2003-06-03 | Martin Stjernholm | | *! @decl int has_index(mapping|multiset|object|program haystack, mixed index)
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Search for @[index] in @[haystack].
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @returns
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Returns @expr{1@} if @[index] is in the index domain of @[haystack],
*! or @expr{0@} (zero) if not found.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function is equivalent to (but sometimes faster than):
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
f79bd8 | 2003-04-01 | Martin Nilsson | | *! @code
*! search(indices(haystack), index) != -1
*! @endcode
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @note
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! A negative index in strings and arrays as recognized by the
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! index operators @expr{`[]()@} and @expr{`[]=()@} is not considered
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! a proper index by @[has_index()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[has_value()], @[indices()], @[search()], @[values()], @[zero_type()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_has_index(INT32 args)
|
538a89 | 2000-01-21 | Fredrik Noring | | {
int t = 0;
|
e74e2c | 2003-01-05 | Martin Nilsson | | if(args < 2)
SIMPLE_TOO_FEW_ARGS_ERROR("has_index", 2);
if(args > 2)
pop_n_elems(args-2);
|
538a89 | 2000-01-21 | Fredrik Noring | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | switch(Pike_sp[-2].type)
|
538a89 | 2000-01-21 | Fredrik Noring | | {
case T_STRING:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[-1].type == T_INT)
t = (0 <= Pike_sp[-1].u.integer && Pike_sp[-1].u.integer < Pike_sp[-2].u.string->len);
|
538a89 | 2000-01-21 | Fredrik Noring | |
pop_n_elems(args);
push_int(t);
break;
case T_ARRAY:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[-1].type == T_INT)
t = (0 <= Pike_sp[-1].u.integer && Pike_sp[-1].u.integer < Pike_sp[-2].u.array->size);
|
538a89 | 2000-01-21 | Fredrik Noring | |
pop_n_elems(args);
push_int(t);
break;
case T_MULTISET:
case T_MAPPING:
f_index(2);
f_zero_type(1);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[-1].type == T_INT)
Pike_sp[-1].u.integer = !Pike_sp[-1].u.integer;
|
538a89 | 2000-01-21 | Fredrik Noring | | else
PIKE_ERROR("has_index",
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | "Function `zero_type' gave incorrect result.\n", Pike_sp, args);
|
538a89 | 2000-01-21 | Fredrik Noring | | break;
case T_OBJECT:
|
01587a | 2003-06-03 | Martin Stjernholm | | case T_PROGRAM:
|
7b5804 | 2000-01-24 | Fredrik Noring | | |
a4a172 | 2000-12-05 | Per Hedbor | | error for non-valid indices. Therefore it's not a good idea
|
7b5804 | 2000-01-24 | Fredrik Noring | | to use the index operator.
Maybe we should use object->_has_index(index) provided that
the object implements it.
|
538a89 | 2000-01-21 | Fredrik Noring | | /Noring */
stack_swap();
f_indices(1);
stack_swap();
f_search(2);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[-1].type == T_INT)
Pike_sp[-1].u.integer = (Pike_sp[-1].u.integer != -1);
|
538a89 | 2000-01-21 | Fredrik Noring | | else
PIKE_ERROR("has_index",
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | "Function `search' gave incorrect result.\n", Pike_sp, args);
|
01587a | 2003-06-03 | Martin Stjernholm | | break;
default:
SIMPLE_ARG_TYPE_ERROR ("has_index", 1,
"string|array|mapping|multiset|object|program");
|
538a89 | 2000-01-21 | Fredrik Noring | | }
}
|
9cf6c8 | 2001-03-11 | Henrik Grubbström (Grubba) | | |
01587a | 2003-06-03 | Martin Stjernholm | | *! @decl int has_value(array|mapping|object|program haystack, mixed value)
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Search for @[value] in @[haystack].
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @returns
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Returns @expr{1@} if @[value] is in the value domain of @[haystack],
*! or @expr{0@} (zero) if not found.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function is in all cases except when both arguments are strings
*! equivalent to (but sometimes faster than):
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
f79bd8 | 2003-04-01 | Martin Nilsson | | *! @code
*! search(values(@[haystack]), @[value]) != -1
*! @endcode
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! If both arguments are strings, @[has_value()] is equivalent to:
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
f79bd8 | 2003-04-01 | Martin Nilsson | | *! @code
*! search(@[haystack], @[value]) != -1
*! @endcode
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[has_index()], @[indices()], @[search()], @[values()], @[zero_type()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_has_value(INT32 args)
|
538a89 | 2000-01-21 | Fredrik Noring | | {
|
e74e2c | 2003-01-05 | Martin Nilsson | | if(args < 2)
SIMPLE_TOO_FEW_ARGS_ERROR("has_value", 2);
if(args > 2)
pop_n_elems(args-2);
|
538a89 | 2000-01-21 | Fredrik Noring | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | switch(Pike_sp[-2].type)
|
538a89 | 2000-01-21 | Fredrik Noring | | {
case T_MAPPING:
f_search(2);
f_zero_type(1);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[-1].type == T_INT)
Pike_sp[-1].u.integer = !Pike_sp[-1].u.integer;
|
538a89 | 2000-01-21 | Fredrik Noring | | else
PIKE_ERROR("has_value",
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | "Function `zero_type' gave incorrect result.\n", Pike_sp, args);
|
538a89 | 2000-01-21 | Fredrik Noring | | break;
|
01587a | 2003-06-03 | Martin Stjernholm | |
case T_PROGRAM:
|
538a89 | 2000-01-21 | Fredrik Noring | | case T_OBJECT:
|
f54c78 | 2004-12-22 | Henrik Grubbström (Grubba) | | use `search' directly since it's undefined whether it returns
|
538a89 | 2000-01-21 | Fredrik Noring | | -1 (array) or 0 (mapping) during e.g. some data type emulation.
|
7b5804 | 2000-01-24 | Fredrik Noring | |
Maybe we should use object->_has_value(value) provided that
the object implements it.
|
538a89 | 2000-01-21 | Fredrik Noring | | /Noring */
|
9cf6c8 | 2001-03-11 | Henrik Grubbström (Grubba) | |
|
01587a | 2003-06-03 | Martin Stjernholm | |
case T_MULTISET:
|
538a89 | 2000-01-21 | Fredrik Noring | | stack_swap();
f_values(1);
stack_swap();
|
01587a | 2003-06-03 | Martin Stjernholm | |
|
aa1488 | 2000-01-24 | Martin Stjernholm | | case T_STRING:
|
538a89 | 2000-01-21 | Fredrik Noring | | case T_ARRAY:
f_search(2);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[-1].type == T_INT)
Pike_sp[-1].u.integer = (Pike_sp[-1].u.integer != -1);
|
538a89 | 2000-01-21 | Fredrik Noring | | else
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | PIKE_ERROR("has_value", "Search gave incorrect result.\n", Pike_sp, args);
|
01587a | 2003-06-03 | Martin Stjernholm | | break;
default:
SIMPLE_ARG_TYPE_ERROR ("has_value", 1, "string|array|mapping|object|program");
|
538a89 | 2000-01-21 | Fredrik Noring | | }
}
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Add a new predefined constant.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function is often used to add builtin functions.
*! All programs compiled after the @[add_constant()] function has been
*! called can access @[value] by the name @[name].
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! If there is a constant called @[name] already, it will be replaced by
*! by the new definition. This will not affect already compiled programs.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Calling @[add_constant()] without a value will remove that name from
*! the list of constants. As with replacing, this will not affect already
*! compiled programs.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[all_constants()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_add_constant(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
811116 | 2003-09-07 | Martin Nilsson | | ASSERT_SECURITY_ROOT("add_constant");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | if(args<1)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_TOO_FEW_ARGS_ERROR("add_constant", 1);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[-args].type!=T_STRING)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("add_constant", 1, "string");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
if(args>1)
{
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | dmalloc_touch_svalue(Pike_sp-args+1);
low_add_efun(Pike_sp[-args].u.string, Pike_sp-args+1);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }else{
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | low_add_efun(Pike_sp[-args].u.string, 0);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
pop_n_elems(args);
}
|
f7fb1a | 2004-05-01 | Martin Stjernholm | | |
97e816 | 2004-05-01 | Martin Stjernholm | | *!
*! @[combine_path_unix()] concatenates in UNIX style, which also is
*! appropriate for e.g. URL:s ("/" separates path components and
*! absolute paths start with "/"). @[combine_path_nt()]
*! concatenates according to NT filesystem conventions ("/" and "\"
*! separates path components and there might be a drive letter in
*! front of absolute paths). @[combine_path_amigaos()] concatenates
*! according to AmigaOS filesystem conventions.
*!
*! @[combine_path()] is equivalent to @[combine_path_unix()] on UNIX-like
|
81ffaa | 2003-12-18 | Marcus Comstedt | | *! operating systems, and equivalent to @[combine_path_nt()] on NT-like
*! operating systems, and equivalent to @[combine_path_amigaos()] on
*! AmigaOS-like operating systems.
|
9849a7 | 2001-06-08 | Henrik Grubbström (Grubba) | | *!
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[getcwd()], @[Stdio.append_path()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
05459a | 1998-04-09 | Fredrik Hübinette (Hubbe) | |
|
8e0678 | 2001-06-07 | Fredrik Hübinette (Hubbe) | | #define NT_COMBINE_PATH
#include "combine_path.h"
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
8e0678 | 2001-06-07 | Fredrik Hübinette (Hubbe) | | #define UNIX_COMBINE_PATH
#include "combine_path.h"
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
81ffaa | 2003-12-18 | Marcus Comstedt | | #define AMIGAOS_COMBINE_PATH
#include "combine_path.h"
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Return the type of zero.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! There are many types of zeros out there, or at least there are two.
*! One is returned by normal functions, and one returned by mapping
*! lookups and @[find_call_out()] when what you looked for wasn't there.
*! The only way to separate these two kinds of zeros is @[zero_type()].
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @returns
*! When doing a @[find_call_out()] or mapping lookup, @[zero_type()] on
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! this value will return @expr{1@} if there was no such thing present in
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! the mapping, or if no such @tt{call_out@} could be found.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! If the argument to @[zero_type()] is a destructed object or a function
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! in a destructed object, @expr{2@} will be returned.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! In all other cases @[zero_type()] will return @expr{0@} (zero).
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
8459bf | 2001-07-27 | Martin Nilsson | | *! @[find_call_out()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_zero_type(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
if(args < 1)
|
8aefbc | 1999-03-19 | Fredrik Hübinette (Hubbe) | | SIMPLE_TOO_FEW_ARGS_ERROR("zero_type",1);
|
eaa4da | 2001-10-04 | Fredrik Hübinette (Hubbe) | | if((Pike_sp[-args].type==T_OBJECT || Pike_sp[-args].type==T_FUNCTION)
&& !Pike_sp[-args].u.object->prog)
|
3f6d8f | 1996-11-26 | Fredrik Hübinette (Hubbe) | | {
pop_n_elems(args);
|
eaa4da | 2001-10-04 | Fredrik Hübinette (Hubbe) | | push_int(NUMBER_DESTRUCTED);
|
8e9fdf | 1996-12-04 | Fredrik Hübinette (Hubbe) | | }
|
eaa4da | 2001-10-04 | Fredrik Hübinette (Hubbe) | | else if(Pike_sp[-args].type != T_INT)
|
8e9fdf | 1996-12-04 | Fredrik Hübinette (Hubbe) | | {
pop_n_elems(args);
|
eaa4da | 2001-10-04 | Fredrik Hübinette (Hubbe) | | push_int(0);
|
8e9fdf | 1996-12-04 | Fredrik Hübinette (Hubbe) | | }
|
eaa4da | 2001-10-04 | Fredrik Hübinette (Hubbe) | | else
|
8e9fdf | 1996-12-04 | Fredrik Hübinette (Hubbe) | | {
|
3f6d8f | 1996-11-26 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args-1);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | Pike_sp[-1].u.integer=Pike_sp[-1].subtype;
Pike_sp[-1].subtype=NUMBER_NUMBER;
|
3f6d8f | 1996-11-26 | Fredrik Hübinette (Hubbe) | | }
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
081147 | 2001-07-02 | Fredrik Hübinette (Hubbe) | | static int generate_zero_type(node *n)
{
if(count_args(CDR(n)) != 1) return 0;
if(do_docode(CDR(n),DO_NOT_COPY) != 1)
|
5aad93 | 2002-08-15 | Marcus Comstedt | | Pike_fatal("Count args was wrong in generate_zero_type().\n");
|
081147 | 2001-07-02 | Fredrik Hübinette (Hubbe) | | emit0(F_ZERO_TYPE);
return 1;
}
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | |
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Converts a string into an UTF16 compliant byte-stream.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @note
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Throws an error if characters not legal in an UTF16 stream are
*! encountered. Valid characters are in the range 0x00000 - 0x10ffff,
*! except for characters 0xfffe and 0xffff.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Characters in range 0x010000 - 0x10ffff are encoded using surrogates.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
a05604 | 2001-10-28 | Martin Nilsson | | *! @[Locale.Charset.decoder()], @[string_to_utf8()], @[unicode_to_string()],
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[utf8_to_string()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_string_to_unicode(INT32 args)
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | {
struct pike_string *in;
struct pike_string *out = NULL;
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | ptrdiff_t len;
ptrdiff_t i;
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | |
|
1d8bb0 | 1998-10-10 | Henrik Grubbström (Grubba) | | get_all_args("string_to_unicode", args, "%W", &in);
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | |
switch(in->size_shift) {
case 0:
len = in->len * 2;
out = begin_shared_string(len);
|
89a70c | 2000-08-28 | Henrik Grubbström (Grubba) | | if (len) {
MEMSET(out->str, 0, len);
#ifdef PIKE_DEBUG
if (d_flag) {
for(i = len; i--;) {
if (out->str[i]) {
|
5aad93 | 2002-08-15 | Marcus Comstedt | | Pike_fatal("MEMSET didn't clear byte %ld of %ld\n",
|
d1cac5 | 2000-09-07 | Henrik Grubbström (Grubba) | | PTRDIFF_T_TO_LONG(i+1),
PTRDIFF_T_TO_LONG(len));
|
89a70c | 2000-08-28 | Henrik Grubbström (Grubba) | | }
}
}
#endif /* PIKE_DEBUG */
for(i = in->len; i--;) {
out->str[i * 2 + 1] = in->str[i];
}
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | }
out = end_shared_string(out);
break;
case 1:
len = in->len * 2;
out = begin_shared_string(len);
|
71f3a2 | 1998-11-22 | Fredrik Hübinette (Hubbe) | | #if (PIKE_BYTEORDER == 4321)
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | |
MEMCPY(out->str, in->str, len);
#else
{
p_wchar1 *str1 = STR1(in);
for(i = in->len; i--;) {
unsigned INT32 c = str1[i];
|
715661 | 1998-10-15 | Henrik Grubbström (Grubba) | | out->str[i * 2 + 1] = c & 0xff;
|
66b11d | 1998-10-15 | Henrik Grubbström (Grubba) | | out->str[i * 2] = c >> 8;
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | }
}
#endif
out = end_shared_string(out);
break;
case 2:
{
p_wchar2 *str2 = STR2(in);
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | ptrdiff_t j;
|
01c108 | 1998-10-10 | Henrik Grubbström (Grubba) | | len = in->len * 2;
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | |
for(i = in->len; i--;) {
if (str2[i] > 0xfffd) {
if (str2[i] < 0x10000) {
|
b2d3e4 | 2000-12-01 | Fredrik Hübinette (Hubbe) | | Pike_error("string_to_unicode(): Illegal character 0x%04x (index %ld) "
|
69bb40 | 2000-08-17 | Henrik Grubbström (Grubba) | | "is not a Unicode character.",
str2[i], PTRDIFF_T_TO_LONG(i));
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | }
if (str2[i] > 0x10ffff) {
|
b2d3e4 | 2000-12-01 | Fredrik Hübinette (Hubbe) | | Pike_error("string_to_unicode(): Character 0x%08x (index %ld) "
|
b99d88 | 2003-05-15 | Martin Stjernholm | | "is out of range (0x00000000..0x0010ffff).",
|
69bb40 | 2000-08-17 | Henrik Grubbström (Grubba) | | str2[i], PTRDIFF_T_TO_LONG(i));
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | }
len += 2;
}
}
out = begin_shared_string(len);
|
01c108 | 1998-10-10 | Henrik Grubbström (Grubba) | | j = len;
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | for(i = in->len; i--;) {
unsigned INT32 c = str2[i];
j -= 2;
if (c > 0xffff) {
c -= 0x10000;
out->str[j + 1] = c & 0xff;
out->str[j] = 0xdc | ((c >> 8) & 0x03);
j -= 2;
c >>= 10;
c |= 0xd800;
}
out->str[j + 1] = c & 0xff;
out->str[j] = c >> 8;
}
|
71f3a2 | 1998-11-22 | Fredrik Hübinette (Hubbe) | | #ifdef PIKE_DEBUG
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | if (j) {
|
5aad93 | 2002-08-15 | Marcus Comstedt | | Pike_fatal("string_to_unicode(): Indexing error: len:%ld, j:%ld.\n",
|
69bb40 | 2000-08-17 | Henrik Grubbström (Grubba) | | PTRDIFF_T_TO_LONG(len), PTRDIFF_T_TO_LONG(j));
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | }
|
71f3a2 | 1998-11-22 | Fredrik Hübinette (Hubbe) | | #endif /* PIKE_DEBUG */
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | out = end_shared_string(out);
}
break;
default:
|
b2d3e4 | 2000-12-01 | Fredrik Hübinette (Hubbe) | | Pike_error("string_to_unicode(): Bad string shift: %d!\n", in->size_shift);
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | break;
}
pop_n_elems(args);
push_string(out);
}
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Converts an UTF16 byte-stream into a string.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @note
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function did not decode surrogates in Pike 7.2 and earlier.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
a05604 | 2001-10-28 | Martin Nilsson | | *! @[Locale.Charset.decoder()], @[string_to_unicode()], @[string_to_utf8()],
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[utf8_to_string()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_unicode_to_string(INT32 args)
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | {
struct pike_string *in;
struct pike_string *out = NULL;
|
f27279 | 2001-04-18 | Marcus Comstedt | | ptrdiff_t len, i, num_surrogates = 0;
int swab=0;
p_wchar1 surr1, surr2, surrmask, *str0;
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | |
get_all_args("unicode_to_string", args, "%S", &in);
if (in->len & 1) {
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | bad_arg_error("unicode_to_string", Pike_sp-args, args, 1, "string", Pike_sp-args,
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | "String length is odd.\n");
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | }
|
f27279 | 2001-04-18 | Marcus Comstedt | |
str0 = (p_wchar1 *)in->str;
len = in->len;
|
2f1f3e | 2001-05-03 | Henrik Grubbström (Grubba) | | if (len && (str0[0] == 0xfeff)) {
|
f27279 | 2001-04-18 | Marcus Comstedt | |
swab = 0;
str0 ++;
len -= 2;
|
2f1f3e | 2001-05-03 | Henrik Grubbström (Grubba) | | } else if (len && (str0[0] == 0xfffe)) {
|
f27279 | 2001-04-18 | Marcus Comstedt | |
swab = 1;
str0 ++;
len -= 2;
} else {
|
71f3a2 | 1998-11-22 | Fredrik Hübinette (Hubbe) | | #if (PIKE_BYTEORDER == 4321)
|
f27279 | 2001-04-18 | Marcus Comstedt | | swab = 0;
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | #else
|
f27279 | 2001-04-18 | Marcus Comstedt | | swab = 1;
#endif /* PIKE_BYTEORDER == 4321 */
}
if (swab) {
surr1 = 0xd8;
surr2 = 0xdc;
surrmask = 0xfc;
} else {
surr1 = 0xd800;
surr2 = 0xdc00;
surrmask = 0xfc00;
}
for (i = len; i >= 4; i -= 2, str0++)
if ( (str0[0]&surrmask) == surr1 &&
(str0[1]&surrmask) == surr2 )
num_surrogates ++;
str0++;
len = len / 2 - num_surrogates;
out = begin_wide_shared_string(len, (num_surrogates? 2 : 1));
if (!swab) {
if (num_surrogates) {
p_wchar2 *str2 = STR2(out);
for (i = len; i--; --str0)
if ((str0[-1]&surrmask) == surr2 && num_surrogates &&
(str0[-2]&surrmask) == surr1) {
str2[i] = ((str0[-2]&0x3ff)<<10) + (str0[-1]&0x3ff) + 0x10000;
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | |
|
f27279 | 2001-04-18 | Marcus Comstedt | | --str0;
--num_surrogates;
} else
str2[i] = str0[-1];
} else
MEMCPY(out->str, (char *)(str0-len), len*2);
} else {
if (num_surrogates) {
p_wchar2 *str2 = STR2(out);
|
2f1f3e | 2001-05-03 | Henrik Grubbström (Grubba) | | for (i = len; i--; --str0) {
|
f27279 | 2001-04-18 | Marcus Comstedt | |
if ((str0[-1]&surrmask) == surr2 && num_surrogates &&
(str0[-2]&surrmask) == surr1) {
|
2f1f3e | 2001-05-03 | Henrik Grubbström (Grubba) | | #if (PIKE_BYTEORDER == 4321)
|
bdafb5 | 2001-05-08 | Henrik Grubbström (Grubba) | | str2[i] = ((((unsigned char *)str0)[-3]&3)<<18) +
(((unsigned char *)str0)[-4]<<10) +
((((unsigned char *)str0)[-1]&3)<<8) +
((unsigned char *)str0)[-2] +
|
2f1f3e | 2001-05-03 | Henrik Grubbström (Grubba) | | 0x10000;
#else /* PIKE_BYTEORDER != 4321 */
|
f27279 | 2001-04-18 | Marcus Comstedt | | str2[i] = ((((unsigned char *)str0)[-4]&3)<<18) +
(((unsigned char *)str0)[-3]<<10) +
((((unsigned char *)str0)[-2]&3)<<8) +
((unsigned char *)str0)[-1] +
0x10000;
|
2f1f3e | 2001-05-03 | Henrik Grubbström (Grubba) | | #endif /* PIKE_BYTEORDER == 4321 */
|
f27279 | 2001-04-18 | Marcus Comstedt | | --str0;
--num_surrogates;
|
2f1f3e | 2001-05-03 | Henrik Grubbström (Grubba) | | } else {
#if (PIKE_BYTEORDER == 4321)
str2[i] = (((unsigned char *)str0)[-1]<<8) +
((unsigned char *)str0)[-2];
#else /* PIKE_BYTEORDER != 4321 */
|
f27279 | 2001-04-18 | Marcus Comstedt | | str2[i] = (((unsigned char *)str0)[-2]<<8) +
((unsigned char *)str0)[-1];
|
2f1f3e | 2001-05-03 | Henrik Grubbström (Grubba) | | #endif /* PIKE_BYTEORDER == 4321 */
}
}
|
f27279 | 2001-04-18 | Marcus Comstedt | | } else {
p_wchar1 *str1 = STR1(out);
|
2f1f3e | 2001-05-03 | Henrik Grubbström (Grubba) | | for (i = len; i--; --str0) {
#if (PIKE_BYTEORDER == 4321)
str1[i] = (((unsigned char *)str0)[-1]<<8) +
((unsigned char *)str0)[-2];
#else /* PIKE_BYTEORDER != 4321 */
|
f27279 | 2001-04-18 | Marcus Comstedt | | str1[i] = (((unsigned char *)str0)[-2]<<8) +
((unsigned char *)str0)[-1];
|
2f1f3e | 2001-05-03 | Henrik Grubbström (Grubba) | | #endif /* PIKE_BYTEORDER == 4321 */
}
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | }
}
out = end_shared_string(out);
pop_n_elems(args);
push_string(out);
}
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
dee894 | 2005-04-02 | Martin Stjernholm | | *! Converts a string into an UTF-8 compliant byte-stream.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @note
|
dee894 | 2005-04-02 | Martin Stjernholm | | *! Throws an error if characters not valid in an UTF-8 stream are
*! encountered. Valid characters are in the ranges
*! @expr{0x00000000-0x0000d7ff@} and @expr{0x0000e000-0x0010ffff@}.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
dee894 | 2005-04-02 | Martin Stjernholm | | *! If @[extended] is 1 then characters outside the valid ranges are
*! accepted too and encoded using the same algorithm. Such encoded
*! characters are however not UTF-8 compliant.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
a05604 | 2001-10-28 | Martin Nilsson | | *! @[Locale.Charset.encoder()], @[string_to_unicode()],
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[unicode_to_string()], @[utf8_to_string()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
77cc59 | 2003-11-14 | Martin Stjernholm | | PMOD_EXPORT void f_string_to_utf8(INT32 args)
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | {
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | ptrdiff_t len;
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | struct pike_string *in;
struct pike_string *out;
|
69bb40 | 2000-08-17 | Henrik Grubbström (Grubba) | | ptrdiff_t i,j;
|
2adf00 | 2004-02-29 | Martin Stjernholm | | INT_TYPE extended = 0;
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | |
|
2adf00 | 2004-02-29 | Martin Stjernholm | | get_all_args("string_to_utf8", args, "%W.%i", &in, &extended);
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | |
len = in->len;
for(i=0; i < in->len; i++) {
unsigned INT32 c = index_shared_string(in, i);
if (c & ~0x7f) {
len++;
if (c & ~0x7ff) {
len++;
if (c & ~0xffff) {
len++;
|
dee894 | 2005-04-02 | Martin Stjernholm | | if (!extended && c > 0x10ffff)
bad_arg_error ("string_to_utf8", Pike_sp - args, args, 1,
NULL, Pike_sp - args,
"Character 0x%08x at index %"PRINTPTRDIFFT"d is "
"outside the allowed range.\n",
c, i);
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | if (c & ~0x1fffff) {
len++;
if (c & ~0x3ffffff) {
len++;
if (c & ~0x7fffffff) {
len++;
}
}
}
}
|
dee894 | 2005-04-02 | Martin Stjernholm | | else if (!extended && c >= 0xd800 && c <= 0xdfff)
bad_arg_error ("string_to_utf8", Pike_sp - args, args, 1,
NULL, Pike_sp - args,
"Character 0x%08x at index %"PRINTPTRDIFFT"d is "
"in the surrogate range and therefore invalid.\n",
c, i);
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | }
}
}
if (len == in->len) {
|
8e3f35 | 1998-10-23 | Henrik Grubbström (Grubba) | |
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | pop_n_elems(args - 1);
return;
}
out = begin_shared_string(len);
for(i=j=0; i < in->len; i++) {
unsigned INT32 c = index_shared_string(in, i);
if (!(c & ~0x7f)) {
out->str[j++] = c;
} else if (!(c & ~0x7ff)) {
out->str[j++] = 0xc0 | (c >> 6);
out->str[j++] = 0x80 | (c & 0x3f);
} else if (!(c & ~0xffff)) {
out->str[j++] = 0xe0 | (c >> 12);
out->str[j++] = 0x80 | ((c >> 6) & 0x3f);
out->str[j++] = 0x80 | (c & 0x3f);
} else if (!(c & ~0x1fffff)) {
out->str[j++] = 0xf0 | (c >> 18);
out->str[j++] = 0x80 | ((c >> 12) & 0x3f);
out->str[j++] = 0x80 | ((c >> 6) & 0x3f);
out->str[j++] = 0x80 | (c & 0x3f);
} else if (!(c & ~0x3ffffff)) {
out->str[j++] = 0xf8 | (c >> 24);
out->str[j++] = 0x80 | ((c >> 18) & 0x3f);
out->str[j++] = 0x80 | ((c >> 12) & 0x3f);
out->str[j++] = 0x80 | ((c >> 6) & 0x3f);
out->str[j++] = 0x80 | (c & 0x3f);
} else if (!(c & ~0x7fffffff)) {
out->str[j++] = 0xfc | (c >> 30);
out->str[j++] = 0x80 | ((c >> 24) & 0x3f);
out->str[j++] = 0x80 | ((c >> 18) & 0x3f);
out->str[j++] = 0x80 | ((c >> 12) & 0x3f);
out->str[j++] = 0x80 | ((c >> 6) & 0x3f);
out->str[j++] = 0x80 | (c & 0x3f);
} else {
|
ed6590 | 1998-10-31 | Henrik Grubbström (Grubba) | |
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | |
|
1f88bf | 2001-09-24 | Henrik Grubbström (Grubba) | | out->str[j++] = DO_NOT_WARN((char)0xfe);
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | out->str[j++] = 0x80 | ((c >> 30) & 0x3f);
out->str[j++] = 0x80 | ((c >> 24) & 0x3f);
out->str[j++] = 0x80 | ((c >> 18) & 0x3f);
out->str[j++] = 0x80 | ((c >> 12) & 0x3f);
out->str[j++] = 0x80 | ((c >> 6) & 0x3f);
out->str[j++] = 0x80 | (c & 0x3f);
}
}
|
71f3a2 | 1998-11-22 | Fredrik Hübinette (Hubbe) | | #ifdef PIKE_DEBUG
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | if (len != j) {
|
5aad93 | 2002-08-15 | Marcus Comstedt | | Pike_fatal("string_to_utf8(): Calculated and actual lengths differ: "
|
dee894 | 2005-04-02 | Martin Stjernholm | | "%"PRINTPTRDIFFT"d != %"PRINTPTRDIFFT"d\n", len, j);
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | }
|
71f3a2 | 1998-11-22 | Fredrik Hübinette (Hubbe) | | #endif /* PIKE_DEBUG */
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | out = end_shared_string(out);
pop_n_elems(args);
push_string(out);
}
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
dee894 | 2005-04-02 | Martin Stjernholm | | *! Converts an UTF-8 byte-stream into a string.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @note
|
dee894 | 2005-04-02 | Martin Stjernholm | | *! Throws an error if the stream is not a legal UTF-8 byte-stream.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Accepts and decodes the extension used by @[string_to_utf8()], if
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! @[extended] is @expr{1@}.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
dee894 | 2005-04-02 | Martin Stjernholm | | *! @note
*! In conformance with RFC 3629 and Unicode 3.1 and later,
*! non-shortest forms are not decoded. An error will be thrown
*! instead.
*!
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *! @seealso
|
a05604 | 2001-10-28 | Martin Nilsson | | *! @[Locale.Charset.encoder()], @[string_to_unicode()], @[string_to_utf8()],
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[unicode_to_string()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_utf8_to_string(INT32 args)
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | {
struct pike_string *in;
struct pike_string *out;
|
dee894 | 2005-04-02 | Martin Stjernholm | | ptrdiff_t len = 0;
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | int shift = 0;
|
cc724f | 2005-05-05 | Martin Nilsson | | ptrdiff_t i,j=0;
|
2adf00 | 2004-02-29 | Martin Stjernholm | | INT_TYPE extended = 0;
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | |
|
2adf00 | 2004-02-29 | Martin Stjernholm | | get_all_args("utf8_to_string", args, "%S.%i", &in, &extended);
|
ed6590 | 1998-10-31 | Henrik Grubbström (Grubba) | |
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | for(i=0; i < in->len; i++) {
|
57dd67 | 2005-04-02 | Martin Stjernholm | | unsigned int c = STR0(in)[i];
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | len++;
if (c & 0x80) {
int cont = 0;
|
dee894 | 2005-04-02 | Martin Stjernholm | |
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | if ((c & 0xc0) == 0x80) {
|
dee894 | 2005-04-02 | Martin Stjernholm | | bad_arg_error ("utf8_to_string", Pike_sp - args, args, 1,
NULL, Pike_sp - args,
"Invalid continuation character 0x%02x "
"at index %"PRINTPTRDIFFT"d.\n",
c, i);
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | }
|
dee894 | 2005-04-02 | Martin Stjernholm | |
#define GET_CONT_CHAR(in, i, c) do { \
i++; \
if (i >= in->len) \
bad_arg_error ("utf8_to_string", Pike_sp - args, args, 1, \
NULL, Pike_sp - args, \
"Truncated UTF-8 sequence at end of string.\n"); \
|
57dd67 | 2005-04-02 | Martin Stjernholm | | c = STR0 (in)[i]; \
|
dee894 | 2005-04-02 | Martin Stjernholm | | if ((c & 0xc0) != 0x80) \
bad_arg_error ("utf8_to_string", Pike_sp - args, args, 1, \
NULL, Pike_sp - args, \
"Expected continuation character at index %d, " \
"got 0x%02x.\n", \
i, c); \
} while (0)
#define UTF8_SEQ_ERROR(prefix, c, i, problem) do { \
bad_arg_error ("utf8_to_string", Pike_sp - args, args, 1, \
NULL, Pike_sp - args, \
"UTF-8 sequence beginning with %s0x%02x " \
"at index %"PRINTPTRDIFFT"d %s.\n", \
prefix, c, i, problem); \
} while (0)
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | if ((c & 0xe0) == 0xc0) {
|
dee894 | 2005-04-02 | Martin Stjernholm | | if (!(c & 0x1e))
UTF8_SEQ_ERROR ("", c, i, "is a non-shortest form");
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | cont = 1;
if (c & 0x1c) {
if (shift < 1) {
shift = 1;
}
}
|
dee894 | 2005-04-02 | Martin Stjernholm | | }
else if ((c & 0xf0) == 0xe0) {
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | |
|
dee894 | 2005-04-02 | Martin Stjernholm | | if (c == 0xe0) {
GET_CONT_CHAR (in, i, c);
if (!(c & 0x20))
UTF8_SEQ_ERROR ("0xe0 ", c, i - 1, "is a non-shortest form");
cont = 1;
}
else if (!extended && c == 0xed) {
GET_CONT_CHAR (in, i, c);
if (c > 0x9f)
UTF8_SEQ_ERROR ("0xed ", c, i - 1, "would decode to "
"an invalid surrogate character");
cont = 1;
}
else
cont = 2;
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | if (shift < 1) {
shift = 1;
}
|
dee894 | 2005-04-02 | Martin Stjernholm | | }
else {
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | if ((c & 0xf8) == 0xf0) {
|
dee894 | 2005-04-02 | Martin Stjernholm | | if (c == 0xf0) {
GET_CONT_CHAR (in, i, c);
if (!(c & 0x30))
UTF8_SEQ_ERROR ("0xf0 ", c, i - 1, "is a non-shortest form");
cont = 2;
|
ed6590 | 1998-10-31 | Henrik Grubbström (Grubba) | | }
|
dee894 | 2005-04-02 | Martin Stjernholm | | else if (!extended) {
if (c > 0xf4)
UTF8_SEQ_ERROR ("", c, i, "would decode to "
"a character outside the valid UTF-8 range");
else if (c == 0xf4) {
GET_CONT_CHAR (in, i, c);
if (c > 0x8f)
UTF8_SEQ_ERROR ("0xf4 ", c, i - 1, "would decode to "
"a character outside the valid UTF-8 range");
cont = 2;
}
else
cont = 3;
}
else
cont = 3;
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | }
|
dee894 | 2005-04-02 | Martin Stjernholm | |
else if (c == 0xff)
bad_arg_error ("utf8_to_string", Pike_sp - args, args, 1,
NULL, Pike_sp - args,
"Invalid character 0xff at index %"PRINTPTRDIFFT"d.\n",
i);
else if (!extended)
UTF8_SEQ_ERROR ("", c, i, "would decode to "
"a character outside the valid UTF-8 range");
else {
if ((c & 0xfc) == 0xf8) {
if (c == 0xf8) {
GET_CONT_CHAR (in, i, c);
if (!(c & 0x38))
UTF8_SEQ_ERROR ("0xf8 ", c, i - 1, "is a non-shortest form");
cont = 3;
}
else
cont = 4;
} else if ((c & 0xfe) == 0xfc) {
if (c == 0xfc) {
GET_CONT_CHAR (in, i, c);
if (!(c & 0x3c))
UTF8_SEQ_ERROR ("0xfc ", c, i - 1, "is a non-shortest form");
cont = 4;
}
else
cont = 5;
} else if (c == 0xfe) {
GET_CONT_CHAR (in, i, c);
if (!(c & 0x3e))
UTF8_SEQ_ERROR ("0xfe ", c, i - 1, "is a non-shortest form");
else if (c & 0x3c)
UTF8_SEQ_ERROR ("0xfe ", c, i - 1, "would decode to "
"a too large character value");
cont = 5;
}
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | }
|
57dd67 | 2005-04-02 | Martin Stjernholm | |
if (shift < 2)
shift = 2;
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | }
|
dee894 | 2005-04-02 | Martin Stjernholm | |
while(cont--)
GET_CONT_CHAR (in, i, c);
|
57dd67 | 2005-04-02 | Martin Stjernholm | |
#undef GET_CONT_CHAR
#undef UTF8_SEQ_ERROR
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | }
}
if (len == in->len) {
pop_n_elems(args-1);
return;
}
out = begin_wide_shared_string(len, shift);
|
57dd67 | 2005-04-02 | Martin Stjernholm | | switch (shift) {
case 0: {
|
cfd642 | 2005-04-02 | Martin Stjernholm | | p_wchar0 *out_str = STR0 (out);
|
cc724f | 2005-05-05 | Martin Nilsson | | for(i=0; i < in->len;) {
|
57dd67 | 2005-04-02 | Martin Stjernholm | | unsigned int c = STR0(in)[i++];
if (c & 0x80) {
unsigned int c2 = STR0(in)[i++] & 0x3f;
c &= 0x1f;
c = (c << 6) | c2;
}
out_str[j++] = c;
}
break;
}
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | |
|
57dd67 | 2005-04-02 | Martin Stjernholm | | case 1: {
|
cfd642 | 2005-04-02 | Martin Stjernholm | | p_wchar1 *out_str = STR1 (out);
|
cc724f | 2005-05-05 | Martin Nilsson | | for(i=0; i < in->len;) {
|
57dd67 | 2005-04-02 | Martin Stjernholm | | unsigned int c = STR0(in)[i++];
if (c & 0x80) {
if ((c & 0xe0) == 0xc0) {
unsigned int c2 = STR0(in)[i++] & 0x3f;
c &= 0x1f;
c = (c << 6) | c2;
} else {
unsigned int c2 = STR0(in)[i++] & 0x3f;
unsigned int c3 = STR0(in)[i++] & 0x3f;
c &= 0x0f;
c = (c << 12) | (c2 << 6) | c3;
}
}
out_str[j++] = c;
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | }
|
57dd67 | 2005-04-02 | Martin Stjernholm | | break;
}
case 2: {
|
cfd642 | 2005-04-02 | Martin Stjernholm | | p_wchar2 *out_str = STR2 (out);
|
cc724f | 2005-05-05 | Martin Nilsson | | for(i=0; i < in->len;) {
|
57dd67 | 2005-04-02 | Martin Stjernholm | | unsigned int c = STR0(in)[i++];
if (c & 0x80) {
int cont = 0;
if ((c & 0xe0) == 0xc0) {
cont = 1;
c &= 0x1f;
} else if ((c & 0xf0) == 0xe0) {
cont = 2;
c &= 0x0f;
} else if ((c & 0xf8) == 0xf0) {
cont = 3;
c &= 0x07;
} else if ((c & 0xfc) == 0xf8) {
cont = 4;
c &= 0x03;
} else if ((c & 0xfe) == 0xfc) {
cont = 5;
c &= 0x01;
} else {
cont = 6;
c = 0;
}
while(cont--) {
unsigned int c2 = STR0(in)[i++] & 0x3f;
c = (c << 6) | c2;
}
}
out_str[j++] = c;
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | }
|
57dd67 | 2005-04-02 | Martin Stjernholm | | break;
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | }
}
|
57dd67 | 2005-04-02 | Martin Stjernholm | |
|
71f3a2 | 1998-11-22 | Fredrik Hübinette (Hubbe) | | #ifdef PIKE_DEBUG
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | if (j != len) {
|
5aad93 | 2002-08-15 | Marcus Comstedt | | Pike_fatal("utf8_to_string(): Calculated and actual lengths differ: %d != %d\n",
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | len, j);
}
|
71f3a2 | 1998-11-22 | Fredrik Hübinette (Hubbe) | | #endif /* PIKE_DEBUG */
|
57dd67 | 2005-04-02 | Martin Stjernholm | | out = low_end_shared_string(out);
|
cfd642 | 2005-04-02 | Martin Stjernholm | | #ifdef PIKE_DEBUG
check_string (out);
#endif
|
be4077 | 1998-10-15 | Henrik Grubbström (Grubba) | | pop_n_elems(args);
push_string(out);
}
|
7535f8 | 2001-01-08 | Henrik Grubbström (Grubba) | | |
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
aa0bdf | 1999-11-08 | Per Hedbor | | static void f_parse_pike_type( INT32 args )
{
|
babd87 | 2001-02-23 | Henrik Grubbström (Grubba) | | struct pike_type *t;
|
1f88bf | 2001-09-24 | Henrik Grubbström (Grubba) | |
|
babd87 | 2001-02-23 | Henrik Grubbström (Grubba) | | if( !args || Pike_sp[-1].type != T_STRING ||
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | Pike_sp[-1].u.string->size_shift )
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | Pike_error( "__parse_pike_type requires a 8bit string as its first argument\n" );
|
babd87 | 2001-02-23 | Henrik Grubbström (Grubba) | | t = parse_type( (char *)STR0(Pike_sp[-1].u.string) );
|
aa0bdf | 1999-11-08 | Per Hedbor | | pop_stack();
|
babd87 | 2001-02-23 | Henrik Grubbström (Grubba) | |
|
986b52 | 2001-03-17 | Henrik Grubbström (Grubba) | | push_string(type_to_string(t));
free_type(t);
|
aa0bdf | 1999-11-08 | Per Hedbor | | }
|
19febd | 2002-02-14 | Martin Nilsson | | |
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Returns a mapping containing all global constants, indexed on the name
*! of the constant, and with the value of the constant as value.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[add_constant()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_all_constants(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
pop_n_elems(args);
|
0e8861 | 1998-04-16 | Fredrik Hübinette (Hubbe) | | ref_push_mapping(get_builtin_constants());
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
2523ce | 2003-04-28 | Martin Stjernholm | | *! @decl array allocate(int size, mixed init)
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
2523ce | 2003-04-28 | Martin Stjernholm | | *! Allocate an array of @[size] elements. If @[init] is specified
*! then each element is initialized by copying that value
*! recursively.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[sizeof()], @[aggregate()], @[arrayp()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_allocate(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
3ee2a6 | 2004-11-14 | Alexander Demenshin | | INT_TYPE size;
|
8267f4 | 1998-01-28 | Fredrik Hübinette (Hubbe) | | struct array *a;
|
87a342 | 2004-05-13 | Martin Nilsson | | struct svalue *init;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
87a342 | 2004-05-13 | Martin Nilsson | | get_all_args("allocate", args, "%+.%*", &size, &init);
|
2cff8d | 2004-11-14 | Martin Stjernholm | | if (size > MAX_INT32)
SIMPLE_ARG_ERROR ("allocate", 1, "Integer too large to use as array size.");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
8267f4 | 1998-01-28 | Fredrik Hübinette (Hubbe) | | a=allocate_array(size);
if(args>1)
{
INT32 e;
|
2523ce | 2003-04-28 | Martin Stjernholm | | push_array (a);
|
87a342 | 2004-05-13 | Martin Nilsson | | for(e=0;e<size;e++)
|
2523ce | 2003-04-28 | Martin Stjernholm | | copy_svalues_recursively_no_free(a->item+e, init, 1, 0);
a->type_field = 1 << init->type;
stack_pop_n_elems_keep_top (args);
}
else {
a->type_field = BIT_INT;
pop_n_elems(args);
push_array(a);
|
8267f4 | 1998-01-28 | Fredrik Hübinette (Hubbe) | | }
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
0ee38f | 2002-05-11 | Martin Stjernholm | | |
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Returns the object we are currently evaluating in.
|
0ee38f | 2002-05-11 | Martin Stjernholm | | *!
*! @[level] might be used to access the object of a surrounding
*! class: The object at level 0 is the current object, the object
|
aa7e42 | 2003-08-03 | Martin Stjernholm | | *! at level 1 is the one belonging to the class that surrounds
*! the class that the object comes from, and so on.
*!
*! @note
*! As opposed to a qualified @expr{this@} reference such as
*! @expr{global::this@}, this function doesn't always access the
*! objects belonging to the lexically surrounding classes. If the
*! class containing the call has been inherited then the objects
*! surrounding the inheriting class are accessed.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | void f_this_object(INT32 args)
{
|
aa7e42 | 2003-08-03 | Martin Stjernholm | | int level, l;
struct object *o;
|
0ee38f | 2002-05-11 | Martin Stjernholm | | if (args) {
if (Pike_sp[-args].type != T_INT || Pike_sp[-args].u.integer < 0)
SIMPLE_BAD_ARG_ERROR ("this_object", 1, "a non-negative integer");
level = Pike_sp[-args].u.integer;
}
else
level = 0;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
|
aa7e42 | 2003-08-03 | Martin Stjernholm | |
o = Pike_fp->current_object;
for (l = 0; l < level; l++) {
struct program *p = o->prog;
if (!p)
Pike_error ("Object %d level(s) up is destructed - cannot get the parent.\n", l);
if (!(p->flags & PROGRAM_USES_PARENT))
Pike_error ("Object %d level(s) up lacks parent reference.\n", l);
o = PARENT_INFO(o)->parent;
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | }
|
aa7e42 | 2003-08-03 | Martin Stjernholm | | ref_push_object(o);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
0ee38f | 2002-05-11 | Martin Stjernholm | | static node *optimize_this_object(node *n)
|
b62ab0 | 1999-12-12 | Henrik Grubbström (Grubba) | | {
|
aa7e42 | 2003-08-03 | Martin Stjernholm | | int level = 0;
|
0ee38f | 2002-05-11 | Martin Stjernholm | |
if (CDR (n)) {
struct program_state *state = Pike_compiler;
if (CDR (n)->token != F_CONSTANT) {
int i;
for (i = 0; i < compilation_depth; i++, state = state->previous)
state->new_program->flags |= PROGRAM_USES_PARENT | PROGRAM_NEEDS_PARENT;
return NULL;
}
else {
|
aa7e42 | 2003-08-03 | Martin Stjernholm | | int i;
|
0ee38f | 2002-05-11 | Martin Stjernholm | | #ifdef PIKE_DEBUG
if (CDR (n)->u.sval.type != T_INT || CDR (n)->u.sval.u.integer < 0)
|
5aad93 | 2002-08-15 | Marcus Comstedt | | Pike_fatal ("The type check for this_object() failed.\n");
|
0ee38f | 2002-05-11 | Martin Stjernholm | | #endif
level = CDR (n)->u.sval.u.integer;
|
073ccf | 2003-08-04 | Henrik Grubbström (Grubba) | | for (i = MINIMUM(level, compilation_depth); i;
i--, state = state->previous) {
state->new_program->flags |=
PROGRAM_USES_PARENT | PROGRAM_NEEDS_PARENT;
}
|
0ee38f | 2002-05-11 | Martin Stjernholm | | }
}
|
aa7e42 | 2003-08-03 | Martin Stjernholm | |
if (!level) {
free_type(n->type);
type_stack_mark();
push_object_type(0, Pike_compiler->new_program->id);
n->type = pop_unfinished_type();
if (n->parent) {
n->parent->node_info |= OPT_TYPE_NOT_FIXED;
}
|
b62ab0 | 1999-12-12 | Henrik Grubbström (Grubba) | | }
|
aa7e42 | 2003-08-03 | Martin Stjernholm | |
|
b62ab0 | 1999-12-12 | Henrik Grubbström (Grubba) | | return NULL;
}
|
081147 | 2001-07-02 | Fredrik Hübinette (Hubbe) | | static int generate_this_object(node *n)
{
|
0ee38f | 2002-05-11 | Martin Stjernholm | | int level;
if (CDR (n)) {
if (CDR (n)->token != F_CONSTANT)
return 0;
else {
#ifdef PIKE_DEBUG
if (CDR (n)->u.sval.type != T_INT || CDR (n)->u.sval.u.integer < 0)
|
5aad93 | 2002-08-15 | Marcus Comstedt | | Pike_fatal ("The type check for this_object() failed.\n");
|
0ee38f | 2002-05-11 | Martin Stjernholm | | #endif
level = CDR (n)->u.sval.u.integer;
}
}
else level = 0;
emit1(F_THIS_OBJECT, level);
|
081147 | 2001-07-02 | Fredrik Hübinette (Hubbe) | | return 1;
}
|
bf5cbe | 2005-02-18 | Henrik Grubbström (Grubba) | | |
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Throw @[value] to a waiting @[catch].
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! If no @[catch] is waiting the global error handling will send the
*! value to @[master()->handle_error()].
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! If you throw an array with where the first index contains an error
*! message and the second index is a backtrace, (the output from
*! @[backtrace()]) then it will be treated exactly like a real error
*! by overlying functions.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[catch]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_throw(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
if(args < 1)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_TOO_FEW_ARGS_ERROR("throw", 1);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | assign_svalue(&throw_value,Pike_sp-args);
|
864d3c | 1998-01-29 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
|
641d5c | 1998-04-09 | Fredrik Hübinette (Hubbe) | | throw_severity=0;
|
dc7cc9 | 1998-01-14 | Fredrik Hübinette (Hubbe) | | pike_throw();
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
19e2c3 | 2004-03-02 | Martin Nilsson | | |
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Exit the whole Pike program with the given @[returncode].
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Using @[exit()] with any other value than @expr{0@} (zero) indicates
*! that something went wrong during execution. See your system manuals
*! for more information about return codes.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
b5ef7d | 2004-01-11 | Martin Nilsson | | *! The arguments after the @[returncode] will be used for a call to
*! @[werror] to output a message on stderr.
*!
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[_exit()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_exit(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
b4c5de | 1999-03-25 | Fredrik Hübinette (Hubbe) | | static int in_exit=0;
|
811116 | 2003-09-07 | Martin Nilsson | | ASSERT_SECURITY_ROOT("exit");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | if(args < 1)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_TOO_FEW_ARGS_ERROR("exit", 1);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[-args].type != T_INT)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("exit", 1, "int");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
b2d3e4 | 2000-12-01 | Fredrik Hübinette (Hubbe) | | if(in_exit) Pike_error("exit already called!\n");
|
b4c5de | 1999-03-25 | Fredrik Hübinette (Hubbe) | | in_exit=1;
|
d8e90a | 2004-05-09 | Martin Nilsson | | if(args>1 && Pike_sp[1-args].type==T_STRING) {
|
a108f4 | 2004-07-08 | Marcus Comstedt | | apply_svalue(simple_mapping_string_lookup(get_builtin_constants(),
"werror"), args-1);
|
3ab4cf | 2004-07-04 | Martin Nilsson | | pop_stack();
|
d8e90a | 2004-05-09 | Martin Nilsson | | args=1;
}
|
b5ef7d | 2004-01-11 | Martin Nilsson | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | assign_svalue(&throw_value, Pike_sp-args);
|
61e9a0 | 1998-01-25 | Fredrik Hübinette (Hubbe) | | throw_severity=THROW_EXIT;
pike_throw();
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function does the same as @[exit], but doesn't bother to clean
*! up the Pike interpreter before exiting. This means that no destructors
*! will be called, caches will not be flushed, file locks might not be
*! released, and databases might not be closed properly.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Use with extreme caution.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[exit()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
608d73 | 1998-03-20 | Fredrik Hübinette (Hubbe) | | void f__exit(INT32 args)
{
|
b2acc9 | 2004-05-13 | Martin Nilsson | | int code;
|
811116 | 2003-09-07 | Martin Nilsson | | ASSERT_SECURITY_ROOT("_exit");
|
b2acc9 | 2004-05-13 | Martin Nilsson | | get_all_args("_exit", args, "%i", &code);
|
608d73 | 1998-03-20 | Fredrik Hübinette (Hubbe) | |
|
d9a93b | 2001-07-01 | Fredrik Hübinette (Hubbe) | | #ifdef PIKE_DEBUG
{
|
143d88 | 2003-11-14 | Martin Stjernholm | | exit_opcodes();
|
d9a93b | 2001-07-01 | Fredrik Hübinette (Hubbe) | | }
#endif
|
b2acc9 | 2004-05-13 | Martin Nilsson | | exit(code);
|
608d73 | 1998-03-20 | Fredrik Hübinette (Hubbe) | | }
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
df0f87 | 2003-04-14 | Martin Stjernholm | | *! This function returns the number of seconds since 00:00:00 UTC, 1 Jan 1970.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
93af2d | 2003-10-31 | Martin Stjernholm | | *! The second syntax does not query the system for the current
*! time. Instead the latest done by the pike process is returned
*! again. That's slightly faster but can be wildly inaccurate. Pike
*! queries the time internally when a thread has waited for
*! something, typically in @[sleep] or in a backend (see
*! @[Pike.Backend]).
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! The third syntax can be used to measure time more preciely than one
*! second. It return how many seconds has passed since @[t]. The precision
*! of this function varies from system to system.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
5ef905 | 2003-01-13 | Martin Stjernholm | | *! @[ctime()], @[localtime()], @[mktime()], @[gmtime()],
|
2cccd3 | 2003-01-13 | Martin Stjernholm | | *! @[System.gettimeofday], @[gethrtime]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_time(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
7b52a0 | 1998-03-10 | Henrik Grubbström (Grubba) | | if(!args)
|
d0e674 | 1998-07-15 | Fredrik Hübinette (Hubbe) | | {
|
7b52a0 | 1998-03-10 | Henrik Grubbström (Grubba) | | GETTIMEOFDAY(¤t_time);
|
d0e674 | 1998-07-15 | Fredrik Hübinette (Hubbe) | | }else{
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[-args].type == T_INT && Pike_sp[-args].u.integer > 1)
|
d0e674 | 1998-07-15 | Fredrik Hübinette (Hubbe) | | {
struct timeval tmp;
GETTIMEOFDAY(¤t_time);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | tmp.tv_sec=Pike_sp[-args].u.integer;
|
d0e674 | 1998-07-15 | Fredrik Hübinette (Hubbe) | | tmp.tv_usec=0;
my_subtract_timeval(&tmp,¤t_time);
pop_n_elems(args);
|
65a549 | 2000-08-10 | Per Hedbor | | push_float( - (FLOAT_TYPE)tmp.tv_sec-((FLOAT_TYPE)tmp.tv_usec)/1000000 );
|
d0e674 | 1998-07-15 | Fredrik Hübinette (Hubbe) | | return;
}
}
pop_n_elems(args);
|
7b52a0 | 1998-03-10 | Henrik Grubbström (Grubba) | | push_int(current_time.tv_sec);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function crypts and verifies a short string (only the first
*! 8 characters are significant).
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! The first syntax crypts the string @[password] into something that
*! is hopefully hard to decrypt.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! The second syntax is used to verify @[typed_password] against
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! @[crypted_password], and returns @expr{1@} if they match, and
*! @expr{0@} (zero) otherwise.
|
b2acc9 | 2004-05-13 | Martin Nilsson | | *!
*! @note
*! Note that strings containing null characters will only be
*! processed up until the null character.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_crypt(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
char salt[2];
|
b2acc9 | 2004-05-13 | Martin Nilsson | | char *ret, *pwd, *saltp;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | char *choise =
"cbhisjKlm4k65p7qrJfLMNQOPxwzyAaBDFgnoWXYCZ0123tvdHueEGISRTUV89./";
|
b2acc9 | 2004-05-13 | Martin Nilsson | | get_all_args("crypt", args, "%s.%s", &pwd, &saltp);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
if(args>1)
{
|
b2acc9 | 2004-05-13 | Martin Nilsson | | if( Pike_sp[1-args].u.string->len < 2 )
|
0f6deb | 1997-08-06 | Fredrik Hübinette (Hubbe) | | {
pop_n_elems(args);
push_int(0);
return;
}
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | } else {
|
99e212 | 1996-09-23 | Fredrik Hübinette (Hubbe) | | unsigned int foo;
foo=my_rand();
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | salt[0] = choise[foo % (size_t) strlen(choise)];
|
99e212 | 1996-09-23 | Fredrik Hübinette (Hubbe) | | foo=my_rand();
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | salt[1] = choise[foo % (size_t) strlen(choise)];
|
8beaf7 | 1996-04-13 | Fredrik Hübinette (Hubbe) | | saltp=salt;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
#ifdef HAVE_CRYPT
|
b2acc9 | 2004-05-13 | Martin Nilsson | | ret = (char *)crypt(pwd, saltp);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | #else
#ifdef HAVE__CRYPT
|
b2acc9 | 2004-05-13 | Martin Nilsson | | ret = (char *)_crypt(pwd, saltp);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | #else
|
b2acc9 | 2004-05-13 | Martin Nilsson | | ret = pwd;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | #endif
#endif
if(args < 2)
{
pop_n_elems(args);
|
f0e6f1 | 2003-12-06 | Martin Nilsson | | push_text(ret);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }else{
int i;
|
b2acc9 | 2004-05-13 | Martin Nilsson | | i=!strcmp(ret,saltp);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
push_int(i);
}
}
|
c8bb3c | 2004-04-20 | Martin Nilsson | | |
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Mark an object as destructed.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
c8bb3c | 2004-04-20 | Martin Nilsson | | *! Calls @expr{o->destroy()@}, and then clears all variables in the
*! object. If no argument is given, the current object is destructed.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! All pointers and function pointers to this object will become zero.
*! The destructed object will be freed from memory as soon as possible.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_destruct(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
struct object *o;
if(args)
{
|
b5d71b | 2001-06-09 | Henrik Grubbström (Grubba) | | if(Pike_sp[-args].type != T_OBJECT) {
if ((Pike_sp[-args].type == T_INT) &&
(!Pike_sp[-args].u.integer)) {
pop_n_elems(args);
return;
}
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("destruct", 1, "object");
|
b5d71b | 2001-06-09 | Henrik Grubbström (Grubba) | | }
|
e99c7a | 1999-10-29 | Martin Stjernholm | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | o=Pike_sp[-args].u.object;
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | }else{
|
b5d71b | 2001-06-09 | Henrik Grubbström (Grubba) | | if(!Pike_fp) {
PIKE_ERROR("destruct",
"Destruct called without argument from callback function.\n",
Pike_sp, args);
}
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | o=Pike_fp->current_object;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
4d6d78 | 1999-11-14 | Martin Stjernholm | | if (o->prog && o->prog->flags & PROGRAM_NO_EXPLICIT_DESTRUCT)
|
b5d71b | 2001-06-09 | Henrik Grubbström (Grubba) | | PIKE_ERROR("destruct", "Object can't be destructed explicitly.\n",
Pike_sp, args);
|
803e64 | 1999-04-02 | Fredrik Hübinette (Hubbe) | | #ifdef PIKE_SECURITY
if(!CHECK_DATA_SECURITY(o, SECURITY_BIT_DESTRUCT))
|
b2d3e4 | 2000-12-01 | Fredrik Hübinette (Hubbe) | | Pike_error("Destruct permission denied.\n");
|
803e64 | 1999-04-02 | Fredrik Hübinette (Hubbe) | | #endif
|
54717e | 2001-06-28 | Fredrik Hübinette (Hubbe) | | debug_malloc_touch(o);
|
09f288 | 2005-02-09 | Martin Stjernholm | | destruct_object (o, DESTRUCT_EXPLICIT);
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
|
44138c | 2000-08-02 | Fredrik Hübinette (Hubbe) | | destruct_objects_to_destruct();
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
937c46 | 2001-02-06 | Henrik Grubbström (Grubba) | | |
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Return an array of all valid indices for the value @[x].
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
b2acc9 | 2004-05-13 | Martin Nilsson | | *! For strings and arrays this is simply an array of ascending
*! numbers.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! For mappings and multisets, the array may contain any value.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
b2acc9 | 2004-05-13 | Martin Nilsson | | *! For objects which define @[lfun::_indices()] that return value
*! will be used.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
b2acc9 | 2004-05-13 | Martin Nilsson | | *! For other objects an array with all non-static symbols will be
*! returned.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[values()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_indices(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | ptrdiff_t size;
|
cb787a | 2000-08-24 | Henrik Grubbström (Grubba) | | struct array *a = NULL;
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | |
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | if(args < 1)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_TOO_FEW_ARGS_ERROR("indices", 1);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | switch(Pike_sp[-args].type)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
case T_STRING:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | size=Pike_sp[-args].u.string->len;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | goto qjump;
case T_ARRAY:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | size=Pike_sp[-args].u.array->size;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
qjump:
|
99946c | 1996-02-17 | Fredrik Hübinette (Hubbe) | | a=allocate_array_no_init(size,0);
|
5c8e89 | 1995-10-29 | Fredrik Hübinette (Hubbe) | | while(--size>=0)
|
99946c | 1996-02-17 | Fredrik Hübinette (Hubbe) | | {
|
2523ce | 2003-04-28 | Martin Stjernholm | |
|
63540d | 2000-08-15 | Henrik Grubbström (Grubba) | | ITEM(a)[size].u.integer = DO_NOT_WARN((INT_TYPE)size);
|
99946c | 1996-02-17 | Fredrik Hübinette (Hubbe) | | }
|
2523ce | 2003-04-28 | Martin Stjernholm | | a->type_field = BIT_INT;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | break;
case T_MAPPING:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | a=mapping_indices(Pike_sp[-args].u.mapping);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | break;
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | case T_MULTISET:
|
5b15bb | 2001-12-10 | Martin Stjernholm | | a = multiset_indices (Pike_sp[-args].u.multiset);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | break;
|
6d4c4c | 1995-11-06 | Fredrik Hübinette (Hubbe) | | case T_OBJECT:
|
f54c78 | 2004-12-22 | Henrik Grubbström (Grubba) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | a=object_indices(Pike_sp[-args].u.object);
|
6d4c4c | 1995-11-06 | Fredrik Hübinette (Hubbe) | | break;
|
fa3145 | 1998-05-25 | Henrik Grubbström (Grubba) | | case T_PROGRAM:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | a = program_indices(Pike_sp[-args].u.program);
|
fa3145 | 1998-05-25 | Henrik Grubbström (Grubba) | | break;
|
0ceb87 | 1998-06-07 | Henrik Grubbström (Grubba) | | case T_FUNCTION:
{
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | struct program *p = program_from_svalue(Pike_sp-args);
|
0ceb87 | 1998-06-07 | Henrik Grubbström (Grubba) | | if (p) {
a = program_indices(p);
break;
}
}
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | default:
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("indices", 1,
"string|array|mapping|"
"multiset|object|program|function");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | return;
}
pop_n_elems(args);
push_array(a);
}
|
babd87 | 2001-02-23 | Henrik Grubbström (Grubba) | |
|
4d7b18 | 1999-12-07 | Fredrik Hübinette (Hubbe) | | #define FIX_OVERLOADED_TYPE(n, lf, X) fix_overloaded_type(n,lf,X,CONSTANT_STRLEN(X))
|
ac0455 | 2001-02-20 | Henrik Grubbström (Grubba) | |
|
4d7b18 | 1999-12-07 | Fredrik Hübinette (Hubbe) | | static node *fix_overloaded_type(node *n, int lfun, const char *deftype, int deftypelen)
{
node **first_arg;
|
ac0455 | 2001-02-20 | Henrik Grubbström (Grubba) | | struct pike_type *t, *t2;
|
4d7b18 | 1999-12-07 | Fredrik Hübinette (Hubbe) | | first_arg=my_get_arg(&_CDR(n), 0);
if(!first_arg) return 0;
t=first_arg[0]->type;
if(!t || match_types(t, object_type_string))
{
|
54f8ac | 2001-03-17 | Henrik Grubbström (Grubba) | |
while(t && t->type == PIKE_T_NAME) {
t = t->cdr;
}
|
391350 | 2002-06-25 | Henrik Grubbström (Grubba) | |
|
54f8ac | 2001-03-17 | Henrik Grubbström (Grubba) | |
|
391350 | 2002-06-25 | Henrik Grubbström (Grubba) | | if(t && (t->type == T_OBJECT))
|
4d7b18 | 1999-12-07 | Fredrik Hübinette (Hubbe) | | {
|
d2361e | 2003-06-30 | Martin Stjernholm | | struct program *p = id_to_program(CDR_TO_INT(t));
|
4d7b18 | 1999-12-07 | Fredrik Hübinette (Hubbe) | | if(p)
{
int fun=FIND_LFUN(p, lfun);
|
46aa64 | 1999-12-29 | Henrik Grubbström (Grubba) | | if(fun!=-1 &&
|
babd87 | 2001-02-23 | Henrik Grubbström (Grubba) | | (t2 = check_call(function_type_string, ID_FROM_INT(p, fun)->type,
0)))
|
4d7b18 | 1999-12-07 | Fredrik Hübinette (Hubbe) | | {
|
d68a07 | 2001-02-20 | Henrik Grubbström (Grubba) | | free_type(n->type);
|
babd87 | 2001-02-23 | Henrik Grubbström (Grubba) | | n->type = t2;
|
4d7b18 | 1999-12-07 | Fredrik Hübinette (Hubbe) | | return 0;
}
}
}
#if 1
if(deftype)
{
|
8a2a52 | 2001-03-03 | Henrik Grubbström (Grubba) | | t2 = make_pike_type(deftype);
|
babd87 | 2001-02-23 | Henrik Grubbström (Grubba) | | t = n->type;
n->type = or_pike_types(t,t2,0);
|
d68a07 | 2001-02-20 | Henrik Grubbström (Grubba) | | free_type(t);
free_type(t2);
|
4d7b18 | 1999-12-07 | Fredrik Hübinette (Hubbe) | | }
#endif
}
return 0;
}
static node *fix_indices_type(node *n)
{
return FIX_OVERLOADED_TYPE(n, LFUN__INDICES, tArray);
}
static node *fix_values_type(node *n)
{
return FIX_OVERLOADED_TYPE(n, LFUN__VALUES, tArray);
}
|
aab841 | 1999-12-07 | Henrik Grubbström (Grubba) | | static node *fix_aggregate_mapping_type(node *n)
{
|
d68a07 | 2001-02-20 | Henrik Grubbström (Grubba) | | struct pike_type *types[2] = { NULL, NULL };
|
aab841 | 1999-12-07 | Henrik Grubbström (Grubba) | | node *args = CDR(n);
|
d68a07 | 2001-02-20 | Henrik Grubbström (Grubba) | | struct pike_type *new_type = NULL;
|
aab841 | 1999-12-07 | Henrik Grubbström (Grubba) | |
#ifdef PIKE_DEBUG
if (l_flag > 2) {
fprintf(stderr, "Fixing type for aggregate_mapping():\n");
print_tree(n);
fprintf(stderr, "Original type:");
simple_describe_type(n->type);
}
#endif /* PIKE_DEBUG */
if (args) {
node *arg = args;
int argno = 0;
args->parent = 0;
while(arg) {
|
f01a89 | 1999-12-08 | Henrik Grubbström (Grubba) | | #ifdef PIKE_DEBUG
if (l_flag > 4) {
fprintf(stderr, "Searching for arg #%d...\n", argno);
}
#endif /* PIKE_DEBUG */
|
aab841 | 1999-12-07 | Henrik Grubbström (Grubba) | | if (arg->token == F_ARG_LIST) {
if (CAR(arg)) {
CAR(arg)->parent = arg;
arg = CAR(arg);
continue;
}
if (CDR(arg)) {
CDR(arg)->parent = arg;
arg = CDR(arg);
continue;
}
retrace:
|
f01a89 | 1999-12-08 | Henrik Grubbström (Grubba) | | #ifdef PIKE_DEBUG
if (l_flag > 4) {
fprintf(stderr, "Retracing in search for arg %d...\n", argno);
}
#endif /* PIKE_DEBUG */
|
aab841 | 1999-12-07 | Henrik Grubbström (Grubba) | | while (arg->parent &&
(!CDR(arg->parent) || (CDR(arg->parent) == arg))) {
arg = arg->parent;
}
if (!arg->parent) {
break;
}
arg = arg->parent;
CDR(arg)->parent = arg;
arg = CDR(arg);
continue;
}
if (arg->token == F_PUSH_ARRAY) {
|
babd87 | 2001-02-23 | Henrik Grubbström (Grubba) | |
|
8a2a52 | 2001-03-03 | Henrik Grubbström (Grubba) | | MAKE_CONSTANT_TYPE(new_type, tMap(tMixed, tMixed));
|
aab841 | 1999-12-07 | Henrik Grubbström (Grubba) | | goto set_type;
}
|
f01a89 | 1999-12-08 | Henrik Grubbström (Grubba) | | #ifdef PIKE_DEBUG
if (l_flag > 4) {
fprintf(stderr, "Found arg #%d:\n", argno);
print_tree(arg);
simple_describe_type(arg->type);
|
aab841 | 1999-12-07 | Henrik Grubbström (Grubba) | | }
|
f01a89 | 1999-12-08 | Henrik Grubbström (Grubba) | | #endif /* PIKE_DEBUG */
do {
if (types[argno]) {
|
ac0455 | 2001-02-20 | Henrik Grubbström (Grubba) | | struct pike_type *t = or_pike_types(types[argno], arg->type, 0);
|
d68a07 | 2001-02-20 | Henrik Grubbström (Grubba) | | free_type(types[argno]);
|
f01a89 | 1999-12-08 | Henrik Grubbström (Grubba) | | types[argno] = t;
#ifdef PIKE_DEBUG
if (l_flag > 4) {
fprintf(stderr, "Resulting type for arg #%d:\n", argno);
simple_describe_type(types[argno]);
}
#endif /* PIKE_DEBUG */
} else {
|
be6fec | 2001-04-01 | Henrik Grubbström (Grubba) | | copy_pike_type(types[argno], arg->type);
|
f01a89 | 1999-12-08 | Henrik Grubbström (Grubba) | | }
argno = !argno;
} while (argno && arg->parent && CAR(arg->parent) == CDR(arg->parent));
|
aab841 | 1999-12-07 | Henrik Grubbström (Grubba) | | goto retrace;
}
if (argno) {
yyerror("Odd number of arguments to aggregate_mapping().");
goto done;
}
if (!types[0]) {
|
8a2a52 | 2001-03-03 | Henrik Grubbström (Grubba) | | MAKE_CONSTANT_TYPE(new_type, tMap(tZero, tZero));
|
aab841 | 1999-12-07 | Henrik Grubbström (Grubba) | | goto set_type;
}
type_stack_mark();
|
d68a07 | 2001-02-20 | Henrik Grubbström (Grubba) | | push_finished_type(types[1]);
push_finished_type(types[0]);
|
aab841 | 1999-12-07 | Henrik Grubbström (Grubba) | | push_type(T_MAPPING);
new_type = pop_unfinished_type();
} else {
|
8a2a52 | 2001-03-03 | Henrik Grubbström (Grubba) | | MAKE_CONSTANT_TYPE(new_type, tMap(tZero, tZero));
|
aab841 | 1999-12-07 | Henrik Grubbström (Grubba) | | goto set_type;
}
if (new_type) {
set_type:
|
d68a07 | 2001-02-20 | Henrik Grubbström (Grubba) | | free_type(n->type);
|
aab841 | 1999-12-07 | Henrik Grubbström (Grubba) | | n->type = new_type;
#ifdef PIKE_DEBUG
if (l_flag > 2) {
fprintf(stderr, "Result type: ");
simple_describe_type(new_type);
}
#endif /* PIKE_DEBUG */
if (n->parent) {
n->parent->node_info |= OPT_TYPE_NOT_FIXED;
}
}
done:
if (args) {
args->parent = n;
}
if (types[1]) {
|
d68a07 | 2001-02-20 | Henrik Grubbström (Grubba) | | free_type(types[1]);
|
aab841 | 1999-12-07 | Henrik Grubbström (Grubba) | | }
if (types[0]) {
|
d68a07 | 2001-02-20 | Henrik Grubbström (Grubba) | | free_type(types[0]);
|
aab841 | 1999-12-07 | Henrik Grubbström (Grubba) | | }
return NULL;
}
|
937c46 | 2001-02-06 | Henrik Grubbström (Grubba) | | |
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
b2acc9 | 2004-05-13 | Martin Nilsson | | *! Return an array of all possible values from indexing the value
*! @[x].
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
b2acc9 | 2004-05-13 | Martin Nilsson | | *! For strings an array of int with the ISO10646 codes of the
*! characters in the string is returned.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
b2acc9 | 2004-05-13 | Martin Nilsson | | *! For a multiset an array filled with ones (@expr{1@}) is
*! returned.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! For arrays a single-level copy of @[x] is returned.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! For mappings the array may contain any value.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
b2acc9 | 2004-05-13 | Martin Nilsson | | *! For objects which define @[lfun::_values()] that return value
*! will be used.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
b2acc9 | 2004-05-13 | Martin Nilsson | | *! For other objects an array with the values of all non-static
*! symbols will be returned.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[indices()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_values(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | ptrdiff_t size;
|
cb787a | 2000-08-24 | Henrik Grubbström (Grubba) | | struct array *a = NULL;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | if(args < 1)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_TOO_FEW_ARGS_ERROR("values", 1);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | switch(Pike_sp[-args].type)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
case T_STRING:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | size = Pike_sp[-args].u.string->len;
|
c628dc | 1998-10-10 | Henrik Grubbström (Grubba) | | a = allocate_array_no_init(size,0);
while(--size >= 0)
|
99946c | 1996-02-17 | Fredrik Hübinette (Hubbe) | | {
|
2523ce | 2003-04-28 | Martin Stjernholm | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | ITEM(a)[size].u.integer = index_shared_string(Pike_sp[-args].u.string, size);
|
99946c | 1996-02-17 | Fredrik Hübinette (Hubbe) | | }
|
2523ce | 2003-04-28 | Martin Stjernholm | | a->type_field = BIT_INT;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | break;
case T_ARRAY:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | a=copy_array(Pike_sp[-args].u.array);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | break;
case T_MAPPING:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | a=mapping_values(Pike_sp[-args].u.mapping);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | break;
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | case T_MULTISET:
|
5b15bb | 2001-12-10 | Martin Stjernholm | | a = multiset_values (Pike_sp[-args].u.multiset);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | break;
|
6d4c4c | 1995-11-06 | Fredrik Hübinette (Hubbe) | | case T_OBJECT:
|
f54c78 | 2004-12-22 | Henrik Grubbström (Grubba) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | a=object_values(Pike_sp[-args].u.object);
|
6d4c4c | 1995-11-06 | Fredrik Hübinette (Hubbe) | | break;
|
fa3145 | 1998-05-25 | Henrik Grubbström (Grubba) | | case T_PROGRAM:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | a = program_values(Pike_sp[-args].u.program);
|
fa3145 | 1998-05-25 | Henrik Grubbström (Grubba) | | break;
|
0ceb87 | 1998-06-07 | Henrik Grubbström (Grubba) | | case T_FUNCTION:
{
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | struct program *p = program_from_svalue(Pike_sp - args);
|
0ceb87 | 1998-06-07 | Henrik Grubbström (Grubba) | | if (p) {
a = program_values(p);
break;
}
}
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | default:
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("values", 1,
"string|array|mapping|multiset|"
"object|program|function");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | return;
}
pop_n_elems(args);
push_array(a);
}
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Returns the next object from the list of all objects.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! All objects are stored in a linked list.
*!
*! @returns
*! If no arguments have been given @[next_object()] will return the first
*! object from the list.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! If @[o] has been specified the object after @[o] on the list will be
*! returned.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @note
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function is not recomended to use.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[destruct()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_next_object(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
struct object *o;
|
615b3e | 2003-01-28 | Martin Stjernholm | |
|
811116 | 2003-09-07 | Martin Nilsson | | ASSERT_SECURITY_ROOT("next_object");
|
615b3e | 2003-01-28 | Martin Stjernholm | |
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | if(args < 1)
{
|
87a608 | 2000-09-30 | Henrik Grubbström (Grubba) | | o = first_object;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }else{
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[-args].type != T_OBJECT)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("next_object", 1, "object");
|
87a608 | 2000-09-30 | Henrik Grubbström (Grubba) | | o = Pike_sp[-args].u.object->next;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
87a608 | 2000-09-30 | Henrik Grubbström (Grubba) | | while(o && !o->prog) o=o->next;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
if(!o)
{
push_int(0);
}else{
|
0e8861 | 1998-04-16 | Fredrik Hübinette (Hubbe) | | ref_push_object(o);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
}
|
fd25e0 | 2003-04-27 | Martin Nilsson | | |
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
fd25e0 | 2003-04-27 | Martin Nilsson | | *! Return the program from which @[o] was instantiated. If the
|
f3f0e8 | 2003-04-27 | Henrik Grubbström (Grubba) | | *! object was instantiated from a class using parent references
*! the generating function will be returned.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! If @[o] is not an object or has been destructed @expr{0@} (zero)
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! will be returned.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_object_program(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
if(args < 1)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_TOO_FEW_ARGS_ERROR("object_program", 1);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[-args].type == T_OBJECT)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | struct object *o=Pike_sp[-args].u.object;
|
c07fe5 | 2003-01-16 | Martin Stjernholm | | struct program *p = o->prog;
#if 0
if (p == pike_trampoline_program) {
struct pike_trampoline *t = (struct pike_trampoline *) o->storage;
if (t->frame && t->frame->current_object) {
add_ref (o = t->frame->current_object);
pop_n_elems (args);
push_function (o, t->func);
return;
}
}
#endif
if(p)
|
b1f4eb | 1998-01-13 | Fredrik Hübinette (Hubbe) | | {
|
229f69 | 2004-12-18 | Henrik Grubbström (Grubba) | | p = p->inherits[Pike_sp[-args].subtype].prog;
|
f54c78 | 2004-12-22 | Henrik Grubbström (Grubba) | |
|
f3c715 | 2001-04-14 | Fredrik Hübinette (Hubbe) | | if((p->flags & PROGRAM_USES_PARENT) &&
PARENT_INFO(o)->parent &&
PARENT_INFO(o)->parent->prog)
|
b1f4eb | 1998-01-13 | Fredrik Hübinette (Hubbe) | | {
|
f3c715 | 2001-04-14 | Fredrik Hübinette (Hubbe) | | INT32 id=PARENT_INFO(o)->parent_identifier;
o=PARENT_INFO(o)->parent;
|
0e8861 | 1998-04-16 | Fredrik Hübinette (Hubbe) | | add_ref(o);
|
b1f4eb | 1998-01-13 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
|
c07fe5 | 2003-01-16 | Martin Stjernholm | | push_function(o, id);
|
b1f4eb | 1998-01-13 | Fredrik Hübinette (Hubbe) | | return;
}else{
|
0e8861 | 1998-04-16 | Fredrik Hübinette (Hubbe) | | add_ref(p);
|
b1f4eb | 1998-01-13 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
push_program(p);
return;
}
}
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
b1f4eb | 1998-01-13 | Fredrik Hübinette (Hubbe) | |
pop_n_elems(args);
push_int(0);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
70c926 | 1999-12-22 | Henrik Grubbström (Grubba) | | node *fix_object_program_type(node *n)
{
node *nn;
|
ac0455 | 2001-02-20 | Henrik Grubbström (Grubba) | | struct pike_type *new_type = NULL;
|
70c926 | 1999-12-22 | Henrik Grubbström (Grubba) | |
if (!n->type) {
|
be6fec | 2001-04-01 | Henrik Grubbström (Grubba) | | copy_pike_type(n->type, program_type_string);
|
70c926 | 1999-12-22 | Henrik Grubbström (Grubba) | | }
if (!(nn = CDR(n))) return NULL;
if ((nn->token == F_ARG_LIST) && (!(nn = CAR(nn)))) return NULL;
if (!nn->type) return NULL;
new_type = object_type_to_program_type(nn->type);
if (new_type) {
|
d68a07 | 2001-02-20 | Henrik Grubbström (Grubba) | | free_type(n->type);
|
70c926 | 1999-12-22 | Henrik Grubbström (Grubba) | | n->type = new_type;
}
return NULL;
}
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Reverses a string, array or int.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function reverses a string, char by char, an array, value
|
5b916d | 2002-09-29 | Martin Stjernholm | | *! by value or an int, bit by bit and returns the result. It's not
*! destructive on the input value.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Reversing strings can be particularly useful for parsing difficult
*! syntaxes which require scanning backwards.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[sscanf()]
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_reverse(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
if(args < 1)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_TOO_FEW_ARGS_ERROR("reverse", 1);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | switch(Pike_sp[-args].type)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
case T_STRING:
{
INT32 e;
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | struct pike_string *s;
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | s=begin_wide_shared_string(Pike_sp[-args].u.string->len,
|
ac0455 | 2001-02-20 | Henrik Grubbström (Grubba) | | Pike_sp[-args].u.string->size_shift);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | switch(Pike_sp[-args].u.string->size_shift)
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | {
case 0:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | for(e=0;e<Pike_sp[-args].u.string->len;e++)
STR0(s)[e]=STR0(Pike_sp[-args].u.string)[Pike_sp[-args].u.string->len-1-e];
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | break;
case 1:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | for(e=0;e<Pike_sp[-args].u.string->len;e++)
STR1(s)[e]=STR1(Pike_sp[-args].u.string)[Pike_sp[-args].u.string->len-1-e];
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | break;
case 2:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | for(e=0;e<Pike_sp[-args].u.string->len;e++)
STR2(s)[e]=STR2(Pike_sp[-args].u.string)[Pike_sp[-args].u.string->len-1-e];
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | break;
}
s=low_end_shared_string(s);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
push_string(s);
break;
}
case T_INT:
{
INT32 e;
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | e=Pike_sp[-args].u.integer;
|
5c8e89 | 1995-10-29 | Fredrik Hübinette (Hubbe) | | e=((e & 0x55555555UL)<<1) + ((e & 0xaaaaaaaaUL)>>1);
e=((e & 0x33333333UL)<<2) + ((e & 0xccccccccUL)>>2);
e=((e & 0x0f0f0f0fUL)<<4) + ((e & 0xf0f0f0f0UL)>>4);
e=((e & 0x00ff00ffUL)<<8) + ((e & 0xff00ff00UL)>>8);
e=((e & 0x0000ffffUL)<<16)+ ((e & 0xffff0000UL)>>16);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | Pike_sp[-args].u.integer=e;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args-1);
break;
}
|
a63b36 | 2003-11-07 | Martin Stjernholm | |
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | case T_ARRAY:
{
struct array *a;
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | a=reverse_array(Pike_sp[-args].u.array);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
push_array(a);
break;
}
default:
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("reverse", 1, "string|int|array");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
}
struct tupel
{
|
7e97c3 | 1999-01-21 | Fredrik Hübinette (Hubbe) | | int prefix;
struct pike_string *ind;
struct pike_string *val;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | };
|
7e97c3 | 1999-01-21 | Fredrik Hübinette (Hubbe) | |
static int find_longest_prefix(char *str,
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | ptrdiff_t len,
|
7e97c3 | 1999-01-21 | Fredrik Hübinette (Hubbe) | | int size_shift,
struct tupel *v,
INT32 a,
INT32 b)
{
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | INT32 c,match=-1;
ptrdiff_t tmp;
|
0fe670 | 2004-04-30 | Martin Stjernholm | | check_c_stack(2048);
|
7e97c3 | 1999-01-21 | Fredrik Hübinette (Hubbe) | | 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 ,
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;
match=c;
}
}
return match;
}
|
70da5a | 2001-06-27 | Henrik Grubbström (Grubba) | | static int replace_sortfun(struct tupel *a,struct tupel *b)
{
return DO_NOT_WARN((int)my_quick_strcmp(a->ind, b->ind));
}
|
0fe670 | 2004-04-30 | Martin Stjernholm | | struct replace_many_context
{
struct string_builder ret;
struct tupel *v;
};
static void free_replace_many_context (struct replace_many_context *ctx)
{
free_string_builder (&ctx->ret);
free ((char *) ctx->v);
}
|
70da5a | 2001-06-27 | Henrik Grubbström (Grubba) | | static struct pike_string *replace_many(struct pike_string *str,
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | struct array *from,
struct array *to)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | INT32 e,num;
ptrdiff_t s, length;
|
0fe670 | 2004-04-30 | Martin Stjernholm | | struct replace_many_context ctx;
ONERROR uwp;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
int set_start[256];
int set_end[256];
if(from->size != to->size)
|
b2d3e4 | 2000-12-01 | Fredrik Hübinette (Hubbe) | | Pike_error("Replace must have equal-sized from and to arrays.\n");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
if(!from->size)
{
reference_shared_string(str);
return str;
}
|
257524 | 2004-05-14 | Martin Nilsson | | if( (from->type_field & ~BIT_STRING) &&
(array_fix_type_field(from) & ~BIT_STRING) )
Pike_error("replace: from array not array(string).\n");
|
a8cdf9 | 2004-04-29 | Martin Nilsson | |
|
257524 | 2004-05-14 | Martin Nilsson | | if( (to->type_field & ~BIT_STRING) &&
(array_fix_type_field(to) & ~BIT_STRING) )
Pike_error("replace: to array not array(string).\n");
|
a8cdf9 | 2004-04-29 | Martin Nilsson | |
|
99e4f0 | 2004-10-15 | Henrik Grubbström (Grubba) | |
if (from->size > (ptrdiff_t)(LONG_MAX/sizeof(struct tupel)))
Pike_error("Array too large (size %" PRINTPTRDIFFT "d "
|
bd5e8b | 2004-10-16 | Marcus Agehall | | "exceeds %" PRINTSIZET "u).\n",
from->size, (size_t)(LONG_MAX/sizeof(struct tupel)));
|
0fe670 | 2004-04-30 | Martin Stjernholm | | ctx.v=(struct tupel *)xalloc(sizeof(struct tupel)*from->size);
init_string_builder(&ctx.ret,str->size_shift);
SET_ONERROR (uwp, free_replace_many_context, &ctx);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
3e625c | 1998-10-11 | Fredrik Hübinette (Hubbe) | | for(num=e=0;e<from->size;e++)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
3e625c | 1998-10-11 | Fredrik Hübinette (Hubbe) | | if(ITEM(from)[e].u.string->size_shift > str->size_shift)
continue;
|
0fe670 | 2004-04-30 | Martin Stjernholm | | ctx.v[num].ind=ITEM(from)[e].u.string;
ctx.v[num].val=ITEM(to)[e].u.string;
ctx.v[num].prefix=-2;
|
3e625c | 1998-10-11 | Fredrik Hübinette (Hubbe) | | num++;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
0fe670 | 2004-04-30 | Martin Stjernholm | | fsort((char *)ctx.v,num,sizeof(struct tupel),(fsortfun)replace_sortfun);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
487565 | 2004-04-29 | Martin Nilsson | | MEMSET(set_start, 0, sizeof(set_start));
MEMSET(set_end, 0, sizeof(set_end));
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
3e625c | 1998-10-11 | Fredrik Hübinette (Hubbe) | | for(e=0;e<num;e++)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
3e625c | 1998-10-11 | Fredrik Hübinette (Hubbe) | | INT32 x;
|
0fe670 | 2004-04-30 | Martin Stjernholm | | x=index_shared_string(ctx.v[num-1-e].ind,0);
|
487565 | 2004-04-29 | Martin Nilsson | | if((x<(INT32)NELEM(set_start)) && (x >= 0))
|
70da5a | 2001-06-27 | Henrik Grubbström (Grubba) | | set_start[x]=num-e-1;
|
0fe670 | 2004-04-30 | Martin Stjernholm | | x=index_shared_string(ctx.v[e].ind,0);
|
487565 | 2004-04-29 | Martin Nilsson | | if((x<(INT32)NELEM(set_end)) && (x >= 0))
|
70da5a | 2001-06-27 | Henrik Grubbström (Grubba) | | set_end[x]=e+1;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
length=str->len;
|
3e625c | 1998-10-11 | Fredrik Hübinette (Hubbe) | | for(s=0;length > 0;)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | INT32 a,b;
ptrdiff_t ch;
|
3e625c | 1998-10-11 | Fredrik Hübinette (Hubbe) | |
ch=index_shared_string(str,s);
|
487565 | 2004-04-29 | Martin Nilsson | | if((ch<(ptrdiff_t)NELEM(set_end)) && (ch >= 0))
|
70da5a | 2001-06-27 | Henrik Grubbström (Grubba) | | b=set_end[ch];
else
b=num;
|
3e625c | 1998-10-11 | Fredrik Hübinette (Hubbe) | |
if(b)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
487565 | 2004-04-29 | Martin Nilsson | | if((ch<(ptrdiff_t)NELEM(set_start)) && (ch >= 0))
|
70da5a | 2001-06-27 | Henrik Grubbström (Grubba) | | a=set_start[ch];
else
a=0;
|
3e625c | 1998-10-11 | Fredrik Hübinette (Hubbe) | |
|
7e97c3 | 1999-01-21 | Fredrik Hübinette (Hubbe) | | a=find_longest_prefix(str->str+(s << str->size_shift),
length,
str->size_shift,
|
0fe670 | 2004-04-30 | Martin Stjernholm | | ctx.v, a, b);
|
7e97c3 | 1999-01-21 | Fredrik Hübinette (Hubbe) | |
if(a!=-1)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
0fe670 | 2004-04-30 | Martin Stjernholm | | ch = ctx.v[a].ind->len;
|
7e97c3 | 1999-01-21 | Fredrik Hübinette (Hubbe) | | if(!ch) ch=1;
s+=ch;
length-=ch;
|
0fe670 | 2004-04-30 | Martin Stjernholm | | string_builder_shared_strcat(&ctx.ret,ctx.v[a].val);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | continue;
}
}
|
0fe670 | 2004-04-30 | Martin Stjernholm | | string_builder_putchar(&ctx.ret,
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | DO_NOT_WARN((INT32)ch));
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | s++;
length--;
}
|
0fe670 | 2004-04-30 | Martin Stjernholm | | UNSET_ONERROR (uwp);
free((char *)ctx.v);
return finish_string_builder(&ctx.ret);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | |
bd33e7 | 2001-02-07 | Martin Nilsson | | *! @decl string replace(string s, mapping(string:string) replacements)
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *! @decl array replace(array a, mixed from, mixed to)
*! @decl mapping replace(mapping a, mixed from, mixed to)
*!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Generic replace function.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function can do several kinds replacement operations, the
*! different syntaxes do different things as follows:
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! If all the arguments are strings, a copy of @[s] with every
*! occurrence of @[from] replaced with @[to] will be returned.
*! Special case: @[to] will be inserted between every character in
*! @[s] if @[from] is the empty string.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! If the first argument is a string, and the others array(string), a string
*! with every occurrance of @[from][@i{i@}] in @[s] replaced with
*! @[to][@i{i@}] will be returned. Instead of the arrays @[from] and @[to]
|
f79bd8 | 2003-04-01 | Martin Nilsson | | *! a mapping equvivalent to @expr{@[mkmapping](@[from], @[to])@} can be
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! used.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! If the first argument is an array or mapping, the values of @[a] which
*! are @[`==()] with @[from] will be replaced with @[to] destructively.
*! @[a] will then be returned.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @note
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Note that @[replace()] on arrays and mappings is a destructive operation.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_replace(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
if(args < 3)
|
f7a446 | 2000-10-31 | Mirar (Pontus Hagland) | | {
if (args==2 &&
|
a8cdf9 | 2004-04-29 | Martin Nilsson | | Pike_sp[-1].type==T_MAPPING)
|
f7a446 | 2000-10-31 | Mirar (Pontus Hagland) | | {
|
200bfd | 2004-05-14 | Martin Nilsson | | struct mapping *m = Pike_sp[-1].u.mapping;
if( (m->data->ind_types & ~BIT_STRING) ||
(m->data->val_types & ~BIT_STRING) ) {
mapping_fix_type_field(Pike_sp[-1].u.mapping);
if( (m->data->ind_types & ~BIT_STRING) ||
(m->data->val_types & ~BIT_STRING) ) {
SIMPLE_BAD_ARG_ERROR("replace", 2, "mapping(string:string)");
}
}
|
f7a446 | 2000-10-31 | Mirar (Pontus Hagland) | | stack_dup();
f_indices(1);
stack_swap();
f_values(1);
args++;
}
else
SIMPLE_TOO_FEW_ARGS_ERROR("replace", 3);
}
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | switch(Pike_sp[-args].type)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
case T_ARRAY:
{
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | array_replace(Pike_sp[-args].u.array,Pike_sp+1-args,Pike_sp+2-args);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args-1);
break;
}
case T_MAPPING:
{
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | mapping_replace(Pike_sp[-args].u.mapping,Pike_sp+1-args,Pike_sp+2-args);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args-1);
break;
}
case T_STRING:
{
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | struct pike_string *s;
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | switch(Pike_sp[1-args].type)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
default:
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("replace", 2, "string|array");
|
a8cdf9 | 2004-04-29 | Martin Nilsson | |
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | case T_STRING:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[2-args].type != T_STRING)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("replace", 3, "string");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | s=string_replace(Pike_sp[-args].u.string,
Pike_sp[1-args].u.string,
Pike_sp[2-args].u.string);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | break;
case T_ARRAY:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[2-args].type != T_ARRAY)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("replace", 3, "array");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | s=replace_many(Pike_sp[-args].u.string,
Pike_sp[1-args].u.array,
Pike_sp[2-args].u.array);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
}
pop_n_elems(args);
push_string(s);
break;
}
|
8b6378 | 1996-04-11 | Fredrik Hübinette (Hubbe) | |
default:
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("replace", 1, "array|mapping|string");
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
}
|
637767 | 2001-06-01 | Henrik Grubbström (Grubba) | | node *optimize_replace(node *n)
{
node **arg0 = my_get_arg(&_CDR(n), 0);
struct pike_type *array_zero;
struct pike_type *mapping_zero;
MAKE_CONSTANT_TYPE(array_zero, tArr(tZero));
MAKE_CONSTANT_TYPE(mapping_zero, tMap(tZero, tZero));
if (arg0 &&
(pike_types_le(array_zero, (*arg0)->type) ||
pike_types_le(mapping_zero, (*arg0)->type))) {
n->node_info |= OPT_SIDE_EFFECT;
n->tree_info |= OPT_SIDE_EFFECT;
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | | } else {
|
229f69 | 2004-12-18 | Henrik Grubbström (Grubba) | | * It must thus be a string.
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | | */
node **arg1 = my_get_arg(&_CDR(n), 1);
node **arg2 = my_get_arg(&_CDR(n), 2);
if (arg1 && pike_types_le((*arg1)->type, array_type_string) &&
arg2 && pike_types_le((*arg2)->type, array_type_string)) {
if (!is_const(*arg0) && is_const(*arg1) && is_const(*arg2)) {
struct svalue *save_sp = Pike_sp;
JMP_BUF tmp;
if (SETJMP(tmp)) {
|
718e9c | 2004-10-11 | Martin Stjernholm | | struct svalue thrown = throw_value;
struct pike_string *s;
|
c1b8f0 | 2001-07-02 | Martin Stjernholm | | throw_value.type = T_INT;
|
718e9c | 2004-10-11 | Martin Stjernholm | | pop_n_elems(Pike_sp - save_sp);
yywarning("Optimizer failure in replace().");
s = format_exception_for_error_msg (&thrown);
if (s) {
yywarning ("%S", s);
free_string (s);
}
free_svalue(&thrown);
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | | } else {
extern struct program *multi_string_replace_program;
INT16 lfun;
|
cbd1f2 | 2001-06-29 | Henrik Grubbström (Grubba) | | struct object *replace_obj;
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | | node *ret = NULL;
|
9f85c3 | 2002-10-25 | Marcus Comstedt | | INT32 args = eval_low(*arg1,1);
args += eval_low(*arg2,1);
|
cbd1f2 | 2001-06-29 | Henrik Grubbström (Grubba) | |
replace_obj = clone_object(multi_string_replace_program, args);
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | |
push_object(replace_obj);
if (replace_obj->prog &&
((lfun = FIND_LFUN(replace_obj->prog, LFUN_CALL)) != -1)) {
Pike_sp[-1].subtype = lfun;
Pike_sp[-1].type = PIKE_T_FUNCTION;
ADD_NODE_REF2(*arg0,
ret = mkapplynode(mkconstantsvaluenode(Pike_sp-1),
*arg0);
);
UNSETJMP(tmp);
|
620f8e | 2001-06-28 | Fredrik Hübinette (Hubbe) | | pop_n_elems(Pike_sp - save_sp);
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | |
free_type(array_zero);
free_type(mapping_zero);
return ret;
}
}
UNSETJMP(tmp);
|
620f8e | 2001-06-28 | Fredrik Hübinette (Hubbe) | | pop_n_elems(Pike_sp - save_sp);
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | | }
}
|
637767 | 2001-06-01 | Henrik Grubbström (Grubba) | | }
|
84bf7e | 2001-06-05 | Martin Stjernholm | |
free_type(array_zero);
free_type(mapping_zero);
|
637767 | 2001-06-01 | Henrik Grubbström (Grubba) | | return NULL;
}
|
937c46 | 2001-02-06 | Henrik Grubbström (Grubba) | | |
dc9ca6 | 2001-12-12 | Martin Nilsson | | *! int|void major, int|void minor,@
*! program|void target, object|void placeholder)
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Compile a string to a program.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function takes a piece of Pike code as a string and
*! compiles it into a clonable program.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! The optional argument @[handler] is used to specify an alternative
*! error handler. If it is not specified the current master object will
*! be used.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! The optional arguments @[major] and @[minor] are used to tell the
*! compiler to attempt to be compatible with Pike @[major].@[minor].
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @note
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Note that @[source] must contain the complete source for a program.
*! It is not possible to compile a single expression or statement.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Also note that @[compile()] does not preprocess the program.
*! To preprocess the program you can use @[compile_string()] or
*! call the preprocessor manually by calling @[cpp()].
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[compile_string()], @[compile_file()], @[cpp()], @[master()]
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_compile(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
aa68b1 | 2001-03-19 | Fredrik Hübinette (Hubbe) | | struct program *p=0;
|
ac8715 | 2000-09-25 | Fredrik Hübinette (Hubbe) | | struct object *o;
|
aa68b1 | 2001-03-19 | Fredrik Hübinette (Hubbe) | | struct object *placeholder=0;
|
ac8715 | 2000-09-25 | Fredrik Hübinette (Hubbe) | | int major=-1;
int minor=-1;
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | |
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
ac8715 | 2000-09-25 | Fredrik Hübinette (Hubbe) | | check_all_args("compile",args,
BIT_STRING,
BIT_VOID | BIT_INT | BIT_OBJECT,
BIT_VOID | BIT_INT,
BIT_VOID | BIT_INT,
|
aa68b1 | 2001-03-19 | Fredrik Hübinette (Hubbe) | | BIT_VOID | BIT_INT | BIT_PROGRAM,
BIT_VOID | BIT_INT | BIT_OBJECT,
|
ac8715 | 2000-09-25 | Fredrik Hübinette (Hubbe) | | 0);
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | |
|
18ab18 | 2001-08-15 | Fredrik Hübinette (Hubbe) | | check_c_stack(65536);
|
ac8715 | 2000-09-25 | Fredrik Hübinette (Hubbe) | | o=0;
|
aa68b1 | 2001-03-19 | Fredrik Hübinette (Hubbe) | | switch(args)
{
case 3:
SIMPLE_BAD_ARG_ERROR("compile", 4, "int");
default:
|
f54c78 | 2004-12-22 | Henrik Grubbström (Grubba) | | if(Pike_sp[5-args].type == T_OBJECT) {
if (Pike_sp[5-args].subtype) {
Pike_error("compile: "
"Subtyped placeholder objects are not supported yet.\n");
}
|
aa68b1 | 2001-03-19 | Fredrik Hübinette (Hubbe) | | placeholder=Pike_sp[5-args].u.object;
|
f54c78 | 2004-12-22 | Henrik Grubbström (Grubba) | | }
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | |
|
aa68b1 | 2001-03-19 | Fredrik Hübinette (Hubbe) | | case 5:
if(Pike_sp[4-args].type == T_PROGRAM)
p=Pike_sp[4-args].u.program;
|
ac8715 | 2000-09-25 | Fredrik Hübinette (Hubbe) | |
|
aa68b1 | 2001-03-19 | Fredrik Hübinette (Hubbe) | | case 4:
|
9b150a | 2002-05-11 | Martin Nilsson | | major=Pike_sp[2-args].u.integer;
minor=Pike_sp[3-args].u.integer;
|
aa68b1 | 2001-03-19 | Fredrik Hübinette (Hubbe) | |
case 2:
|
f54c78 | 2004-12-22 | Henrik Grubbström (Grubba) | | if(Pike_sp[1-args].type == T_OBJECT) {
|
53a09f | 2004-12-23 | Henrik Grubbström (Grubba) | | if (Pike_sp[1-args].subtype) {
|
7f83b5 | 2004-12-23 | Henrik Grubbström (Grubba) | | Pike_error("compile: "
|
f54c78 | 2004-12-22 | Henrik Grubbström (Grubba) | | "Subtyped handler objects are not supported yet.\n");
}
|
aa68b1 | 2001-03-19 | Fredrik Hübinette (Hubbe) | | o=Pike_sp[1-args].u.object;
|
f54c78 | 2004-12-22 | Henrik Grubbström (Grubba) | | }
|
aa68b1 | 2001-03-19 | Fredrik Hübinette (Hubbe) | |
case 0: case 1: break;
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | | }
|
ac8715 | 2000-09-25 | Fredrik Hübinette (Hubbe) | |
|
aa68b1 | 2001-03-19 | Fredrik Hübinette (Hubbe) | | p = compile(Pike_sp[-args].u.string, o, major, minor, p, placeholder);
|
ac8715 | 2000-09-25 | Fredrik Hübinette (Hubbe) | |
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
push_program(p);
}
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | |
|
937c46 | 2001-02-06 | Henrik Grubbström (Grubba) | | |
84bf7e | 2001-06-05 | Martin Stjernholm | | *! int state)
*!
*! Set the value @[m] to use weak or normal references in its
*! indices and/or values (whatever is applicable). @[state] is a
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! bitfield built by using @expr{|@} between the following flags:
|
84bf7e | 2001-06-05 | Martin Stjernholm | | *!
|
b00d6d | 2001-07-27 | Martin Nilsson | | *! @int
*! @value Pike.WEAK_INDICES
|
84bf7e | 2001-06-05 | Martin Stjernholm | | *! Use weak references for indices. Only applicable for
*! multisets and mappings.
|
b00d6d | 2001-07-27 | Martin Nilsson | | *! @value Pike.WEAK_VALUES
|
84bf7e | 2001-06-05 | Martin Stjernholm | | *! Use weak references for values. Only applicable for arrays
*! and mappings.
|
b00d6d | 2001-07-27 | Martin Nilsson | | *! @value Pike.WEAK
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Shorthand for @expr{Pike.WEAK_INDICES|Pike.WEAK_VALUES@}.
|
b00d6d | 2001-07-27 | Martin Nilsson | | *! @endint
|
84bf7e | 2001-06-05 | Martin Stjernholm | | *!
*! If a flag is absent, the corresponding field will use normal
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! references. @[state] can also be @expr{1@} as a compatibility
|
84bf7e | 2001-06-05 | Martin Stjernholm | | *! measure; it's treated like @[Pike.WEAK].
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @returns
|
937c46 | 2001-02-06 | Henrik Grubbström (Grubba) | | *! @[m] will be returned.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
5f0624 | 1999-04-11 | Fredrik Hübinette (Hubbe) | | #define SETFLAG(FLAGS,FLAG,ONOFF) \
FLAGS = (FLAGS & ~FLAG) | ( ONOFF ? FLAG : 0 )
|
3b589f | 1999-02-04 | Fredrik Hübinette (Hubbe) | | void f_set_weak_flag(INT32 args)
{
|
5f0624 | 1999-04-11 | Fredrik Hübinette (Hubbe) | | struct svalue *s;
|
5665ab | 1999-07-28 | Henrik Grubbström (Grubba) | | INT_TYPE ret;
|
be08a8 | 2001-06-06 | Martin Stjernholm | | int flags;
|
5665ab | 1999-07-28 | Henrik Grubbström (Grubba) | |
|
5f0624 | 1999-04-11 | Fredrik Hübinette (Hubbe) | | get_all_args("set_weak_flag",args,"%*%i",&s,&ret);
|
84bf7e | 2001-06-05 | Martin Stjernholm | | if (ret == 1) ret = PIKE_WEAK_BOTH;
|
5f0624 | 1999-04-11 | Fredrik Hübinette (Hubbe) | | switch(s->type)
|
3b589f | 1999-02-04 | Fredrik Hübinette (Hubbe) | | {
|
5f0624 | 1999-04-11 | Fredrik Hübinette (Hubbe) | | case T_ARRAY:
|
be08a8 | 2001-06-06 | Martin Stjernholm | | flags = array_get_flags(s->u.array);
SETFLAG(flags,ARRAY_WEAK_FLAG,ret & PIKE_WEAK_VALUES);
s->u.array = array_set_flags(s->u.array, flags);
|
5f0624 | 1999-04-11 | Fredrik Hübinette (Hubbe) | | break;
|
be08a8 | 2001-06-06 | Martin Stjernholm | | case T_MAPPING:
flags = mapping_get_flags(s->u.mapping);
|
84bf7e | 2001-06-05 | Martin Stjernholm | | flags = (flags & ~PIKE_WEAK_BOTH) | (ret & PIKE_WEAK_BOTH);
|
880be6 | 2000-09-04 | Martin Stjernholm | | mapping_set_flags(s->u.mapping, flags);
|
5f0624 | 1999-04-11 | Fredrik Hübinette (Hubbe) | | break;
|
e99c7a | 1999-10-29 | Martin Stjernholm | | case T_MULTISET:
|
5b15bb | 2001-12-10 | Martin Stjernholm | | flags = multiset_get_flags (s->u.multiset);
flags = (flags & ~PIKE_WEAK_BOTH) | (ret & PIKE_WEAK_BOTH);
multiset_set_flags (s->u.multiset, flags);
|
e99c7a | 1999-10-29 | Martin Stjernholm | | break;
|
5f0624 | 1999-04-11 | Fredrik Hübinette (Hubbe) | | default:
|
e99c7a | 1999-10-29 | Martin Stjernholm | | SIMPLE_BAD_ARG_ERROR("set_weak_flag",1,"array|mapping|multiset");
|
3b589f | 1999-02-04 | Fredrik Hübinette (Hubbe) | | }
|
5f0624 | 1999-04-11 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args-1);
|
3b589f | 1999-02-04 | Fredrik Hübinette (Hubbe) | | }
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | |
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Returns @expr{1@} if @[arg] is an object, @expr{0@} (zero) otherwise.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[mappingp()], @[programp()], @[arrayp()], @[stringp()], @[functionp()],
*! @[multisetp()], @[floatp()], @[intp()]
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_objectp(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | if(args<1)
SIMPLE_TOO_FEW_ARGS_ERROR("objectp", 1);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[-args].type != T_OBJECT || !Pike_sp[-args].u.object->prog
|
3905cf | 1999-11-11 | Fredrik Hübinette (Hubbe) | | #ifdef AUTO_BIGNUM
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | || is_bignum_object(Pike_sp[-args].u.object)
|
3905cf | 1999-11-11 | Fredrik Hübinette (Hubbe) | | #endif
)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
pop_n_elems(args);
push_int(0);
}else{
pop_n_elems(args);
push_int(1);
}
}
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Returns @expr{1@} if @[arg] is a function, @expr{0@} (zero) otherwise.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[mappingp()], @[programp()], @[arrayp()], @[stringp()], @[objectp()],
*! @[multisetp()], @[floatp()], @[intp()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_functionp(INT32 args)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
2e0443 | 2001-04-09 | Per Hedbor | | int res = 0;
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | if(args<1)
SIMPLE_TOO_FEW_ARGS_ERROR("functionp", 1);
|
2e0443 | 2001-04-09 | Per Hedbor | | if( Pike_sp[-args].type == T_FUNCTION &&
|
afbf0a | 2001-04-09 | Fredrik Hübinette (Hubbe) | | (Pike_sp[-args].subtype == FUNCTION_BUILTIN || Pike_sp[-args].u.object->prog))
|
2e0443 | 2001-04-09 | Per Hedbor | | res=1;
pop_n_elems(args);
push_int(res);
}
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Returns @expr{1@} if @[arg] is a callable, @expr{0@} (zero) otherwise.
|
2e0443 | 2001-04-09 | Per Hedbor | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[mappingp()], @[programp()], @[arrayp()], @[stringp()], @[objectp()],
*! @[multisetp()], @[floatp()], @[intp()]
|
2e0443 | 2001-04-09 | Per Hedbor | | */
PMOD_EXPORT void f_callablep(INT32 args)
{
int res = 0;
if(args<1)
SIMPLE_TOO_FEW_ARGS_ERROR("callablep", 1);
switch( Pike_sp[-args].type )
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
2e0443 | 2001-04-09 | Per Hedbor | | case T_FUNCTION:
if( Pike_sp[-args].subtype != FUNCTION_BUILTIN
&& !Pike_sp[-args].u.object->prog)
break;
res = 1;
break;
case T_PROGRAM:
res = 1;
break;
case T_OBJECT:
|
f54c78 | 2004-12-22 | Henrik Grubbström (Grubba) | | {
struct program *p;
if((p = Pike_sp[-args].u.object->prog) &&
FIND_LFUN(p->inherits[Pike_sp[-args].subtype].prog,
LFUN_CALL ) != -1)
res = 1;
}
|
e8a76d | 2003-10-30 | Martin Nilsson | | break;
case T_ARRAY:
|
f54c78 | 2004-12-22 | Henrik Grubbström (Grubba) | |
|
a8cdf9 | 2004-04-29 | Martin Nilsson | | array_fix_type_field(Pike_sp[-args].u.array);
if( (Pike_sp[-args].u.array->type_field==BIT_CALLABLE) ||
!Pike_sp[-args].u.array->type_field) {
|
e8a76d | 2003-10-30 | Martin Nilsson | | res = 1;
|
a8cdf9 | 2004-04-29 | Martin Nilsson | | }
else if( !(Pike_sp[-args].u.array->type_field &
~(BIT_CALLABLE|BIT_INT)) ) {
struct array *a = Pike_sp[-args].u.array;
int i;
res = 1;
for(i=0; i<a->size; i++)
if( ITEM(a)[i].type == T_INT && ITEM(a)[i].u.integer ) {
res = 0;
break;
}
}
|
e8a76d | 2003-10-30 | Martin Nilsson | | break;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
2e0443 | 2001-04-09 | Per Hedbor | | pop_n_elems(args);
push_int(res);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
89b072 | 1998-05-05 | Fredrik Hübinette (Hubbe) | | #ifndef HAVE_AND_USE_POLL
#undef HAVE_POLL
#endif
|
768f53 | 2002-11-25 | Martin Nilsson | | |
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function makes the program stop for @[s] seconds.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
768f53 | 2002-11-25 | Martin Nilsson | | *! Only signal handlers can interrupt the sleep, and only when
*! @[abort_on_signal] is set. If more than one thread is running
*! the signal must be sent to the sleeping thread. Other callbacks
*! are not called during sleep.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
93af2d | 2003-10-31 | Martin Stjernholm | | *! If @[s] is zero then this thread will yield to other threads but
*! not sleep otherwise. Note that Pike yields internally at regular
*! intervals so it's normally not necessary to do this.
*!
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *! @seealso
|
768f53 | 2002-11-25 | Martin Nilsson | | *! @[signal()], @[delay()]
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_sleep(INT32 args)
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | {
|
bebcca | 2001-11-08 | Fredrik Hübinette (Hubbe) | | #ifdef HAVE_GETHRTIME
hrtime_t t0,tv;
#else
struct timeval t0,tv;
#endif
double delay=0.0;
int do_abort_on_signal;
#ifdef HAVE_GETHRTIME
t0=tv=gethrtime();
#define GET_TIME_ELAPSED tv=gethrtime()
#define TIME_ELAPSED (tv-t0)*1e-9
#else
GETTIMEOFDAY(&t0);
tv=t0;
#define GET_TIME_ELAPSED GETTIMEOFDAY(&tv)
#define TIME_ELAPSED ((tv.tv_sec-t0.tv_sec) + (tv.tv_usec-t0.tv_usec)*1e-6)
#endif
#define FIX_LEFT() \
GET_TIME_ELAPSED; \
left = delay - TIME_ELAPSED;
switch(Pike_sp[-args].type)
{
case T_INT:
delay=(double)Pike_sp[-args].u.integer;
break;
case T_FLOAT:
delay=(double)Pike_sp[-args].u.float_number;
break;
}
if(delay == 0.0)
{
check_threads_etc();
pop_n_elems(args);
return;
}
|
9f516a | 2001-12-16 | Martin Stjernholm | | if(args > 1 && !UNSAFE_IS_ZERO(Pike_sp + 1-args))
|
bebcca | 2001-11-08 | Fredrik Hübinette (Hubbe) | | {
do_abort_on_signal=1;
}else{
do_abort_on_signal=0;
}
pop_n_elems(args);
while(1)
{
double left;
THREADS_ALLOW();
do {
FIX_LEFT();
if(left<=0.0) break;
#ifdef __NT__
Sleep(DO_NOT_WARN((int)(left*1000)));
#elif defined(HAVE_POLL)
|
782a90 | 2003-09-11 | Henrik Grubbström (Grubba) | | {
struct pollfd sentinel;
poll(&sentinel, 0, (int)(left*1000));
}
|
bebcca | 2001-11-08 | Fredrik Hübinette (Hubbe) | | #else
{
struct timeval t3;
t3.tv_sec=left;
t3.tv_usec=(int)((left - (int)left)*1e6);
select(0,0,0,0,&t3);
}
#endif
} while(0);
THREADS_DISALLOW();
if(do_abort_on_signal) return;
FIX_LEFT();
if(left<=0.0)
{
break;
}else{
|
700dac | 2002-02-05 | Martin Stjernholm | | check_threads_etc();
|
bebcca | 2001-11-08 | Fredrik Hübinette (Hubbe) | | }
}
}
#undef FIX_LEFT
#undef GET_TIME_ELAPSED
#undef TIME_ELAPSED
|
768f53 | 2002-11-25 | Martin Nilsson | | *! not called during delay. Beware that this function uses busy-waiting
|
7a5abc | 2001-11-27 | Martin Stjernholm | | *! to achieve the highest possible accuracy.
|
bebcca | 2001-11-08 | Fredrik Hübinette (Hubbe) | | *!
*! @seealso
*! @[signal()], @[sleep()]
*/
PMOD_EXPORT void f_delay(INT32 args)
{
|
838017 | 1999-12-06 | Mirar (Pontus Hagland) | | #define POLL_SLEEP_LIMIT 0.02
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | |
|
838017 | 1999-12-06 | Mirar (Pontus Hagland) | | #ifdef HAVE_GETHRTIME
hrtime_t t0,tv;
#else
struct timeval t0,tv;
#endif
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | |
|
838017 | 1999-12-06 | Mirar (Pontus Hagland) | | double delay=0.0;
int do_microsleep;
|
f81337 | 2001-07-23 | Fredrik Hübinette (Hubbe) | | int do_abort_on_signal;
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | |
|
838017 | 1999-12-06 | Mirar (Pontus Hagland) | | #ifdef HAVE_GETHRTIME
t0=tv=gethrtime();
#define GET_TIME_ELAPSED tv=gethrtime()
#define TIME_ELAPSED (tv-t0)*1e-9
#else
GETTIMEOFDAY(&t0);
tv=t0;
#define GET_TIME_ELAPSED GETTIMEOFDAY(&tv)
#define TIME_ELAPSED ((tv.tv_sec-t0.tv_sec) + (tv.tv_usec-t0.tv_usec)*1e-6)
|
dac637 | 1999-10-17 | Mirar (Pontus Hagland) | | #endif
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | |
|
0dbb5c | 2000-02-22 | Fredrik Hübinette (Hubbe) | | #define FIX_LEFT() \
GET_TIME_ELAPSED; \
left = delay - TIME_ELAPSED; \
if (do_microsleep) left-=POLL_SLEEP_LIMIT;
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | switch(Pike_sp[-args].type)
|
838017 | 1999-12-06 | Mirar (Pontus Hagland) | | {
case T_INT:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | delay=(double)Pike_sp[-args].u.integer;
|
838017 | 1999-12-06 | Mirar (Pontus Hagland) | | break;
|
b48f28 | 1998-03-26 | Henrik Grubbström (Grubba) | |
|
838017 | 1999-12-06 | Mirar (Pontus Hagland) | | case T_FLOAT:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | delay=(double)Pike_sp[-args].u.float_number;
|
838017 | 1999-12-06 | Mirar (Pontus Hagland) | | break;
}
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | |
|
0dbb5c | 2000-02-22 | Fredrik Hübinette (Hubbe) | |
if(delay == 0.0)
{
check_threads_etc();
pop_n_elems(args);
return;
}
|
9f516a | 2001-12-16 | Martin Stjernholm | | if(args > 1 && !UNSAFE_IS_ZERO(Pike_sp + 1-args))
|
f81337 | 2001-07-23 | Fredrik Hübinette (Hubbe) | | {
do_microsleep=0;
do_abort_on_signal=1;
}else{
do_microsleep=delay<10;
do_abort_on_signal=0;
}
|
838017 | 1999-12-06 | Mirar (Pontus Hagland) | |
pop_n_elems(args);
|
f81337 | 2001-07-23 | Fredrik Hübinette (Hubbe) | | if (delay>POLL_SLEEP_LIMIT || !do_microsleep)
|
2ad6b7 | 2000-01-29 | Mirar (Pontus Hagland) | | {
|
0dbb5c | 2000-02-22 | Fredrik Hübinette (Hubbe) | | while(1)
{
double left;
THREADS_ALLOW();
|
865dc2 | 2000-04-13 | Henrik Grubbström (Grubba) | | do {
FIX_LEFT();
if(left<=0.0) break;
|
0dbb5c | 2000-02-22 | Fredrik Hübinette (Hubbe) | |
|
89b072 | 1998-05-05 | Fredrik Hübinette (Hubbe) | | #ifdef __NT__
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | Sleep(DO_NOT_WARN((int)(left*1000)));
|
89b072 | 1998-05-05 | Fredrik Hübinette (Hubbe) | | #elif defined(HAVE_POLL)
|
782a90 | 2003-09-11 | Henrik Grubbström (Grubba) | | {
struct pollfd sentinel;
poll(&sentinel, 0, (int)(left*1000));
}
|
89b072 | 1998-05-05 | Fredrik Hübinette (Hubbe) | | #else
|
865dc2 | 2000-04-13 | Henrik Grubbström (Grubba) | | {
struct timeval t3;
t3.tv_sec=left;
t3.tv_usec=(int)((left - (int)left)*1e6);
select(0,0,0,0,&t3);
}
|
89b072 | 1998-05-05 | Fredrik Hübinette (Hubbe) | | #endif
|
865dc2 | 2000-04-13 | Henrik Grubbström (Grubba) | | } while(0);
|
0dbb5c | 2000-02-22 | Fredrik Hübinette (Hubbe) | | THREADS_DISALLOW();
|
f81337 | 2001-07-23 | Fredrik Hübinette (Hubbe) | |
if(do_abort_on_signal) return;
|
0dbb5c | 2000-02-22 | Fredrik Hübinette (Hubbe) | |
FIX_LEFT();
if(left<=0.0)
{
break;
}else{
|
700dac | 2002-02-05 | Martin Stjernholm | | check_threads_etc();
|
0dbb5c | 2000-02-22 | Fredrik Hübinette (Hubbe) | | }
}
|
2ad6b7 | 2000-01-29 | Mirar (Pontus Hagland) | | }
|
838017 | 1999-12-06 | Mirar (Pontus Hagland) | |
if (do_microsleep)
while (delay>TIME_ELAPSED)
GET_TIME_ELAPSED;
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | }
|
937c46 | 2001-02-06 | Henrik Grubbström (Grubba) | | |
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Force garbage collection.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function checks all the memory for cyclic structures such
*! as arrays containing themselves and frees them if appropriate.
|
7a5abc | 2001-11-27 | Martin Stjernholm | | *! It also frees up destructed objects and things with only weak
|
5a0d5b | 2003-01-11 | Martin Stjernholm | | *! references.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Normally there is no need to call this function since Pike will
*! call it by itself every now and then. (Pike will try to predict
*! when 20% of all arrays/object/programs in memory is 'garbage'
*! and call this routine then.)
|
5a0d5b | 2003-01-11 | Martin Stjernholm | | *!
*! @returns
*! The amount of garbage is returned. This is the number of arrays,
*! mappings, multisets, objects and programs that had no nonweak
*! external references during the garbage collection. It's normally
*! the same as the number of freed things, but there might be some
*! difference since destroy() functions are called during freeing,
*! which can cause more things to be freed or allocated.
|
51adb8 | 2003-01-12 | Martin Stjernholm | | *!
*! @seealso
*! @[Pike.gc_parameters], @[Debug.gc_status]
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
624d09 | 1996-02-24 | Fredrik Hübinette (Hubbe) | | void f_gc(INT32 args)
{
pop_n_elems(args);
|
51adb8 | 2003-01-12 | Martin Stjernholm | | push_int(do_gc(NULL, 1));
|
624d09 | 1996-02-24 | Fredrik Hübinette (Hubbe) | | }
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | #ifdef TYPEP
#undef TYPEP
#endif
|
aa73fc | 1999-10-21 | Fredrik Hübinette (Hubbe) | |
|
f54c78 | 2004-12-22 | Henrik Grubbström (Grubba) | | #define TYPEP(ID,NAME,TYPE,TYPE_NAME) \
PMOD_EXPORT void ID(INT32 args) \
{ \
int t; \
struct program *p; \
if (args<1) \
SIMPLE_TOO_FEW_ARGS_ERROR(NAME, 1); \
if (Pike_sp[-args].type == T_OBJECT && \
(p = Pike_sp[-args].u.object->prog)) \
{ \
int fun = FIND_LFUN(p->inherits[Pike_sp[-args].subtype].prog, \
LFUN__IS_TYPE); \
if (fun != -1) \
{ \
int id_level = \
p->inherits[Pike_sp[-args].subtype].identifier_level; \
push_constant_text(TYPE_NAME); \
apply_low(Pike_sp[-args-1].u.object, fun + id_level, 1); \
stack_unlink(args); \
return; \
} \
} \
t = Pike_sp[-args].type == TYPE; \
pop_n_elems(args); \
push_int(t); \
}
|
b1f4eb | 1998-01-13 | Fredrik Hübinette (Hubbe) | |
|
3b0f9f | 1999-10-22 | Henrik Grubbström (Grubba) | |
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Returns @expr{1@} if @[arg] is a program, @expr{0@} (zero) otherwise.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[mappingp()], @[intp()], @[arrayp()], @[stringp()], @[objectp()],
*! @[multisetp()], @[floatp()], @[functionp()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_programp(INT32 args)
|
b1f4eb | 1998-01-13 | Fredrik Hübinette (Hubbe) | | {
if(args<1)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_TOO_FEW_ARGS_ERROR("programp", 1);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | switch(Pike_sp[-args].type)
|
b1f4eb | 1998-01-13 | Fredrik Hübinette (Hubbe) | | {
case T_PROGRAM:
pop_n_elems(args);
push_int(1);
return;
case T_FUNCTION:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(program_from_function(Pike_sp-args))
|
b1f4eb | 1998-01-13 | Fredrik Hübinette (Hubbe) | | {
pop_n_elems(args);
push_int(1);
return;
}
default:
pop_n_elems(args);
push_int(0);
}
}
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | |
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Returns @expr{1@} if @[arg] is an int, @expr{0@} (zero) otherwise.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[mappingp()], @[programp()], @[arrayp()], @[stringp()], @[objectp()],
*! @[multisetp()], @[floatp()], @[functionp()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Returns @expr{1@} if @[arg] is a mapping, @expr{0@} (zero) otherwise.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[intp()], @[programp()], @[arrayp()], @[stringp()], @[objectp()],
*! @[multisetp()], @[floatp()], @[functionp()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Returns @expr{1@} if @[arg] is an array, @expr{0@} (zero) otherwise.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[intp()], @[programp()], @[mappingp()], @[stringp()], @[objectp()],
*! @[multisetp()], @[floatp()], @[functionp()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Returns @expr{1@} if @[arg] is a multiset, @expr{0@} (zero) otherwise.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[intp()], @[programp()], @[arrayp()], @[stringp()], @[objectp()],
*! @[mappingp()], @[floatp()], @[functionp()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Returns @expr{1@} if @[arg] is a string, @expr{0@} (zero) otherwise.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[intp()], @[programp()], @[arrayp()], @[multisetp()], @[objectp()],
*! @[mappingp()], @[floatp()], @[functionp()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! Returns @expr{1@} if @[arg] is a float, @expr{0@} (zero) otherwise.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[intp()], @[programp()], @[arrayp()], @[multisetp()], @[objectp()],
*! @[mappingp()], @[stringp()], @[functionp()]
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | */
|
d9a93b | 2001-07-01 | Fredrik Hübinette (Hubbe) | |
|
10f503 | 1999-10-21 | Fredrik Noring | | TYPEP(f_intp, "intp", T_INT, "int")
TYPEP(f_mappingp, "mappingp", T_MAPPING, "mapping")
TYPEP(f_arrayp, "arrayp", T_ARRAY, "array")
TYPEP(f_multisetp, "multisetp", T_MULTISET, "multiset")
TYPEP(f_stringp, "stringp", T_STRING, "string")
TYPEP(f_floatp, "floatp", T_FLOAT, "float")
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | |
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Sort arrays destructively.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function sorts the array @[index] destructively. That means
*! that the array itself is changed and returned, no copy is created.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! If extra arguments are given, they are supposed to be arrays of the
*! same size as @[index]. Each of these arrays will be modified in the
*! same way as @[index]. I.e. if index 3 is moved to position 0 in @[index]
*! index 3 will be moved to position 0 in all the other arrays as well.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
0c4978 | 2003-04-27 | Martin Stjernholm | | *! The sort order is as follows:
*!
*! @ul
*! @item
*! Integers and floats are sorted in ascending order.
*! @item
*! Strings are sorted primarily on the first characters that are
*! different, and secondarily with shorter strings before longer.
*! Different characters are sorted in ascending order on the
*! character value. Thus the sort order is not locale dependent.
*! @item
*! Arrays are sorted recursively on the first element. Empty
*! arrays are sorted before nonempty ones.
*! @item
*! Multisets are sorted recursively on the first index. Empty
*! multisets are sorted before nonempty ones.
*! @item
*! Objects are sorted in ascending order according to @[`<()],
*! @[`>()] and @[`==()].
*! @item
*! Other types aren't reordered.
*! @item
*! Different types are sorted in this order: Arrays, mappings,
*! multisets, objects, functions, programs, strings, types,
*! integers and floats. Note however that objects can control
*! their ordering wrt other types with @[`<], @[`>] and @[`==],
*! so this ordering of types only applies to objects without
*! those functions.
*! @endul
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @returns
|
0c4978 | 2003-04-27 | Martin Stjernholm | | *! The first argument is returned.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @note
|
0c4978 | 2003-04-27 | Martin Stjernholm | | *! The sort is stable, i.e. elements that are compare-wise equal
*! aren't reordered.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
c30609 | 2003-02-16 | Martin Stjernholm | | *! @[Array.sort_array], @[reverse()]
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_sort(INT32 args)
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | {
INT32 e,*order;
|
0c4978 | 2003-04-27 | Martin Stjernholm | | struct array *a;
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | |
|
bee430 | 1997-02-24 | Fredrik Hübinette (Hubbe) | | if(args < 1)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_TOO_FEW_ARGS_ERROR("sort", 1);
|
0c4978 | 2003-04-27 | Martin Stjernholm | | if(Pike_sp[-args].type != T_ARRAY)
SIMPLE_BAD_ARG_ERROR("sort", 1, "array");
a = Pike_sp[-args].u.array;
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | |
|
0c4978 | 2003-04-27 | Martin Stjernholm | | for(e=1;e<args;e++)
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | {
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if(Pike_sp[e-args].type != T_ARRAY)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("sort", e+1, "array");
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | |
|
0c4978 | 2003-04-27 | Martin Stjernholm | | if(Pike_sp[e-args].u.array->size != a->size)
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | bad_arg_error("sort", Pike_sp-args, args, e+1, "array", Pike_sp+e-args,
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | "Argument %d has wrong size.\n", (e+1));
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | }
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | if(args > 1)
{
|
0c4978 | 2003-04-27 | Martin Stjernholm | | order = stable_sort_array_destructively(a);
for(e=1;e<args;e++) order_array(Pike_sp[e-args].u.array,order);
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args-1);
|
0c4978 | 2003-04-27 | Martin Stjernholm | | free((char *)order);
}
else {
|
caa676 | 2003-04-27 | Martin Stjernholm | | array_fix_unfinished_type_field (a);
|
0c4978 | 2003-04-27 | Martin Stjernholm | | if (a->type_field & BIT_COMPLEX)
free (stable_sort_array_destructively (a));
else
sort_array_destructively (a);
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | }
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | }
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Select a set of rows from an array.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function is en optimized equivalent to:
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
f79bd8 | 2003-04-01 | Martin Nilsson | | *! @code
*! map(@[index], lambda(mixed x) { return @[data][x]; })
*! @endcode
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! That is, it indices data on every index in the array index and
*! returns an array with the results.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[column()]
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_rows(INT32 args)
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | {
INT32 e;
struct array *a,*tmp;
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | struct svalue *val;
|
2523ce | 2003-04-28 | Martin Stjernholm | | TYPE_FIELD types;
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | |
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | get_all_args("rows", args, "%*%a", &val, &tmp);
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | |
|
866972 | 1999-08-02 | Fredrik Hübinette (Hubbe) | |
if(tmp->refs == 1)
{
struct svalue sval;
tmp->type_field = BIT_MIXED | BIT_UNFINISHED;
|
2523ce | 2003-04-28 | Martin Stjernholm | | types = 0;
|
866972 | 1999-08-02 | Fredrik Hübinette (Hubbe) | | for(e=0;e<tmp->size;e++)
{
index_no_free(&sval, val, ITEM(tmp)+e);
|
2523ce | 2003-04-28 | Martin Stjernholm | | types |= 1 << sval.type;
|
866972 | 1999-08-02 | Fredrik Hübinette (Hubbe) | | free_svalue(ITEM(tmp)+e);
|
2523ce | 2003-04-28 | Martin Stjernholm | | move_svalue (ITEM(tmp) + e, &sval);
|
866972 | 1999-08-02 | Fredrik Hübinette (Hubbe) | | }
|
2523ce | 2003-04-28 | Martin Stjernholm | | tmp->type_field = types;
|
866972 | 1999-08-02 | Fredrik Hübinette (Hubbe) | | stack_swap();
pop_stack();
return;
}
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | |
|
866972 | 1999-08-02 | Fredrik Hübinette (Hubbe) | | push_array(a=allocate_array(tmp->size));
|
2523ce | 2003-04-28 | Martin Stjernholm | | types = 0;
for(e=0;e<a->size;e++) {
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | index_no_free(ITEM(a)+e, val, ITEM(tmp)+e);
|
2523ce | 2003-04-28 | Martin Stjernholm | | types |= 1 << ITEM(a)[e].type;
}
a->type_field = types;
|
866972 | 1999-08-02 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | Pike_sp--;
dmalloc_touch_svalue(Pike_sp);
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | pop_n_elems(args);
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | push_array(a);
}
|
768f53 | 2002-11-25 | Martin Nilsson | | |
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Perform sanity checks.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function goes through most of the internal Pike structures and
*! generates a fatal error if one of them is found to be out of order.
*! It is only used for debugging.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @note
|
50d97a | 2003-02-01 | Martin Stjernholm | | *! This function does a more thorough check if the Pike runtime has
*! been compiled with RTL debug.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f__verify_internals(INT32 args)
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | {
|
05590d | 1998-04-23 | Fredrik Hübinette (Hubbe) | | INT32 tmp=d_flag;
|
811116 | 2003-09-07 | Martin Nilsson | | ASSERT_SECURITY_ROOT("_verify_internals");
|
20ee33 | 2003-09-08 | Martin Stjernholm | |
d_flag = 49;
|
50d97a | 2003-02-01 | Martin Stjernholm | | #ifdef PIKE_DEBUG
do_debug();
#else
|
7458da | 2003-02-02 | Martin Stjernholm | | do_gc(NULL, 1);
|
50d97a | 2003-02-01 | Martin Stjernholm | | #endif
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | d_flag=tmp;
pop_n_elems(args);
}
|
50d97a | 2003-02-01 | Martin Stjernholm | | #ifdef PIKE_DEBUG
|
768f53 | 2002-11-25 | Martin Nilsson | | |
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Set the run-time debug level.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @returns
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! The old debug level will be returned.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @note
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function is only available if the Pike runtime has been compiled
*! with RTL debug.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f__debug(INT32 args)
|
a03d95 | 1997-10-14 | Fredrik Hübinette (Hubbe) | | {
|
5665ab | 1999-07-28 | Henrik Grubbström (Grubba) | | INT_TYPE d;
|
811116 | 2003-09-07 | Martin Nilsson | | ASSERT_SECURITY_ROOT("_debug");
|
5665ab | 1999-07-28 | Henrik Grubbström (Grubba) | |
get_all_args("_debug", args, "%i", &d);
|
a03d95 | 1997-10-14 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
|
5665ab | 1999-07-28 | Henrik Grubbström (Grubba) | | push_int(d_flag);
d_flag = d;
|
a03d95 | 1997-10-14 | Fredrik Hübinette (Hubbe) | | }
|
768f53 | 2002-11-25 | Martin Nilsson | | |
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Set the optimizer debug level.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @returns
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! The old optimizer debug level will be returned.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @note
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function is only available if the Pike runtime has been compiled
*! with RTL debug.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f__optimizer_debug(INT32 args)
|
bcc918 | 1999-11-14 | Henrik Grubbström (Grubba) | | {
INT_TYPE l;
|
811116 | 2003-09-07 | Martin Nilsson | | ASSERT_SECURITY_ROOT("_optimizer_debug");
|
bcc918 | 1999-11-14 | Henrik Grubbström (Grubba) | |
get_all_args("_optimizer_debug", args, "%i", &l);
pop_n_elems(args);
push_int(l_flag);
l_flag = l;
}
|
3dba60 | 2001-01-11 | Henrik Grubbström (Grubba) | |
|
768f53 | 2002-11-25 | Martin Nilsson | | |
3dba60 | 2001-01-11 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Set the assembler debug level.
|
3dba60 | 2001-01-11 | Henrik Grubbström (Grubba) | | *!
*! @returns
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! The old assembler debug level will be returned.
|
3dba60 | 2001-01-11 | Henrik Grubbström (Grubba) | | *!
*! @note
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function is only available if the Pike runtime has been compiled
*! with RTL debug.
|
3dba60 | 2001-01-11 | Henrik Grubbström (Grubba) | | */
PMOD_EXPORT void f__assembler_debug(INT32 args)
{
INT_TYPE l;
|
811116 | 2003-09-07 | Martin Nilsson | | ASSERT_SECURITY_ROOT("_assembler_debug");
|
3dba60 | 2001-01-11 | Henrik Grubbström (Grubba) | |
|
693344 | 2002-05-14 | Henrik Grubbström (Grubba) | | get_all_args("_assembler_debug", args, "%i", &l);
|
3dba60 | 2001-01-11 | Henrik Grubbström (Grubba) | | pop_n_elems(args);
push_int(a_flag);
a_flag = l;
}
|
2f54f7 | 1998-04-13 | Henrik Grubbström (Grubba) | | #ifdef YYDEBUG
|
768f53 | 2002-11-25 | Martin Nilsson | | |
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Set the compiler trace level.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @returns
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! The old compiler trace level will be returned.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @note
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function is only available if the Pike runtime has been compiled
*! with RTL debug.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f__compiler_trace(INT32 args)
|
2f54f7 | 1998-04-13 | Henrik Grubbström (Grubba) | | {
extern int yydebug;
|
5665ab | 1999-07-28 | Henrik Grubbström (Grubba) | | INT_TYPE yyd;
|
811116 | 2003-09-07 | Martin Nilsson | | ASSERT_SECURITY_ROOT("_compiler_trace");
|
5665ab | 1999-07-28 | Henrik Grubbström (Grubba) | | get_all_args("_compiler_trace", args, "%i", &yyd);
|
2f54f7 | 1998-04-13 | Henrik Grubbström (Grubba) | | pop_n_elems(args);
|
5665ab | 1999-07-28 | Henrik Grubbström (Grubba) | | push_int(yydebug);
yydebug = yyd;
|
2f54f7 | 1998-04-13 | Henrik Grubbström (Grubba) | | }
#endif /* YYDEBUG */
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | #endif
|
fe9150 | 1998-07-26 | Peter J. Holzer | | #if defined(HAVE_LOCALTIME) || defined(HAVE_GMTIME)
static void encode_struct_tm(struct tm *tm)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
f0e6f1 | 2003-12-06 | Martin Nilsson | | push_text("sec");
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | push_int(tm->tm_sec);
|
f0e6f1 | 2003-12-06 | Martin Nilsson | | push_text("min");
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | push_int(tm->tm_min);
|
f0e6f1 | 2003-12-06 | Martin Nilsson | | push_text("hour");
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | push_int(tm->tm_hour);
|
7bd0ea | 1996-02-19 | Fredrik Hübinette (Hubbe) | |
|
f0e6f1 | 2003-12-06 | Martin Nilsson | | push_text("mday");
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | push_int(tm->tm_mday);
|
f0e6f1 | 2003-12-06 | Martin Nilsson | | push_text("mon");
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | push_int(tm->tm_mon);
|
f0e6f1 | 2003-12-06 | Martin Nilsson | | push_text("year");
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | push_int(tm->tm_year);
|
f0e6f1 | 2003-12-06 | Martin Nilsson | | push_text("wday");
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | push_int(tm->tm_wday);
|
f0e6f1 | 2003-12-06 | Martin Nilsson | | push_text("yday");
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | push_int(tm->tm_yday);
|
f0e6f1 | 2003-12-06 | Martin Nilsson | | push_text("isdst");
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | push_int(tm->tm_isdst);
|
fe9150 | 1998-07-26 | Peter J. Holzer | | }
#endif
#ifdef HAVE_GMTIME
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | |
df0f87 | 2003-04-14 | Martin Stjernholm | | *! Convert seconds since 00:00:00 UTC, Jan 1, 1970 into components.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function works like @[localtime()] but the result is
*! not adjusted for the local time zone.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[localtime()], @[time()], @[ctime()], @[mktime()]
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_gmtime(INT32 args)
|
fe9150 | 1998-07-26 | Peter J. Holzer | | {
struct tm *tm;
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | INT_TYPE tt;
|
fe9150 | 1998-07-26 | Peter J. Holzer | | time_t t;
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | get_all_args("gmtime", args, "%i", &tt);
t = tt;
tm = gmtime(&t);
|
f917a3 | 2002-10-03 | Martin Stjernholm | | if (!tm) Pike_error ("gmtime() on this system cannot handle "
"the timestamp %ld.\n", (long) t);
|
fe9150 | 1998-07-26 | Peter J. Holzer | | pop_n_elems(args);
encode_struct_tm(tm);
|
f0e6f1 | 2003-12-06 | Martin Nilsson | | push_text("timezone");
|
fe9150 | 1998-07-26 | Peter J. Holzer | | push_int(0);
f_aggregate_mapping(20);
}
#endif
#ifdef HAVE_LOCALTIME
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | |
df0f87 | 2003-04-14 | Martin Stjernholm | | *! Convert seconds since 00:00:00 UTC, 1 Jan 1970 into components.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @returns
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function returns a mapping with the following components:
*! @mapping
*! @member int(0..60) "sec"
*! Seconds over the minute.
*! @member int(0..59) "min"
*! Minutes over the hour.
*! @member int(0..23) "hour"
*! Hour of the day.
*! @member int(1..31) "mday"
*! Day of the month.
*! @member int(0..11) "mon"
*! Month of the year.
*! @member int(0..) "year"
*! Year since 1900.
*! @member int(0..6) "wday"
*! Day of week (0 = Sunday).
*! @member int(0..365) "yday"
*! Day of the year.
*! @member int(0..1) "isdst"
*! Is daylight savings time.
*! @member int "timezone"
|
69a342 | 2004-04-01 | Henrik Grubbström (Grubba) | | *! Offset from UTC, including daylight savings time adjustment.
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @endmapping
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
f917a3 | 2002-10-03 | Martin Stjernholm | | *! An error is thrown if the localtime(2) call failed on the system.
|
b5b1b2 | 2002-10-03 | Martin Stjernholm | | *! It's platform dependent what time ranges that function can handle,
*! e.g. Windows doesn't handle a negative @[timestamp].
*!
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *! @note
|
69a342 | 2004-04-01 | Henrik Grubbström (Grubba) | | *! Prior to Pike 7.5 the field @expr{"timezone"@} was sometimes not
*! present, and was sometimes not adjusted for daylight savings time.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[Calendar], @[gmtime()], @[time()], @[ctime()], @[mktime()]
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_localtime(INT32 args)
|
fe9150 | 1998-07-26 | Peter J. Holzer | | {
struct tm *tm;
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | INT_TYPE tt;
|
fe9150 | 1998-07-26 | Peter J. Holzer | | time_t t;
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | get_all_args("localtime", args, "%i", &tt);
t = tt;
tm = localtime(&t);
|
f917a3 | 2002-10-03 | Martin Stjernholm | | if (!tm) Pike_error ("localtime() on this system cannot handle "
"the timestamp %ld.\n", (long) t);
|
fe9150 | 1998-07-26 | Peter J. Holzer | | pop_n_elems(args);
encode_struct_tm(tm);
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | |
|
f0e6f1 | 2003-12-06 | Martin Nilsson | | push_text("timezone");
|
69a342 | 2004-04-01 | Henrik Grubbström (Grubba) | | #ifdef STRUCT_TM_HAS_GMTOFF
|
47ba81 | 2002-03-21 | Henrik Grubbström (Grubba) | | push_int(-tm->tm_gmtoff);
|
69a342 | 2004-04-01 | Henrik Grubbström (Grubba) | | #elif defined(STRUCT_TM_HAS___TM_GMTOFF)
|
47ba81 | 2002-03-21 | Henrik Grubbström (Grubba) | | push_int(-tm->__tm_gmtoff);
|
69a342 | 2004-04-01 | Henrik Grubbström (Grubba) | | #elif defined(HAVE_EXTERNAL_TIMEZONE)
push_int(timezone - 3600*tm->tm_isdst);
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | #else
|
69a342 | 2004-04-01 | Henrik Grubbström (Grubba) | |
push_int(-3600*tm->tm_isdst);
|
47ba81 | 2002-03-21 | Henrik Grubbström (Grubba) | | #endif
|
69a342 | 2004-04-01 | Henrik Grubbström (Grubba) | | f_aggregate_mapping(20);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | #endif
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
86d9aa | 2004-12-13 | Martin Stjernholm | | #if defined (HAVE_GMTIME) || defined (HAVE_LOCALTIME)
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | |
static time_t my_tm_diff(const struct tm *t1, const struct tm *t2)
{
|
aac1c4 | 2004-12-22 | Henrik Grubbström (Grubba) | | time_t base;
if (!t2) return -1;
base = (t1->tm_year - t2->tm_year) * 32140800;
|
86d9aa | 2004-12-13 | Martin Stjernholm | |
if ((t1->tm_year > t2->tm_year) && (base < 0))
|
897b81 | 2004-12-14 | Martin Stjernholm | | return MAX_TIME_T;
|
86d9aa | 2004-12-13 | Martin Stjernholm | | if ((t1->tm_year < t2->tm_year) && (base > 0))
|
897b81 | 2004-12-14 | Martin Stjernholm | | return MIN_TIME_T;
|
86d9aa | 2004-12-13 | Martin Stjernholm | |
base +=
|
9cc3d6 | 2004-02-03 | Henrik Grubbström (Grubba) | | (t1->tm_mon - t2->tm_mon) * 2678400 +
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | (t1->tm_mday - t2->tm_mday) * 86400 +
(t1->tm_hour - t2->tm_hour) * 3600 +
(t1->tm_min - t2->tm_min) * 60 +
(t1->tm_sec - t2->tm_sec);
|
86d9aa | 2004-12-13 | Martin Stjernholm | |
|
0083c1 | 2004-02-02 | Henrik Grubbström (Grubba) | | return base;
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | }
|
86d9aa | 2004-12-13 | Martin Stjernholm | | typedef struct tm *time_fn (const time_t *);
|
c3df66 | 2004-12-14 | Martin Stjernholm | | |
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | */
|
86d9aa | 2004-12-13 | Martin Stjernholm | | static int my_time_inverse (struct tm *target_tm, time_t *result, time_fn timefn)
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | {
time_t current_ts = 0;
|
86d9aa | 2004-12-13 | Martin Stjernholm | | time_t diff_ts, old_diff_ts = 0;
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | struct tm *current_tm;
|
86d9aa | 2004-12-13 | Martin Stjernholm | | int loop_cnt, tried_dst_displacement = 0;
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | |
|
86d9aa | 2004-12-13 | Martin Stjernholm | | for (loop_cnt = 0; loop_cnt < 20; loop_cnt++, old_diff_ts = diff_ts) {
diff_ts = my_tm_diff(target_tm, current_tm = timefn(¤t_ts));
#ifdef DEBUG_MY_TIME_INVERSE
fprintf (stderr, "curr: y %d m %d d %d h %d m %d isdst %d\n",
current_tm->tm_year, current_tm->tm_mon, current_tm->tm_mday,
current_tm->tm_hour, current_tm->tm_min, current_tm->tm_isdst);
|
897b81 | 2004-12-14 | Martin Stjernholm | | fprintf (stderr, "diff: %ld\n", (long) diff_ts);
|
86d9aa | 2004-12-13 | Martin Stjernholm | | #endif
|
aac1c4 | 2004-12-22 | Henrik Grubbström (Grubba) | | if (!current_tm) {
#ifdef DEBUG_MY_TIME_INVERSE
fprintf (stderr, "outside range for timefn().\n");
#endif
return 0;
}
|
86d9aa | 2004-12-13 | Martin Stjernholm | | if (!diff_ts) {
if (target_tm->tm_isdst >= 0 &&
target_tm->tm_isdst != current_tm->tm_isdst &&
!tried_dst_displacement) {
if (target_tm->tm_isdst)
current_ts -= 24 * 3600;
else
current_ts += 24 * 3600;
tried_dst_displacement = 1;
#ifdef DEBUG_MY_TIME_INVERSE
fprintf (stderr, "dst displacement\n");
#endif
continue;
}
break;
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | }
|
86d9aa | 2004-12-13 | Martin Stjernholm | |
if (diff_ts == -old_diff_ts) {
if (diff_ts > -24 * 3600 && diff_ts < 24 * 3600) {
if (target_tm->tm_isdst >= 0) {
if (target_tm->tm_isdst != current_tm->tm_isdst)
current_ts += diff_ts;
#ifdef DEBUG_MY_TIME_INVERSE
fprintf (stderr, "spring dst gap\n");
#endif
break;
}
}
if (diff_ts > 0)
current_ts += diff_ts;
#ifdef DEBUG_MY_TIME_INVERSE
fprintf (stderr, "end of month gap\n");
#endif
break;
}
|
897b81 | 2004-12-14 | Martin Stjernholm | | if (INT_TYPE_ADD_OVERFLOW (current_ts, diff_ts)) {
if (diff_ts > 0 && current_ts < MAX_TIME_T)
current_ts = MAX_TIME_T;
else if (diff_ts < 0 && current_ts > MIN_TIME_T)
current_ts = MIN_TIME_T;
else {
#ifdef DEBUG_MY_TIME_INVERSE
fprintf (stderr, "outside time_t range\n");
#endif
return 0;
}
}
else
current_ts += diff_ts;
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | }
|
86d9aa | 2004-12-13 | Martin Stjernholm | |
#ifdef DEBUG_MY_TIME_INVERSE
fprintf (stderr, "res: y %d m %d d %d h %d m %d isdst %d\n",
current_tm->tm_year, current_tm->tm_mon, current_tm->tm_mday,
current_tm->tm_hour, current_tm->tm_min, current_tm->tm_isdst);
#endif
*result = current_ts;
return 1;
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | }
|
86d9aa | 2004-12-13 | Martin Stjernholm | | #endif /* HAVE_GMTIME || HAVE_LOCALTIME */
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | |
|
86d9aa | 2004-12-13 | Martin Stjernholm | | #if defined (HAVE_MKTIME) || defined (HAVE_LOCALTIME)
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | |
3254e1 | 2001-02-06 | Henrik Grubbström (Grubba) | | *! @decl int mktime(int sec, int min, int hour, int mday, int mon, int year, @
|
f3f0e8 | 2003-04-27 | Henrik Grubbström (Grubba) | | *! int|void isdst, int|void tz)
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function converts information about date and time into an integer
|
df0f87 | 2003-04-14 | Martin Stjernholm | | *! which contains the number of seconds since 00:00:00 UTC, Jan 1, 1970.
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *!
*! You can either call this function with a mapping containing the
*! following elements:
*! @mapping
*! @member int(0..60) "sec"
*! Seconds over the minute.
*! @member int(0..59) "min"
*! Minutes over the hour.
*! @member int(0..23) "hour"
*! Hour of the day.
*! @member int(1..31) "mday"
*! Day of the month.
*! @member int(0..11) "mon"
*! Month of the year.
*! @member int(0..) "year"
*! Year since 1900.
*! @member int(0..1) "isdst"
*! Is daylight savings time.
|
06a3ac | 2002-05-12 | Martin Nilsson | | *! @member int "timezone"
|
779271 | 2002-03-21 | Henrik Grubbström (Grubba) | | *! The timezone offset from UTC in seconds. If left out, the time
*! will be calculated in the local timezone.
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @endmapping
*!
*! Or you can just send them all on one line as the second syntax suggests.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
081eea | 2002-09-09 | Henrik Grubbström (Grubba) | | *! @note
|
aac1c4 | 2004-12-22 | Henrik Grubbström (Grubba) | | *! On some operating systems (notably AIX and Win32), dates before
*! 00:00:00 UTC, Jan 1, 1970 are not supported.
|
081eea | 2002-09-09 | Henrik Grubbström (Grubba) | | *!
*! On most systems, the supported range of dates are Dec 13, 1901
*! 20:45:52 UTC through Jan 19, 2038 03:14:07 UTC (inclusive).
*!
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[time()], @[ctime()], @[localtime()], @[gmtime()]
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_mktime (INT32 args)
|
b5d2dc | 1997-01-27 | Fredrik Hübinette (Hubbe) | | {
|
1f88bf | 2001-09-24 | Henrik Grubbström (Grubba) | | INT_TYPE sec, min, hour, mday, mon, year;
|
2adf00 | 2004-02-29 | Martin Stjernholm | | INT_TYPE isdst = -1, tz;
|
b5d2dc | 1997-01-27 | Fredrik Hübinette (Hubbe) | | struct tm date;
|
86d9aa | 2004-12-13 | Martin Stjernholm | | time_t retval;
|
1f88bf | 2001-09-24 | Henrik Grubbström (Grubba) | |
|
b5d2dc | 1997-01-27 | Fredrik Hübinette (Hubbe) | | if (args<1)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_TOO_FEW_ARGS_ERROR("mktime", 1);
|
b5d2dc | 1997-01-27 | Fredrik Hübinette (Hubbe) | |
if(args == 1)
{
MEMSET(&date, 0, sizeof(date));
push_text("sec");
push_text("min");
push_text("hour");
push_text("mday");
push_text("mon");
push_text("year");
push_text("isdst");
push_text("timezone");
f_aggregate(8);
f_rows(2);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | Pike_sp--;
dmalloc_touch_svalue(Pike_sp);
push_array_items(Pike_sp->u.array);
|
b5d2dc | 1997-01-27 | Fredrik Hübinette (Hubbe) | |
args=8;
}
|
2adf00 | 2004-02-29 | Martin Stjernholm | | get_all_args("mktime",args, "%i%i%i%i%i%i.%i%i",
&sec, &min, &hour, &mday, &mon, &year, &isdst, &tz);
|
b5d2dc | 1997-01-27 | Fredrik Hübinette (Hubbe) | |
|
5db18e | 1998-05-07 | Fredrik Hübinette (Hubbe) | | MEMSET(&date, 0, sizeof(date));
|
b5d2dc | 1997-01-27 | Fredrik Hübinette (Hubbe) | | date.tm_sec=sec;
date.tm_min=min;
date.tm_hour=hour;
date.tm_mday=mday;
date.tm_mon=mon;
date.tm_year=year;
|
2adf00 | 2004-02-29 | Martin Stjernholm | | date.tm_isdst=isdst;
|
b5d2dc | 1997-01-27 | Fredrik Hübinette (Hubbe) | |
|
ca1683 | 2004-01-30 | Henrik Grubbström (Grubba) | |
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | |
#ifdef HAVE_GMTIME
|
86d9aa | 2004-12-13 | Martin Stjernholm | | if((args > 7) && (Pike_sp[7-args].subtype == NUMBER_NUMBER))
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | {
|
86d9aa | 2004-12-13 | Martin Stjernholm | |
if (!my_time_inverse (&date, &retval, gmtime))
PIKE_ERROR("mktime", "Time conversion failed.\n", Pike_sp, args);
|
2adf00 | 2004-02-29 | Martin Stjernholm | | retval += tz;
|
86d9aa | 2004-12-13 | Martin Stjernholm | | } else
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | #endif /* HAVE_GMTIME */
|
86d9aa | 2004-12-13 | Martin Stjernholm | | {
|
c3df66 | 2004-12-14 | Martin Stjernholm | | #ifndef HAVE_GMTIME
|
779271 | 2002-03-21 | Henrik Grubbström (Grubba) | | #ifdef STRUCT_TM_HAS_GMTOFF
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | |
date.tm_gmtoff = 0;
|
779271 | 2002-03-21 | Henrik Grubbström (Grubba) | | #else
#ifdef STRUCT_TM_HAS___TM_GMTOFF
|
c3df66 | 2004-12-14 | Martin Stjernholm | |
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | date.__tm_gmtoff = 0;
|
419d49 | 2002-09-07 | Henrik Grubbström (Grubba) | | #else
|
86d9aa | 2004-12-13 | Martin Stjernholm | | if((args > 7) && (Pike_sp[7-args].subtype == NUMBER_NUMBER))
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | {
|
86d9aa | 2004-12-13 | Martin Stjernholm | | * near Jan 1, 1970, since AIX mktime(3) doesn't support
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | * negative time.
*/
|
2adf00 | 2004-02-29 | Martin Stjernholm | | date.tm_sec += tz
|
419d49 | 2002-09-07 | Henrik Grubbström (Grubba) | | #ifdef HAVE_EXTERNAL_TIMEZONE
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | - timezone
|
419d49 | 2002-09-07 | Henrik Grubbström (Grubba) | | #endif /* HAVE_EXTERNAL_TIMEZONE */
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | ;
}
|
779271 | 2002-03-21 | Henrik Grubbström (Grubba) | | #endif /* STRUCT_TM_HAS___TM_GMTOFF */
#endif /* STRUCT_TM_HAS_GMTOFF */
|
c3df66 | 2004-12-14 | Martin Stjernholm | | #endif /* !HAVE_GMTIME */
|
779271 | 2002-03-21 | Henrik Grubbström (Grubba) | |
|
c3df66 | 2004-12-14 | Martin Stjernholm | | #ifdef HAVE_MKTIME
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | retval = mktime(&date);
|
c3df66 | 2004-12-14 | Martin Stjernholm | | if (retval == -1)
#endif
{
|
86d9aa | 2004-12-13 | Martin Stjernholm | | #ifdef HAVE_LOCALTIME
|
c3df66 | 2004-12-14 | Martin Stjernholm | | |
aac1c4 | 2004-12-22 | Henrik Grubbström (Grubba) | | * so try our own inverse function with localtime.
*
* Note that localtime on Win32 will also fail for dates before 1970.
*/
|
c3df66 | 2004-12-14 | Martin Stjernholm | | if (!my_time_inverse (&date, &retval, localtime))
|
86d9aa | 2004-12-13 | Martin Stjernholm | | #endif
|
c3df66 | 2004-12-14 | Martin Stjernholm | | PIKE_ERROR("mktime", "Time conversion unsuccessful.\n", Pike_sp, args);
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | }
|
b5d2dc | 1997-01-27 | Fredrik Hübinette (Hubbe) | |
|
c3df66 | 2004-12-14 | Martin Stjernholm | | #if !defined (HAVE_GMTIME) && (defined(STRUCT_TM_HAS_GMTOFF) || defined(STRUCT_TM_HAS___TM_GMTOFF))
if((args > 7) && (Pike_sp[7-args].subtype == NUMBER_NUMBER))
|
86d9aa | 2004-12-13 | Martin Stjernholm | | {
|
c3df66 | 2004-12-14 | Martin Stjernholm | |
#ifdef STRUCT_TM_HAS_GMTOFF
retval += tz + date.tm_gmtoff;
#else
retval += tz + date.__tm_gmtoff;
#endif /* STRUCT_TM_HAS_GMTOFF */
}
#endif /* !HAVE_GMTIME && (STRUCT_TM_HAS_GMTOFF || STRUCT_TM_HAS___TM_GMTOFF) */
#if 0
if ((isdst != -1) && (isdst != date.tm_isdst)) {
retval += 3600 * (isdst - date.tm_isdst);
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | }
|
c3df66 | 2004-12-14 | Martin Stjernholm | | #endif /* 0 */
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | }
|
03a77e | 2002-10-15 | Henrik Grubbström (Grubba) | |
|
c69e41 | 1999-12-06 | Henrik Grubbström (Grubba) | | pop_n_elems(args);
|
897b81 | 2004-12-14 | Martin Stjernholm | | #if SIZEOF_TIME_T > SIZEOF_INT_TYPE
push_int64 (retval);
#else
|
c69e41 | 1999-12-06 | Henrik Grubbström (Grubba) | | push_int(retval);
|
897b81 | 2004-12-14 | Martin Stjernholm | | #endif
|
b5d2dc | 1997-01-27 | Fredrik Hübinette (Hubbe) | | }
|
86d9aa | 2004-12-13 | Martin Stjernholm | | #define GOT_F_MKTIME
#endif /* HAVE_MKTIME || HAVE_LOCALTIME */
|
b5d2dc | 1997-01-27 | Fredrik Hübinette (Hubbe) | |
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | |
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | static ptrdiff_t low_parse_format(p_wchar0 *s, ptrdiff_t slen)
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | | {
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | ptrdiff_t i;
ptrdiff_t offset = 0;
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | struct svalue *old_sp = Pike_sp;
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | |
for (i=offset; i < slen; i++) {
if (s[i] == '%') {
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | ptrdiff_t j;
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | | if (i != offset) {
push_string(make_shared_binary_string0(s + offset, i));
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if ((Pike_sp != old_sp+1) && (Pike_sp[-2].type == T_STRING)) {
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | |
f_add(2);
}
}
for (j = i+1;j<slen;j++) {
int c = s[j];
switch(c) {
case '!':
case '#':
case '$':
case '-':
case '/':
case '0':
case '=':
case '>':
case '@':
case '^':
case '_':
case '|':
continue;
case ' ':
case '\'':
case '+':
case '~':
|
782a90 | 2003-09-11 | Henrik Grubbström (Grubba) | | continue;
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | |
case '.':
case ':':
case ';':
continue;
case '1': case '2': case '3': case '4': case '5':
case '6': case '7': case '8': case '9':
continue;
case '%':
push_constant_text("%");
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if ((Pike_sp != old_sp+1) && (Pike_sp[-2].type == T_STRING)) {
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | |
f_add(2);
}
break;
case '{':
i = j + 1 + low_parse_format(s + j + 1, slen - (j+1));
f_aggregate(1);
if ((i + 2 >= slen) || (s[i] != '%') || (s[i+1] != '}')) {
|
b2d3e4 | 2000-12-01 | Fredrik Hübinette (Hubbe) | | Pike_error("parse_format(): Expected %%}.\n");
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | | }
i += 2;
break;
case '}':
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | f_aggregate(DO_NOT_WARN(Pike_sp - old_sp));
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | | return i;
case '[':
break;
default:
break;
}
break;
}
if (j == slen) {
|
b2d3e4 | 2000-12-01 | Fredrik Hübinette (Hubbe) | | Pike_error("parse_format(): Unterminated %%-expression.\n");
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | | }
offset = i = j;
}
}
if (i != offset) {
push_string(make_shared_binary_string0(s + offset, i));
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if ((Pike_sp != old_sp+1) && (Pike_sp[-2].type == T_STRING)) {
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | |
f_add(2);
}
}
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | f_aggregate(DO_NOT_WARN(Pike_sp - old_sp));
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | | return i;
}
|
49c3f9 | 2003-09-11 | Johan Sundström | | |
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | | static void f_parse_format(INT32 args)
{
struct pike_string *s = NULL;
struct array *a;
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | ptrdiff_t len;
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | |
get_all_args("parse_format", args, "%W", &s);
len = low_parse_format(STR0(s), s->len);
if (len != s->len) {
|
b2d3e4 | 2000-12-01 | Fredrik Hübinette (Hubbe) | | Pike_error("parse_format(): Unexpected %%} in format string at offset %ld\n",
|
69bb40 | 2000-08-17 | Henrik Grubbström (Grubba) | | PTRDIFF_T_TO_LONG(len));
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | | }
#ifdef PIKE_DEBUG
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if (Pike_sp[-1].type != T_ARRAY) {
|
5aad93 | 2002-08-15 | Marcus Comstedt | | Pike_fatal("parse_format(): Unexpected result from low_parse_format()\n");
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | | }
#endif /* PIKE_DEBUG */
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | a = (--Pike_sp)->u.array;
|
42a92c | 1999-11-04 | Henrik Grubbström (Grubba) | | debug_malloc_touch(a);
pop_n_elems(args);
push_array(a);
}
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
156fd5 | 1997-10-27 | Fredrik Hübinette (Hubbe) | |
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | static int does_match(struct pike_string *s,int j,
struct pike_string *m,int i)
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | {
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | for (; i<m->len; i++)
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | {
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | switch (index_shared_string(m,i))
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | {
|
7a1bed | 1996-12-01 | Fredrik Hübinette (Hubbe) | | case '?':
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | if(j++>=s->len) return 0;
|
7a1bed | 1996-12-01 | Fredrik Hübinette (Hubbe) | | break;
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | |
case '*':
i++;
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | if (i==m->len) return 1;
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | |
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | for (;j<s->len;j++)
if (does_match(s,j,m,i))
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | return 1;
return 0;
default:
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | if(j>=s->len ||
index_shared_string(m,i)!=index_shared_string(s,j)) return 0;
|
7a1bed | 1996-12-01 | Fredrik Hübinette (Hubbe) | | j++;
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | }
}
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | return j==s->len;
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | }
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Match strings against globs.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! In a glob string a question sign matches any character and
*! an asterisk matches any string.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! When the second argument is a string and @[str] matches
|
cbe8c9 | 2003-04-07 | Martin Nilsson | | *! the glob @[glob] @expr{1@} will be returned, @expr{0@} (zero) otherwise.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! If the second array is an array and array containing the strings in
*! @[arr] that match @[glob] will be returned.
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[sscanf()], @[Regexp]
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | PMOD_EXPORT void f_glob(INT32 args)
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | {
INT32 i,matches;
struct array *a;
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | struct pike_string *glob;
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | |
if(args < 2)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_TOO_FEW_ARGS_ERROR("glob", 2);
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | |
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | if(args > 2)
pop_n_elems(args-2);
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | args=2;
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | if (Pike_sp[-args].type!=T_STRING)
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("glob", 1, "string");
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | glob=Pike_sp[-args].u.string;
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | |
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | switch(Pike_sp[1-args].type)
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | {
case T_STRING:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | i=does_match(Pike_sp[1-args].u.string,0,glob,0);
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | pop_n_elems(2);
push_int(i);
break;
case T_ARRAY:
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | a=Pike_sp[1-args].u.array;
|
b072f2 | 2004-04-29 | Martin Nilsson | |
|
257524 | 2004-05-14 | Martin Nilsson | | if( (a->type_field & ~BIT_STRING) &&
(array_fix_type_field(a) & ~BIT_STRING) )
SIMPLE_BAD_ARG_ERROR("glob", 2, "string|array(string)");
|
b072f2 | 2004-04-29 | Martin Nilsson | |
|
3beb89 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | matches=0;
|
e566a8 | 2003-05-07 | Martin Stjernholm | | check_stack(120);
BEGIN_AGGREGATE_ARRAY (MINIMUM (a->size, 120)) {
for(i=0;i<a->size;i++)
if(does_match(ITEM(a)[i].u.string,0,glob,0))
{
ref_push_string(ITEM(a)[i].u.string);
matches++;
DO_AGGREGATE_ARRAY (120);
}
} END_AGGREGATE_ARRAY;
Pike_sp[-1].u.array->type_field = BIT_STRING;
stack_pop_n_elems_keep_top (2);
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | break;
default:
|
e566a8 | 2003-05-07 | Martin Stjernholm | | SIMPLE_BAD_ARG_ERROR("glob", 2, "string|array(string)");
|
ed70b7 | 1996-06-09 | Fredrik Hübinette (Hubbe) | | }
}
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | |
|
7cb4e4 | 2001-01-09 | Henrik Grubbström (Grubba) | |
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Interleave a sparse matrix.
|
7cb4e4 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
a8cdf9 | 2004-04-29 | Martin Nilsson | | *! Returns an array with offsets that describe how to shift the
*! rows of @[tab] so that only at most one non-zero value exists in
*! every column.
|
7cb4e4 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | | static void f_interleave_array(INT32 args)
{
struct array *arr = NULL;
struct array *min = NULL;
struct array *order = NULL;
int max = 0;
int nelems = 0;
int i;
get_all_args("interleave_array", args, "%a", &arr);
pop_n_elems(args-1);
|
257524 | 2004-05-14 | Martin Nilsson | | if( (arr->type_field & ~BIT_MAPPING) &&
(array_fix_type_field(arr) & ~BIT_MAPPING) )
SIMPLE_BAD_ARG_ERROR("interleave_array", 1, "array(mapping(int:mixed))");
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | |
ref_push_array(arr);
f_indices(1);
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | order = Pike_sp[-1].u.array;
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | |
push_array(min = allocate_array(arr->size));
for (i = 0; i < arr->size; i++) {
|
fa666b | 2004-04-15 | Martin Nilsson | | struct mapping_data *md;
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | | INT32 e;
struct keypair *k;
|
a63b36 | 2003-11-07 | Martin Stjernholm | | INT_TYPE low = MAX_INT_TYPE;
|
71f3a2 | 1998-11-22 | Fredrik Hübinette (Hubbe) | | #ifdef PIKE_DEBUG
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | | if (ITEM(arr)[i].type != T_MAPPING) {
|
b2d3e4 | 2000-12-01 | Fredrik Hübinette (Hubbe) | | Pike_error("interleave_array(): Element %d is not a mapping!\n", i);
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | | }
|
71f3a2 | 1998-11-22 | Fredrik Hübinette (Hubbe) | | #endif /* PIKE_DEBUG */
|
fa666b | 2004-04-15 | Martin Nilsson | | md = ITEM(arr)[i].u.mapping->data;
NEW_MAPPING_LOOP(md) {
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | | if (k->ind.type != T_INT) {
|
b2d3e4 | 2000-12-01 | Fredrik Hübinette (Hubbe) | | Pike_error("interleave_array(): Index not an integer in mapping %d!\n", i);
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | | }
if (low > k->ind.u.integer) {
low = k->ind.u.integer;
if (low < 0) {
|
69aa4b | 2003-01-26 | Mirar (Pontus Hagland) | | Pike_error("interleave_array(): Index %"PRINTPIKEINT"d in mapping %d is negative!\n",
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | | low, i);
}
}
if (max < k->ind.u.integer) {
max = k->ind.u.integer;
}
nelems++;
}
ITEM(min)[i].u.integer = low;
}
|
fc4a8e | 2004-05-02 | Martin Nilsson | | min->type_field = BIT_INT;
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | | ref_push_array(order);
f_sort(2);
{
char *tab;
int size;
int minfree = 0;
max += 1;
max *= 2;
size = (nelems + max) * 8;
if (!(tab = malloc(size + max))) {
|
54db6c | 1999-03-27 | Henrik Grubbström (Grubba) | | SIMPLE_OUT_OF_MEMORY_ERROR("interleave_array", size+max);
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | | }
MEMSET(tab, 0, size + max);
for (i = 0; i < order->size; i++) {
int low = ITEM(min)[i].u.integer;
int j = ITEM(order)[i].u.integer;
int offset = 0;
|
b072f2 | 2004-04-29 | Martin Nilsson | | int ok = 0;
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | | struct mapping *m;
|
fa666b | 2004-04-15 | Martin Nilsson | | struct mapping_data *md;
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | | INT32 e;
struct keypair *k;
|
6168ce | 2000-01-27 | Fredrik Hübinette (Hubbe) | | if (! m_sizeof(m = ITEM(arr)[j].u.mapping)) {
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | |
ITEM(min)[i].u.integer = -1;
continue;
}
if (low < minfree) {
offset = minfree - low;
} else {
minfree = offset;
}
|
fa666b | 2004-04-15 | Martin Nilsson | | md = m->data;
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | | while (!ok) {
ok = 1;
|
fa666b | 2004-04-15 | Martin Nilsson | | NEW_MAPPING_LOOP(md) {
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | | int ind = k->ind.u.integer;
if (tab[offset + ind]) {
ok = 0;
while (tab[++offset + ind])
;
}
}
}
|
fa666b | 2004-04-15 | Martin Nilsson | | NEW_MAPPING_LOOP(md) {
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | | tab[offset + k->ind.u.integer] = 1;
}
while(tab[minfree]) {
minfree++;
}
ITEM(min)[i].u.integer = offset;
if (offset >= size) {
char *newtab = realloc(tab, size*2 + max);
if (!newtab) {
free(tab);
|
b2d3e4 | 2000-12-01 | Fredrik Hübinette (Hubbe) | | Pike_error("interleave_array(): Couldn't extend table!\n");
|
a7759e | 1998-11-17 | Henrik Grubbström (Grubba) | | }
tab = newtab;
MEMSET(tab + size + max, 0, size);
size = size * 2;
}
}
free(tab);
}
add_ref(min);
add_ref(order);
pop_n_elems(3);
ref_push_array(min);
push_array(order);
push_array(min);
f_sort(2);
pop_stack();
}
|
7ce3a9 | 1998-02-12 | Henrik Grubbström (Grubba) | |
static int find_gt(struct array *a, int i, int *stack, int top)
{
struct svalue *x = a->item + i;
int l,h;
|
a90745 | 2004-11-27 | Martin Stjernholm | |
|
7ce3a9 | 1998-02-12 | Henrik Grubbström (Grubba) | | if (!top || !is_lt(x, a->item + stack[top - 1])) return top;
l = 0;
h = top;
while (l < h) {
int middle = (l + h)/2;
if (!is_gt(a->item + stack[middle], x)) {
l = middle+1;
} else {
h = middle;
}
}
return l;
}
static struct array *longest_ordered_sequence(struct array *a)
{
int *stack;
int *links;
|
9ca13e | 2003-06-12 | Martin Nilsson | | int i, top=0, ltop=-1;
|
7ce3a9 | 1998-02-12 | Henrik Grubbström (Grubba) | | struct array *res;
ONERROR tmp;
ONERROR tmp2;
|
c05578 | 1999-05-11 | Fredrik Hübinette (Hubbe) | | if(!a->size)
return allocate_array(0);
|
7ce3a9 | 1998-02-12 | Henrik Grubbström (Grubba) | | stack = malloc(sizeof(int)*a->size);
links = malloc(sizeof(int)*a->size);
if (!stack || !links)
{
if (stack) free(stack);
if (links) free(links);
return 0;
}
SET_ONERROR(tmp, free, stack);
SET_ONERROR(tmp2, free, links);
for (i=0; i<a->size; i++) {
int pos;
pos = find_gt(a, i, stack, top);
if (pos == top) {
top++;
ltop = i;
}
if (pos != 0)
links[i] = stack[pos-1];
else
links[i] = -1;
stack[pos] = i;
}
|
a4a172 | 2000-12-05 | Per Hedbor | |
|
7ce3a9 | 1998-02-12 | Henrik Grubbström (Grubba) | | res = low_allocate_array(top, 0);
while (ltop != -1)
{
|
2523ce | 2003-04-28 | Martin Stjernholm | | ITEM(res)[--top].u.integer = ltop;
|
7ce3a9 | 1998-02-12 | Henrik Grubbström (Grubba) | | ltop = links[ltop];
}
|
fc4a8e | 2004-05-02 | Martin Nilsson | | res->type_field = BIT_INT;
|
7ce3a9 | 1998-02-12 | Henrik Grubbström (Grubba) | |
UNSET_ONERROR(tmp2);
UNSET_ONERROR(tmp);
free(stack);
free(links);
return res;
}
|
7cb4e4 | 2001-01-09 | Henrik Grubbström (Grubba) | | |
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! Find the longest ordered sequence of elements.
|
7cb4e4 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! This function returns an array of the indices in the longest
*! ordered sequence of elements in the array.
|
7cb4e4 | 2001-01-09 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
554e22 | 2001-05-06 | Henrik Grubbström (Grubba) | | *! @[diff()]
|
7cb4e4 | 2001-01-09 | Henrik Grubbström (Grubba) | | */
|
7ce3a9 | 1998-02-12 | Henrik Grubbström (Grubba) | | static void f_longest_ordered_sequence(INT32 args)
{
struct array *a = NULL;
get_all_args("Array.longest_ordered_sequence", args, "%a", &a);
a = longest_ordered_sequence(a);
if (!a) {
|
54db6c | 1999-03-27 | Henrik Grubbström (Grubba) | | SIMPLE_OUT_OF_MEMORY_ERROR("Array.longest_ordered_sequence",
(int)sizeof(int *)*a->size*2);
|
7ce3a9 | 1998-02-12 | Henrik Grubbström (Grubba) | | }
pop_n_elems(args);
push_array(a);
}
|
088e2e | 1998-02-12 | Mirar (Pontus Hagland) | |
|
f87383 | 1998-05-19 | Henrik Grubbström (Grubba) | | static struct array* diff_compare_table(struct array *a,struct array *b,int *u)
|
088e2e | 1998-02-12 | Mirar (Pontus Hagland) | | {
struct array *res;
struct mapping *map;
struct svalue *pval;
int i;
|
2523ce | 2003-04-28 | Martin Stjernholm | | TYPE_FIELD types;
|
088e2e | 1998-02-12 | Mirar (Pontus Hagland) | |
|
f87383 | 1998-05-19 | Henrik Grubbström (Grubba) | | if (u) {
*u = 0;
}
|
088e2e | 1998-02-12 | Mirar (Pontus Hagland) | | map=allocate_mapping(256);
push_mapping(map);
for (i=0; i<b->size; i++)
{
pval=low_mapping_lookup(map,b->item+i);
if (!pval)
{
struct svalue val;
val.type=T_ARRAY;
val.u.array=low_allocate_array(1,1);
|
2523ce | 2003-04-28 | Martin Stjernholm | | ITEM(val.u.array)[0].u.integer=i;
val.u.array->type_field = BIT_INT;
mapping_insert(map,ITEM(b)+i,&val);
|
088e2e | 1998-02-12 | Mirar (Pontus Hagland) | | free_svalue(&val);
|
f87383 | 1998-05-19 | Henrik Grubbström (Grubba) | | if (u) {
(*u)++;
}
|
088e2e | 1998-02-12 | Mirar (Pontus Hagland) | | }
else
{
pval->u.array=resize_array(pval->u.array,pval->u.array->size+1);
pval->u.array->item[pval->u.array->size-1].type=T_INT;
pval->u.array->item[pval->u.array->size-1].subtype=NUMBER_NUMBER;
pval->u.array->item[pval->u.array->size-1].u.integer=i;
}
}
res=low_allocate_array(a->size,0);
|
2523ce | 2003-04-28 | Martin Stjernholm | | types = 0;
|
088e2e | 1998-02-12 | Mirar (Pontus Hagland) | |
for (i=0; i<a->size; i++)
{
pval=low_mapping_lookup(map,a->item+i);
if (!pval)
{
|
2523ce | 2003-04-28 | Martin Stjernholm | | ITEM(res)[i].type=T_ARRAY;
add_ref(ITEM(res)[i].u.array=&empty_array);
types |= BIT_ARRAY;
|
088e2e | 1998-02-12 | Mirar (Pontus Hagland) | | }
else
{
|
2523ce | 2003-04-28 | Martin Stjernholm | | assign_svalue(ITEM(res)+i,pval);
types |= 1 << ITEM(res)[i].type;
|
088e2e | 1998-02-12 | Mirar (Pontus Hagland) | | }
}
|
2523ce | 2003-04-28 | Martin Stjernholm | | res->type_field = types;
|
088e2e | 1998-02-12 | Mirar (Pontus Hagland) | | pop_stack();
return res;
}
|
7083e3 | 1998-02-15 | Mirar (Pontus Hagland) | | struct diff_magic_link
{
int x;
int refs;
struct diff_magic_link *prev;
};
struct diff_magic_link_pool
{
struct diff_magic_link *firstfree;
struct diff_magic_link_pool *next;
int firstfreenum;
struct diff_magic_link dml[1];
};
|
f87383 | 1998-05-19 | Henrik Grubbström (Grubba) | | struct diff_magic_link_head
{
unsigned int depth;
struct diff_magic_link *link;
};
|
7083e3 | 1998-02-15 | Mirar (Pontus Hagland) | | #define DMLPOOLSIZE 16384
static int dmls=0;
static INLINE struct diff_magic_link_pool*
dml_new_pool(struct diff_magic_link_pool **pools)
{
struct diff_magic_link_pool *new;
|
088e2e | 1998-02-12 | Mirar (Pontus Hagland) | |
|
7083e3 | 1998-02-15 | Mirar (Pontus Hagland) | | new=malloc(sizeof(struct diff_magic_link_pool)+
sizeof(struct diff_magic_link)*DMLPOOLSIZE);
if (!new) return NULL;
new->firstfreenum=0;
new->firstfree=NULL;
new->next=*pools;
*pools=new;
return *pools;
}
static INLINE struct diff_magic_link*
dml_new(struct diff_magic_link_pool **pools)
{
struct diff_magic_link *new;
struct diff_magic_link_pool *pool;
dmls++;
if ( *pools && (new=(*pools)->firstfree) )
{
(*pools)->firstfree=new->prev;
new->prev=NULL;
return new;
}
pool=*pools;
while (pool)
{
if (pool->firstfreenum<DMLPOOLSIZE)
return pool->dml+(pool->firstfreenum++);
pool=pool->next;
}
if ( (pool=dml_new_pool(pools)) )
{
pool->firstfreenum=1;
return pool->dml;
}
return NULL;
}
static INLINE void dml_free_pools(struct diff_magic_link_pool *pools)
{
struct diff_magic_link_pool *pool;
while (pools)
{
pool=pools->next;
free(pools);
pools=pool;
}
}
static INLINE void dml_delete(struct diff_magic_link_pool *pools,
struct diff_magic_link *dml)
{
|
406280 | 2001-09-27 | Fredrik Hübinette (Hubbe) | | struct diff_magic_link *prev;
while(1)
{
prev=dml->prev;
dmls--;
dml->prev=pools->firstfree;
pools->firstfree=dml;
if (prev && !--prev->refs)
dml=prev;
else
break;
}
|
7083e3 | 1998-02-15 | Mirar (Pontus Hagland) | | }
static INLINE int diff_ponder_stack(int x,
struct diff_magic_link **dml,
int top)
{
int middle,a,b;
a=0;
b=top;
while (b>a)
{
middle=(a+b)/2;
if (dml[middle]->x<x) a=middle+1;
else if (dml[middle]->x>x) b=middle;
else return middle;
}
if (a<top && dml[a]->x<x) a++;
return a;
}
static INLINE int diff_ponder_array(int x,
struct svalue *arr,
int top)
|
088e2e | 1998-02-12 | Mirar (Pontus Hagland) | | {
int middle,a,b;
a=0;
b=top;
while (b>a)
{
middle=(a+b)/2;
|
7083e3 | 1998-02-15 | Mirar (Pontus Hagland) |