e576bb | 2002-10-11 | Martin Nilsson | | |
38cb40 | 2010-03-30 | Peter Bortas | | || $Id: builtin_functions.c,v 1.699 2010/03/30 11:54:56 peter 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"
|
e021fe | 2008-04-14 | Henrik Grubbström (Grubba) | | #include "pike_compiler.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) {
|
594f16 | 2007-01-15 | Henrik Grubbström (Grubba) | | if (!CDR(args)) continue;
|
faafc5 | 2005-03-16 | Henrik Grubbström (Grubba) | | 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) | |
|
a56279 | 2008-06-29 | Henrik Grubbström (Grubba) | |
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | |
|
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
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | | *! @[hash()], @[7.0::hash()]
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | | */
static void f_hash_7_4(INT32 args)
{
size_t i = 0;
struct pike_string *s = Pike_sp[-args].u.string;
if(!args)
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | | SIMPLE_TOO_FEW_ARGS_ERROR("7.4::hash",1);
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | |
if(Pike_sp[-args].type != T_STRING)
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("7.4::hash", 1, "string");
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | |
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)
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("7.4::hash",2,"int");
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | |
if(!Pike_sp[1-args].u.integer)
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | | PIKE_ERROR("7.4::hash", "Modulo by zero.\n", Pike_sp, args);
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | |
i%=(unsigned INT32)Pike_sp[1-args].u.integer;
}
pop_n_elems(args);
push_int64(i);
}
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | |
|
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
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | | *! @[hash()], @[7.4::hash()]
|
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)
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | | SIMPLE_TOO_FEW_ARGS_ERROR("7.0::hash",1);
|
348cff | 2000-12-11 | Per Hedbor | | if(Pike_sp[-args].type != T_STRING)
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("7.0::hash", 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)
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | | SIMPLE_BAD_ARG_ERROR("7.0::hash",2,"int");
|
348cff | 2000-12-11 | Per Hedbor | |
if(!Pike_sp[1-args].u.integer)
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | | PIKE_ERROR("7.0::hash", "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) | |
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | |
|
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
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | | *! that is compatible with Pike 7.4 and earlier, use @[7.4::hash()].
|
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
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | | *! that is compatible with Pike 7.0 and earlier, use @[7.0::hash()].
|
ce4d67 | 2001-01-31 | Henrik Grubbström (Grubba) | | *!
*! @seealso
|
e3f6f9 | 2008-06-29 | Henrik Grubbström (Grubba) | | *! @[7.0::hash()], @[7.4::hash()], @[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;
|
c6b604 | 2008-05-03 | Martin Nilsson | | #ifdef PIKE_DEBUG
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | | default:
Pike_fatal("hash(): Unsupported string shift: %d\n", s->size_shift);
break;
|
c6b604 | 2008-05-03 | Martin Nilsson | | #endif
|
5d98c4 | 2003-03-02 | Henrik Grubbström (Grubba) | | }
|
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);
|
c2464e | 2009-08-26 | Henrik Grubbström (Grubba) | | push_undefined();
|
cada52 | 2009-08-26 | Martin Stjernholm | | copy_svalues_recursively_no_free(Pike_sp-1,Pike_sp-2,1,0);
free_svalue(Pike_sp-2);
move_svalue (Pike_sp - 2, Pike_sp - 1);
Pike_sp--;
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | 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) | | };
|
002bd5 | 2008-05-29 | Martin Nilsson | | #define CIM_NONE 0 /* Case-less */
#define CIM_UPPERDELTA 1 /* Upper-case, delta to lower-case in data */
#define CIM_LOWERDELTA 2 /* Lower-case, -delta to upper-case in data */
#define CIM_CASEBIT 3 /* Some case, case mask in data */
#define CIM_CASEBITOFF 4 /* Same as above, but also offset by data */
#define CIM_LONGUPPERDELTA 5 /* Upper-case, delta + 0x7fff. */
#define CIM_LONGLOWERDELTA 6 /* Lower-case, delta + 0x7fff. */
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | |
|
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; \
|
002bd5 | 2008-05-29 | Martin Nilsson | | if(c<0xb5){if(c >= 'A' && c <= 'Z' ) C=c+0x20; } \
/*else if(c==0xa77d) C=0x1d79;*/ 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) { \
|
002bd5 | 2008-05-29 | Martin Nilsson | | case CIM_NONE: case CIM_LOWERDELTA: case CIM_LONGLOWERDELTA: break; \
|
164d67 | 1999-03-20 | Henrik Grubbström (Grubba) | | 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; \
|
002bd5 | 2008-05-29 | Martin Nilsson | | case CIM_LONGUPPERDELTA: \
C = c + ci->data + ( ci->data>0 ? 0x7fff : -0x8000 ); break; \
|
c6b604 | 2008-05-03 | Martin Nilsson | | DO_IF_DEBUG( 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; \
|
c6b604 | 2008-05-03 | Martin Nilsson | | DO_IF_DEBUG( 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; \
|
002bd5 | 2008-05-29 | Martin Nilsson | | if(c<0xb5){if(c >= 'a' && c <= 'z' ) C=c-0x20; } \
/*else if(c==0x1d79) C=0xa77d;*/ else {\
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | struct case_info *ci = find_ci(c); \
if (ci) { \
switch(ci->mode) { \
|
002bd5 | 2008-05-29 | Martin Nilsson | | case CIM_NONE: case CIM_UPPERDELTA: case CIM_LONGUPPERDELTA: break; \
|
164d67 | 1999-03-20 | Henrik Grubbström (Grubba) | | 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; \
|
002bd5 | 2008-05-29 | Martin Nilsson | | case CIM_LONGLOWERDELTA: \
C = c - ci->data - ( ci->data>0 ? 0x7fff : -0x8000 ); break; \
|
c6b604 | 2008-05-03 | Martin Nilsson | | DO_IF_DEBUG( 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; \
|
c6b604 | 2008-05-03 | Martin Nilsson | | DO_IF_DEBUG( 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]);
}
|
c6b604 | 2008-05-03 | Martin Nilsson | | #ifdef PIKE_DEBUG
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | } else {
|
5aad93 | 2002-08-15 | Marcus Comstedt | | Pike_fatal("lower_case(): Bad string shift:%d\n", orig->size_shift);
|
c6b604 | 2008-05-03 | Martin Nilsson | | #endif
|
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;
}
|
fb2294 | 2008-06-16 | Martin Stjernholm | | do_free_unlinked_pike_string(ret);
|
c5ab04 | 2004-05-13 | Martin Nilsson | | 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]);
}
|
c6b604 | 2008-05-03 | Martin Nilsson | | #ifdef PIKE_DEBUG
|
94d992 | 1999-03-20 | Henrik Grubbström (Grubba) | | } else {
|
5aad93 | 2002-08-15 | Marcus Comstedt | | Pike_fatal("lower_case(): Bad string shift:%d\n", orig->size_shift);
|
c6b604 | 2008-05-03 | Martin Nilsson | | #endif
|
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) | | *!
|
594f16 | 2007-01-15 | Henrik Grubbström (Grubba) | | *! @note
*! For mappings and object @[UNDEFINED] will be returned when not found.
*! In all other cases @expr{-1@} will be returned when not found.
*!
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *! @seealso
|
38cb40 | 2010-03-30 | Peter Bortas | | *! @[indices()], @[values()], @[zero_type()], @[has_value()],
*! @[has_prefix()], @[has_suffix()]
|
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) | |
|
f05e11 | 2009-09-09 | Henrik Grubbström (Grubba) | | if ((Pike_sp[1-args].type == T_INT) ||
((Pike_sp[1-args].type == T_STRING) &&
(Pike_sp[1-args].u.string->len == 1))) {
INT_TYPE val;
if (Pike_sp[1-args].type == T_INT) {
val = Pike_sp[1-args].u.integer;
} else {
val = index_shared_string(Pike_sp[1-args].u.string, 0);
|
e38ce9 | 2001-10-30 | Henrik Grubbström (Grubba) | | }
|
9cf6c8 | 2001-03-11 | Henrik Grubbström (Grubba) | |
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;
|
c6b604 | 2008-05-03 | Martin Nilsson | | #ifdef PIKE_DEBUG
|
9cf6c8 | 2001-03-11 | Henrik Grubbström (Grubba) | | 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;
|
c6b604 | 2008-05-03 | Martin Nilsson | | #endif
|
9cf6c8 | 2001-03-11 | Henrik Grubbström (Grubba) | | }
if (start >= haystack->len) {
start = -1;
}
|
f05e11 | 2009-09-09 | Henrik Grubbström (Grubba) | | } else if(Pike_sp[1-args].type == T_STRING) {
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 {
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) | | }
}
|
929a86 | 2010-02-23 | Henrik Grubbström (Grubba) | | |
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.
|
38cb40 | 2010-03-30 | Peter Bortas | | *!
*! @seealso
*! @[has_suffix()], @[has_value()], @[search()]
|
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);
|
929a86 | 2010-02-23 | Henrik Grubbström (Grubba) | | if((Pike_sp[-args].type!=T_STRING) && (Pike_sp[-args].type!=T_OBJECT))
SIMPLE_ARG_TYPE_ERROR("has_prefix", 1, "string|object");
|
7d1e03 | 2004-05-18 | Martin Nilsson | | if(Pike_sp[1-args].type!=T_STRING)
SIMPLE_ARG_TYPE_ERROR("has_prefix", 2, "string");
b = Pike_sp[1-args].u.string;
|
a4f17f | 2000-04-12 | Henrik Grubbström (Grubba) | |
|
929a86 | 2010-02-23 | Henrik Grubbström (Grubba) | | if (Pike_sp[-args].type == T_OBJECT) {
ptrdiff_t i;
struct object *o = Pike_sp[-args].u.object;
int inherit_no = Pike_sp[-args].subtype;
push_int(0);
for (i = 0; i < b->len; i++) {
p_wchar2 ch = index_shared_string(b, i);
Pike_sp[-1].u.integer = i;
object_index_no_free(Pike_sp-1, o, inherit_no, Pike_sp-1);
|
36f105 | 2010-02-23 | Henrik Grubbström (Grubba) | | if (Pike_sp[-1].type != PIKE_T_INT) {
|
929a86 | 2010-02-23 | Henrik Grubbström (Grubba) | | Pike_error("Unexepected value returned from index operator.\n");
}
if (ch != Pike_sp[-1].u.integer) {
pop_n_elems(args + 1);
push_int(0);
return;
}
}
|
36f105 | 2010-02-23 | Henrik Grubbström (Grubba) | | pop_n_elems(args+1);
|
929a86 | 2010-02-23 | Henrik Grubbström (Grubba) | | push_int(1);
return;
}
a = Pike_sp[-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.
|
38cb40 | 2010-03-30 | Peter Bortas | | *!
*! @seealso
*! @[has_prefix()], @[has_value()], @[search()]
|
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
|
38cb40 | 2010-03-30 | Peter Bortas | | *! @[has_value()], @[has_prefix()], @[has_suffix()], @[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);
|
89c91b | 2008-01-05 | Martin Nilsson | | #ifdef PIKE_DEBUG
if(Pike_sp[-1].type != T_INT)
|
538a89 | 2000-01-21 | Fredrik Noring | | PIKE_ERROR("has_index",
|
edf4d0 | 2000-07-06 | Fredrik Hübinette (Hubbe) | | "Function `zero_type' gave incorrect result.\n", Pike_sp, args);
|
89c91b | 2008-01-05 | Martin Nilsson | | #endif
Pike_sp[-1].u.integer = !Pike_sp[-1].u.integer;
|
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 */
|
89c91b | 2008-01-05 | Martin Nilsson | |
|
538a89 | 2000-01-21 | Fredrik 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
|
38cb40 | 2010-03-30 | Peter Bortas | | *! @[has_index()], @[indices()], @[search()], @[has_prefix()],
*! @[has_suffix()], @[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)
{
|
e021fe | 2008-04-14 | Henrik Grubbström (Grubba) | | struct compilation *c = THIS_COMPILATION;
CHECK_COMPILER();
|
081147 | 2001-07-02 | Fredrik Hübinette (Hubbe) | | 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) | |
|
f23c5d | 2007-06-02 | Martin Bähr | | |
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;
|
c6b604 | 2008-05-03 | Martin Nilsson | | #ifdef PIKE_DEBUG
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | default:
|
c6b604 | 2008-05-03 | Martin Nilsson | | Pike_fatal("string_to_unicode(): Bad string shift: %d!\n", in->size_shift);
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | break;
|
c6b604 | 2008-05-03 | Martin Nilsson | | #endif
|
4643ea | 1998-10-10 | Henrik Grubbström (Grubba) | | }
pop_n_elems(args);
push_string(out);
}
|
f23c5d | 2007-06-02 | Martin Bähr | | |
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);
}
|
f23c5d | 2007-06-02 | Martin Bähr | | |
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 {
|
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);
}
|
f23c5d | 2007-06-02 | Martin Bähr | | |
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) | | *!
|
793182 | 2005-08-01 | Martin Stjernholm | | *! 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,
|
793182 | 2005-08-01 | Martin Stjernholm | | *! non-shortest forms are not decoded. An error is thrown instead.
|
dee894 | 2005-04-02 | Martin Stjernholm | | *!
|
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) {
|
2d76f2 | 2005-05-20 | Martin Stjernholm | | Pike_fatal("utf8_to_string(): Calculated and actual lengths differ: "
"%"PRINTPTRDIFFT"d != %"PRINTPTRDIFFT"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);
}
|
f23c5d | 2007-06-02 | Martin Bähr | | |
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 | | }
|
cf27cc | 2007-04-20 | Henrik Grubbström (Grubba) | |
static void f___soft_cast(INT32 args)
{
struct pike_type *res;
|
24adc7 | 2008-09-26 | Martin Nilsson | | if (args < 2) Pike_error("Bad number of arguments to __soft_cast().\n");
|
cf27cc | 2007-04-20 | Henrik Grubbström (Grubba) | | if (Pike_sp[-args].type != PIKE_T_TYPE) {
|
24adc7 | 2008-09-26 | Martin Nilsson | | Pike_error("Bad argument 1 to __soft_cast() expected type.\n");
|
cf27cc | 2007-04-20 | Henrik Grubbström (Grubba) | | }
if (Pike_sp[1-args].type != PIKE_T_TYPE) {
|
24adc7 | 2008-09-26 | Martin Nilsson | | Pike_error("Bad argument 2 to __soft_cast() expected type.\n");
|
cf27cc | 2007-04-20 | Henrik Grubbström (Grubba) | | }
if (!(res = soft_cast(Pike_sp[-args].u.type,
Pike_sp[1-args].u.type, 0))) {
pop_n_elems(args);
push_undefined();
} else {
pop_n_elems(args);
push_type_value(res);
}
}
|
34d9b5 | 2007-03-29 | Henrik Grubbström (Grubba) | | |
44fe36 | 2007-03-26 | Henrik Grubbström (Grubba) | | *!
*! Check whether a function of type @[fun_type] may be called
*! with a first argument of type @[arg_type].
*!
|
88d195 | 2007-03-28 | Henrik Grubbström (Grubba) | | *! @param flags
*! The following flags are currently defined:
*! @int
*! @value 1
*! Strict types. Fail if not all possible values in @[arg_type]
*! are valid as the first argument to @[fun_type].
*! @value 2
*! Last argument. @[arg_type] is the last argument to @[fun_type].
*! @value 3
*! Both strict types and last argument as above.
*! @endint
*!
|
44fe36 | 2007-03-26 | Henrik Grubbström (Grubba) | | *! @returns
*! Returns a continuation type on success.
*!
*! Returns @tt{0@} (zero) on failure.
*/
|
34d9b5 | 2007-03-29 | Henrik Grubbström (Grubba) | | static void f___low_check_call(INT32 args)
|
44fe36 | 2007-03-26 | Henrik Grubbström (Grubba) | | {
struct pike_type *res;
|
88d195 | 2007-03-28 | Henrik Grubbström (Grubba) | | INT32 flags = 0;
|
912912 | 2007-04-21 | Henrik Grubbström (Grubba) | | struct svalue *sval = NULL;
|
34d9b5 | 2007-03-29 | Henrik Grubbström (Grubba) | | if (args < 2) Pike_error("Bad number of arguments to __low_check_call().\n");
|
88d195 | 2007-03-28 | Henrik Grubbström (Grubba) | | if (Pike_sp[-args].type != PIKE_T_TYPE) {
|
34d9b5 | 2007-03-29 | Henrik Grubbström (Grubba) | | Pike_error("Bad argument 1 to __low_check_call() expected type.\n");
|
44fe36 | 2007-03-26 | Henrik Grubbström (Grubba) | | }
|
88d195 | 2007-03-28 | Henrik Grubbström (Grubba) | | if (Pike_sp[1-args].type != PIKE_T_TYPE) {
|
34d9b5 | 2007-03-29 | Henrik Grubbström (Grubba) | | Pike_error("Bad argument 2 to __low_check_call() expected type.\n");
|
88d195 | 2007-03-28 | Henrik Grubbström (Grubba) | | }
if (args > 2) {
if (Pike_sp[2-args].type != PIKE_T_INT) {
|
34d9b5 | 2007-03-29 | Henrik Grubbström (Grubba) | | Pike_error("Bad argument 3 to __low_check_call() expected int.\n");
|
88d195 | 2007-03-28 | Henrik Grubbström (Grubba) | | }
flags = Pike_sp[2-args].u.integer;
|
44fe36 | 2007-03-26 | Henrik Grubbström (Grubba) | | }
|
912912 | 2007-04-21 | Henrik Grubbström (Grubba) | | if (args > 3) sval = Pike_sp + 3 - args;
|
88d195 | 2007-03-28 | Henrik Grubbström (Grubba) | | if (!(res = low_new_check_call(Pike_sp[-args].u.type,
|
912912 | 2007-04-21 | Henrik Grubbström (Grubba) | | Pike_sp[1-args].u.type, flags, sval))) {
|
44fe36 | 2007-03-26 | Henrik Grubbström (Grubba) | | pop_n_elems(args);
push_undefined();
} else {
pop_n_elems(args);
push_type_value(res);
}
}
static void f___get_return_type(INT32 args)
{
struct pike_type *res;
if (args != 1) {
Pike_error("Bad number of arguments to __get_return_type().\n");
}
if (Pike_sp[-1].type != PIKE_T_TYPE) {
Pike_error("Bad argument 1 to __get_return_type() expected type.\n");
}
if (!(res = new_get_return_type(Pike_sp[-1].u.type, 0))) {
pop_n_elems(args);
push_undefined();
} else {
pop_n_elems(args);
push_type_value(res);
}
}
static void f___get_first_arg_type(INT32 args)
{
struct pike_type *res;
if (args != 1) {
Pike_error("Bad number of arguments to __get_first_arg_type().\n");
}
if (Pike_sp[-1].type != PIKE_T_TYPE) {
Pike_error("Bad argument 1 to __get_first_arg_type() expected type.\n");
}
if (!(res = get_first_arg_type(Pike_sp[-1].u.type, 0))) {
pop_n_elems(args);
push_undefined();
} else {
pop_n_elems(args);
push_type_value(res);
}
}
|
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) | | }
|
e290f3 | 2006-01-27 | Henrik Grubbström (Grubba) | | |
5671ce | 2006-01-26 | Henrik Grubbström (Grubba) | | *!
*! Returns the currently active compilation compatibility handler, or
*! @tt{0@} (zero) if none is active.
*!
*! @note
*! This function should only be used during a call of @[compile()].
*!
*! @seealso
*! @[get_active_error_handler()], @[compile()],
|
e290f3 | 2006-01-27 | Henrik Grubbström (Grubba) | | *! @[master()->get_compilation_handler()], @[CompilationHandler]
|
5671ce | 2006-01-26 | Henrik Grubbström (Grubba) | | */
PMOD_EXPORT void f_get_active_compilation_handler(INT32 args)
{
|
e021fe | 2008-04-14 | Henrik Grubbström (Grubba) | | struct compilation *c = NULL;
if (compilation_program) {
struct pike_frame *compiler_frame = Pike_fp;
while (compiler_frame &&
(compiler_frame->context->prog != compilation_program)) {
compiler_frame = compiler_frame->next;
}
if (compiler_frame) {
c = (struct compilation *)compiler_frame->current_storage;
}
}
|
5671ce | 2006-01-26 | Henrik Grubbström (Grubba) | | pop_n_elems(args);
|
e021fe | 2008-04-14 | Henrik Grubbström (Grubba) | | if (c && c->compat_handler) {
ref_push_object(c->compat_handler);
|
5671ce | 2006-01-26 | Henrik Grubbström (Grubba) | | } else {
push_int(0);
}
}
|
e290f3 | 2006-01-27 | Henrik Grubbström (Grubba) | | |
5671ce | 2006-01-26 | Henrik Grubbström (Grubba) | | *!
*! Returns the currently active compilation error handler
|
e290f3 | 2006-01-27 | Henrik Grubbström (Grubba) | | *! (second argument to @[compile()]), or @tt{0@} (zero) if none
|
5671ce | 2006-01-26 | Henrik Grubbström (Grubba) | | *! is active.
*!
*! @note
*! This function should only be used during a call of @[compile()].
*!
*! @seealso
|
e290f3 | 2006-01-27 | Henrik Grubbström (Grubba) | | *! @[get_active_compilation_handler()], @[compile()], @[CompilationHandler]
|
5671ce | 2006-01-26 | Henrik Grubbström (Grubba) | | */
PMOD_EXPORT void f_get_active_error_handler(INT32 args)
{
|
e021fe | 2008-04-14 | Henrik Grubbström (Grubba) | | struct compilation *c = NULL;
if (compilation_program) {
struct pike_frame *compiler_frame = Pike_fp;
while (compiler_frame &&
(compiler_frame->context->prog != compilation_program)) {
compiler_frame = compiler_frame->next;
}
if (compiler_frame) {
c = (struct compilation *)compiler_frame->current_storage;
}
}
|
5671ce | 2006-01-26 | Henrik Grubbström (Grubba) | | pop_n_elems(args);
|
e021fe | 2008-04-14 | Henrik Grubbström (Grubba) | | if (c && c->handler) {
ref_push_object(c->handler);
|
5671ce | 2006-01-26 | Henrik Grubbström (Grubba) | | } else {
push_int(0);
}
}
|
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)) {
|
885388 | 2008-04-26 | Henrik Grubbström (Grubba) | | struct compilation *c = THIS_COMPILATION;
|
0ee38f | 2002-05-11 | Martin Stjernholm | | struct program_state *state = Pike_compiler;
|
885388 | 2008-04-26 | Henrik Grubbström (Grubba) | |
CHECK_COMPILER();
|
0ee38f | 2002-05-11 | Martin Stjernholm | | if (CDR (n)->token != F_CONSTANT) {
int i;
|
885388 | 2008-04-26 | Henrik Grubbström (Grubba) | | for (i = 0; i < c->compilation_depth; i++, state = state->previous)
|
0ee38f | 2002-05-11 | Martin Stjernholm | | 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;
|
885388 | 2008-04-26 | Henrik Grubbström (Grubba) | | for (i = MINIMUM(level, c->compilation_depth); i;
|
073ccf | 2003-08-04 | Henrik Grubbström (Grubba) | | 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;
|
e021fe | 2008-04-14 | Henrik Grubbström (Grubba) | | struct compilation *c = THIS_COMPILATION;
CHECK_COMPILER();
|
0ee38f | 2002-05-11 | Martin Stjernholm | |
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);
|
384f22 | 2008-08-28 | Henrik Grubbström (Grubba) | | modify_stack_depth(1);
|
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) | | }
|
ba5857 | 2008-07-09 | Henrik Grubbström (Grubba) | | int in_forked_child = 0;
|
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) {
|
ea8487 | 2007-01-15 | Henrik Grubbström (Grubba) | | struct svalue *s =
simple_mapping_string_lookup(get_builtin_constants(), "werror");
if (s) {
apply_svalue(s, args-1);
pop_stack();
|
7f6914 | 2007-01-15 | Henrik Grubbström (Grubba) | | } else {
|
ea8487 | 2007-01-15 | Henrik Grubbström (Grubba) | | fprintf(stderr, "No efun::werror() at exit.\n");
pop_n_elems(args-1);
}
|
d8e90a | 2004-05-09 | Martin Nilsson | | args=1;
}
|
b5ef7d | 2004-01-11 | Martin Nilsson | |
|
ba5857 | 2008-07-09 | Henrik Grubbström (Grubba) | | if (in_forked_child) {
f__exit(args);
}
|
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");
|
d9ed86 | 2005-11-19 | Henrik Grubbström (Grubba) | | get_all_args("_exit", args, "%d", &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
|
ba5857 | 2008-07-09 | Henrik Grubbström (Grubba) | |
|
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) | | {
|
9ef11f | 2006-01-11 | Martin Stjernholm | | if(!args || (Pike_sp[-args].type == T_INT && Pike_sp[-args].u.integer == 0))
|
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
|
24adc7 | 2008-09-26 | Martin Nilsson | | #error No crypt function found and fallback failed.
|
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) | | *!
|
30c061 | 2008-06-29 | Martin Stjernholm | | *! For mappings and multisets, the array might 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
|
30c061 | 2008-06-29 | Martin Stjernholm | | *! is used.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
30c061 | 2008-06-29 | Martin Stjernholm | | *! For other objects an array with all non-protected symbols is
|
b2acc9 | 2004-05-13 | Martin Nilsson | | *! 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:
|
927374 | 2008-05-29 | Henrik Grubbström (Grubba) | | a=object_indices(Pike_sp[-args].u.object, Pike_sp[-args].subtype);
|
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
|
30c061 | 2008-06-29 | Martin Stjernholm | | *! is used.
|
9c1a7b | 2001-01-08 | Henrik Grubbström (Grubba) | | *!
|
30c061 | 2008-06-29 | Martin Stjernholm | | *! For other objects an array with the values of all non-protected
*! symbols is 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:
|
927374 | 2008-05-29 | Henrik Grubbström (Grubba) | | a=object_values(Pike_sp[-args].u.object, Pike_sp[-args].subtype);
|
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) | | {
|
d22ebc | 2008-05-28 | Henrik Grubbström (Grubba) | | if (Pike_sp[-args].subtype) {
struct external_variable_context loc;
loc.o = o;
p = (loc.inherit = p->inherits + Pike_sp[-args].subtype)->prog;
if (p->flags & PROGRAM_USES_PARENT) {
loc.parent_identifier = loc.inherit->parent_identifier;
find_external_context(&loc, 1);
add_ref(loc.o);
pop_n_elems(args);
push_function(loc.o, loc.parent_identifier);
return;
}
} else if((p->flags & PROGRAM_USES_PARENT) &&
|
f3c715 | 2001-04-14 | Fredrik Hübinette (Hubbe) | | 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;
}
|
d22ebc | 2008-05-28 | Henrik Grubbström (Grubba) | | add_ref(p);
pop_n_elems(args);
push_program(p);
return;
|
b1f4eb | 1998-01-13 | Fredrik Hübinette (Hubbe) | | }
|
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;
}
|
2b888e | 2008-01-29 | Henrik Grubbström (Grubba) | | |
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) | | *!
|
2b888e | 2008-01-29 | Henrik Grubbström (Grubba) | | *! @param s
*! String to reverse.
*! @param a
*! Array to reverse.
*! @param i
*! Integer to reverse.
*! @param start
*! Optional start index of the range to reverse.
*! Default: @expr{0@} (zero).
*! @param end
*! Optional end index of the range to reverse.
*! Default for strings: @expr{sizeof(s)-1@}.
*! Default for arrays: @expr{sizeof(a)-1@}.
*! Default for integers: @expr{Pike.get_runtime_info()->int_size - 1@}.
*!
|
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) | | {
|
2b888e | 2008-01-29 | Henrik Grubbström (Grubba) | | struct svalue *sv;
int start = 0, end = -1;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
2b888e | 2008-01-29 | Henrik Grubbström (Grubba) | | get_all_args("reverse", args, "%*.%d%d", &sv, &start, &end);
switch(sv->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;
|
0ede07 | 2008-08-22 | Henrik Grubbström (Grubba) | | struct pike_string *orig = sv->u.string;;
|
2b888e | 2008-01-29 | Henrik Grubbström (Grubba) | | if (start < 0) {
start = 0;
|
0ede07 | 2008-08-22 | Henrik Grubbström (Grubba) | | } else if (start >= orig->len) {
|
2b888e | 2008-01-29 | Henrik Grubbström (Grubba) | |
pop_n_elems(args-1);
break;
}
|
0ede07 | 2008-08-22 | Henrik Grubbström (Grubba) | | if ((end < 0) || (end >= orig->len)) {
end = orig->len;
|
2b888e | 2008-01-29 | Henrik Grubbström (Grubba) | | } else if (end <= start) {
pop_n_elems(args-1);
break;
} else {
end++;
}
|
0ede07 | 2008-08-22 | Henrik Grubbström (Grubba) | | s=begin_wide_shared_string(orig->len, orig->size_shift);
if ((orig->len << orig->size_shift) >= 524288) {
THREADS_ALLOW();
switch(orig->size_shift)
{
case 0:
for(e=0;e<start;e++)
STR0(s)[e]=STR0(orig)[e];
for(;e<end;e++)
STR0(s)[e]=STR0(orig)[end-1-e-start];
for(;e<orig->len;e++)
STR0(s)[e]=STR0(orig)[e];
break;
case 1:
for(e=0;e<start;e++)
STR1(s)[e]=STR1(orig)[e];
for(;e<end;e++)
STR1(s)[e]=STR1(orig)[end-1-e-start];
for(;e<orig->len;e++)
STR1(s)[e]=STR1(orig)[e];
break;
case 2:
for(e=0;e<start;e++)
STR2(s)[e]=STR2(orig)[e];
for(;e<end;e++)
STR2(s)[e]=STR2(orig)[end-1-e-start];
for(;e<orig->len;e++)
STR2(s)[e]=STR2(orig)[e];
break;
}
THREADS_DISALLOW();
} else {
switch(orig->size_shift)
{
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | case 0:
|
2b888e | 2008-01-29 | Henrik Grubbström (Grubba) | | for(e=0;e<start;e++)
|
0ede07 | 2008-08-22 | Henrik Grubbström (Grubba) | | STR0(s)[e]=STR0(orig)[e];
|
2b888e | 2008-01-29 | Henrik Grubbström (Grubba) | | for(;e<end;e++)
|
0ede07 | 2008-08-22 | Henrik Grubbström (Grubba) | | STR0(s)[e]=STR0(orig)[end-1-e-start];
for(;e<orig->len;e++)
STR0(s)[e]=STR0(orig)[e];
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | break;
case 1:
|
2b888e | 2008-01-29 | Henrik Grubbström (Grubba) | | for(e=0;e<start;e++)
|
0ede07 | 2008-08-22 | Henrik Grubbström (Grubba) | | STR1(s)[e]=STR1(orig)[e];
|
2b888e | 2008-01-29 | Henrik Grubbström (Grubba) | | for(;e<end;e++)
|
0ede07 | 2008-08-22 | Henrik Grubbström (Grubba) | | STR1(s)[e]=STR1(orig)[end-1-e-start];
for(;e<orig->len;e++)
STR1(s)[e]=STR1(orig)[e];
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | break;
case 2:
|
2b888e | 2008-01-29 | Henrik Grubbström (Grubba) | | for(e=0;e<start;e++)
|
0ede07 | 2008-08-22 | Henrik Grubbström (Grubba) | | STR2(s)[e]=STR2(orig)[e];
|
2b888e | 2008-01-29 | Henrik Grubbström (Grubba) | | for(;e<end;e++)
|
0ede07 | 2008-08-22 | Henrik Grubbström (Grubba) | | STR2(s)[e]=STR2(orig)[end-1-e-start];
for(;e<orig->len;e++)
STR2(s)[e]=STR2(orig)[e];
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | break;
|
0ede07 | 2008-08-22 | Henrik Grubbström (Grubba) | | }
|
0bc4cf | 1998-10-13 | Fredrik Hübinette (Hubbe) | | }
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:
{
|
2b888e | 2008-01-29 | Henrik Grubbström (Grubba) | |
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | 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:
{
|
2b888e | 2008-01-29 | Henrik Grubbström (Grubba) | | struct array *a = sv->u.array;
a = reverse_array(a, start, (end < 0)?a->size:end);
|
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) | | }
}
|
7e97c3 | 1999-01-21 | Fredrik Hübinette (Hubbe) | |
|
3f268a | 2006-03-09 | Henrik Grubbström (Grubba) | |
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | int find_longest_prefix(char *str,
ptrdiff_t len,
int size_shift,
struct replace_many_tupel *v,
INT32 a,
INT32 b)
|
7e97c3 | 1999-01-21 | Fredrik Hübinette (Hubbe) | | {
|
66096f | 2008-07-04 | Martin Stjernholm | | INT32 c, match=-1, match_len=-1;
|
93b720 | 2000-08-14 | Henrik Grubbström (Grubba) | | 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;
|
3f268a | 2006-03-09 | Henrik Grubbström (Grubba) | |
|
24e45c | 2006-03-11 | Henrik Grubbström (Grubba) | | if (v[c].ind->len <= match_len) {
b = c;
continue;
}
|
18d935 | 2006-03-10 | Henrik Grubbström (Grubba) | | tmp=generic_find_binary_prefix(v[c].ind->str,
v[c].ind->len,
v[c].ind->size_shift,
str,
MINIMUM(len,v[c].ind->len),
size_shift);
|
d8fc6f | 2006-03-10 | Henrik Grubbström (Grubba) | |
|
7e97c3 | 1999-01-21 | Fredrik Hübinette (Hubbe) | | if(tmp<0)
{
|
18d935 | 2006-03-10 | Henrik Grubbström (Grubba) | |
if (~tmp > match_len) {
|
3f268a | 2006-03-09 | Henrik Grubbström (Grubba) | |
int d = c;
|
18d935 | 2006-03-10 | Henrik Grubbström (Grubba) | | tmp = -tmp;
while (((d = v[d].prefix) >= a) && (v[d].ind->len > match_len)) {
if (v[d].ind->len < tmp) {
|
3f268a | 2006-03-09 | Henrik Grubbström (Grubba) | |
match = d;
match_len = v[d].ind->len;
break;
}
|
7e97c3 | 1999-01-21 | Fredrik Hübinette (Hubbe) | | }
}
|
3f268a | 2006-03-09 | Henrik Grubbström (Grubba) | | a = c+1;
|
7e97c3 | 1999-01-21 | Fredrik Hübinette (Hubbe) | | }
else if(tmp>0)
{
b=c;
|
28ab94 | 2006-03-13 | Henrik Grubbström (Grubba) | | while ((c = v[b].prefix) > a) {
if (v[c].ind->len < tmp) {
if (v[c].ind->len > match_len) {
match = c;
match_len = v[c].ind->len;
}
a = c+1;
break;
}
b = c;
}
|
7e97c3 | 1999-01-21 | Fredrik Hübinette (Hubbe) | | }
else
{
|
24e45c | 2006-03-11 | Henrik Grubbström (Grubba) | | if (!v[c].is_prefix) {
return c;
}
|
7e97c3 | 1999-01-21 | Fredrik Hübinette (Hubbe) | | a=c+1;
match=c;
|
3f268a | 2006-03-09 | Henrik Grubbström (Grubba) | | match_len = v[c].ind->len;
|
7e97c3 | 1999-01-21 | Fredrik Hübinette (Hubbe) | | }
}
return match;
}
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | static int replace_sortfun(struct replace_many_tupel *a,
struct replace_many_tupel *b)
|
70da5a | 2001-06-27 | Henrik Grubbström (Grubba) | | {
return DO_NOT_WARN((int)my_quick_strcmp(a->ind, b->ind));
}
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | void free_replace_many_context(struct replace_many_context *ctx)
|
0fe670 | 2004-04-30 | Martin Stjernholm | | {
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | if (ctx->v) {
if (ctx->flags) {
int e = ctx->num;
while (e--) {
free_string(ctx->v[e].ind);
free_string(ctx->v[e].val);
}
if (ctx->empty_repl) {
free_string(ctx->empty_repl);
}
}
free ((char *) ctx->v);
ctx->v = NULL;
}
|
0fe670 | 2004-04-30 | Martin Stjernholm | | }
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | void compile_replace_many(struct replace_many_context *ctx,
struct array *from,
struct array *to,
int reference_strings)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
|
3f268a | 2006-03-09 | Henrik Grubbström (Grubba) | | INT32 e, num;
|
a8cdf9 | 2004-04-29 | Martin Nilsson | |
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | ctx->v = NULL;
ctx->empty_repl = NULL;
|
7f0f34 | 2006-03-09 | Henrik Grubbström (Grubba) | |
|
652b67 | 2008-05-01 | Martin Stjernholm | | #if INT32_MAX >= LONG_MAX
|
99e4f0 | 2004-10-15 | Henrik Grubbström (Grubba) | |
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | if (from->size > (ptrdiff_t)(LONG_MAX/sizeof(struct replace_many_tupel)))
|
99e4f0 | 2004-10-15 | Henrik Grubbström (Grubba) | | Pike_error("Array too large (size %" PRINTPTRDIFFT "d "
|
bd5e8b | 2004-10-16 | Marcus Agehall | | "exceeds %" PRINTSIZET "u).\n",
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | from->size,
(size_t)(LONG_MAX/sizeof(struct replace_many_tupel)));
|
652b67 | 2008-05-01 | Martin Stjernholm | | #endif
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | ctx->v = (struct replace_many_tupel *)
xalloc(sizeof(struct replace_many_tupel) * from->size);
|
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) | | {
|
24e45c | 2006-03-11 | Henrik Grubbström (Grubba) | | if (!ITEM(from)[e].u.string->len) {
if (ITEM(to)[e].u.string->len) {
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | ctx->empty_repl = ITEM(to)[e].u.string;
|
24e45c | 2006-03-11 | Henrik Grubbström (Grubba) | | }
continue;
}
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | ctx->v[num].ind=ITEM(from)[e].u.string;
ctx->v[num].val=ITEM(to)[e].u.string;
ctx->v[num].prefix=-2;
ctx->v[num].is_prefix=0;
|
3e625c | 1998-10-11 | Fredrik Hübinette (Hubbe) | | num++;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | ctx->flags = reference_strings;
if (reference_strings) {
if (ctx->empty_repl) add_ref(ctx->empty_repl);
for (e = 0; e < num; e++) {
add_ref(ctx->v[e].ind);
add_ref(ctx->v[e].val);
}
}
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | fsort((char *)ctx->v, num, sizeof(struct replace_many_tupel),
(fsortfun)replace_sortfun);
MEMSET(ctx->set_start, 0, sizeof(ctx->set_start));
MEMSET(ctx->set_end, 0, sizeof(ctx->set_end));
ctx->other_start = num;
|
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) | | {
|
24e45c | 2006-03-11 | Henrik Grubbström (Grubba) | | {
p_wchar2 x;
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | if (ctx->v[num-1-e].ind->len) {
x=index_shared_string(ctx->v[num-1-e].ind,0);
|
7489bb | 2008-06-29 | Martin Stjernholm | | if ((size_t) x < NELEM(ctx->set_start))
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | ctx->set_start[x]=num-e-1;
|
24e45c | 2006-03-11 | Henrik Grubbström (Grubba) | | else
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | ctx->other_start = num-e-1;
|
24e45c | 2006-03-11 | Henrik Grubbström (Grubba) | | }
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | if (ctx->v[e].ind->len) {
x=index_shared_string(ctx->v[e].ind,0);
|
7489bb | 2008-06-29 | Martin Stjernholm | | if ((size_t) x < NELEM(ctx->set_end))
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | ctx->set_end[x]=e+1;
|
24e45c | 2006-03-11 | Henrik Grubbström (Grubba) | | }
}
{
INT32 prefix = e-1;
if (prefix >= 0) {
ptrdiff_t tmp =
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | generic_find_binary_prefix(ctx->v[e].ind->str,
ctx->v[e].ind->len,
ctx->v[e].ind->size_shift,
ctx->v[prefix].ind->str,
ctx->v[prefix].ind->len,
ctx->v[prefix].ind->size_shift);
|
24e45c | 2006-03-11 | Henrik Grubbström (Grubba) | | if (!tmp) {
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | |
|
24e45c | 2006-03-11 | Henrik Grubbström (Grubba) | | } if (tmp == 1) {
prefix = -1;
} else {
|
d8fc6f | 2006-03-10 | Henrik Grubbström (Grubba) | | #ifdef PIKE_DEBUG
|
24e45c | 2006-03-11 | Henrik Grubbström (Grubba) | | if (tmp < 0) Pike_fatal("Sorting with replace_sortfunc failed.\n");
|
d8fc6f | 2006-03-10 | Henrik Grubbström (Grubba) | | #endif
|
18d935 | 2006-03-10 | Henrik Grubbström (Grubba) | |
|
24e45c | 2006-03-11 | Henrik Grubbström (Grubba) | |
while (prefix >= 0) {
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | if (ctx->v[prefix].ind->len < tmp) break;
prefix = ctx->v[prefix].prefix;
|
24e45c | 2006-03-11 | Henrik Grubbström (Grubba) | | }
}
if (prefix >= 0) {
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | ctx->v[prefix].is_prefix = 1;
|
d8fc6f | 2006-03-10 | Henrik Grubbström (Grubba) | | }
|
3f268a | 2006-03-09 | Henrik Grubbström (Grubba) | | }
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | ctx->v[e].prefix = prefix;
|
3f268a | 2006-03-09 | Henrik Grubbström (Grubba) | | }
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | ctx->num = num;
}
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | struct pike_string *execute_replace_many(struct replace_many_context *ctx,
struct pike_string *str)
{
struct string_builder ret;
ONERROR uwp;
init_string_builder(&ret, str->size_shift);
SET_ONERROR(uwp, free_string_builder, &ret);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
2a7ae6 | 2006-03-10 | Henrik Grubbström (Grubba) | |
|
d8fc6f | 2006-03-10 | Henrik Grubbström (Grubba) | |
|
007b46 | 2006-03-11 | Henrik Grubbström (Grubba) | | switch (str->size_shift) {
#define CASE(SZ) \
case (SZ): \
{ \
PIKE_CONCAT(p_wchar, SZ) *ss = \
PIKE_CONCAT(STR, SZ)(str); \
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | ptrdiff_t e, s, length = str->len; \
|
007b46 | 2006-03-11 | Henrik Grubbström (Grubba) | | for(e = s = 0;length > 0;) \
{ \
INT32 a, b; \
p_wchar2 ch; \
\
ch = ss[s]; \
if(OPT_IS_CHAR(ch)) { \
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | b = ctx->set_end[ch]; \
|
007b46 | 2006-03-11 | Henrik Grubbström (Grubba) | | if (!b) \
goto PIKE_CONCAT(next_char, SZ); \
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | a = ctx->set_start[ch]; \
|
007b46 | 2006-03-11 | Henrik Grubbström (Grubba) | | } else { \
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | b = ctx->num; \
a = ctx->other_start; \
|
007b46 | 2006-03-11 | Henrik Grubbström (Grubba) | | } \
if (a >= b) \
goto PIKE_CONCAT(next_char, SZ); \
\
a = find_longest_prefix((char *)(ss + s), \
length, \
SZ, \
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | ctx->v, a, b); \
|
007b46 | 2006-03-11 | Henrik Grubbström (Grubba) | | \
if(a >= 0) \
{ \
if (s != e) { \
PIKE_CONCAT(string_builder_binary_strcat, \
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | SZ)(&ret, ss+e, s-e); \
|
007b46 | 2006-03-11 | Henrik Grubbström (Grubba) | | } \
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | ch = ctx->v[a].ind->len; \
|
007b46 | 2006-03-11 | Henrik Grubbström (Grubba) | | s += ch; \
length -= ch; \
e = s; \
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | string_builder_shared_strcat(&ret, \
ctx->v[a].val); \
if (ctx->empty_repl && length) { \
|
007b46 | 2006-03-11 | Henrik Grubbström (Grubba) | | /* Append the replacement for \
* the empty string too. */ \
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | string_builder_shared_strcat(&ret, \
ctx->empty_repl); \
|
007b46 | 2006-03-11 | Henrik Grubbström (Grubba) | | } \
continue; \
} \
\
PIKE_CONCAT(next_char, SZ): \
s++; \
length--; \
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | if (ctx->empty_repl && length) { \
|
007b46 | 2006-03-11 | Henrik Grubbström (Grubba) | | /* We have a replace with the empty string, \
* and we're not on the last character \
* in the source string. \
*/ \
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | string_builder_putchar(&ret, ch); \
string_builder_shared_strcat(&ret, \
ctx->empty_repl); \
|
007b46 | 2006-03-11 | Henrik Grubbström (Grubba) | | e = s; \
} \
} \
if (e < s) { \
PIKE_CONCAT(string_builder_binary_strcat, SZ) \
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | (&ret, ss+e, s-e); \
|
007b46 | 2006-03-11 | Henrik Grubbström (Grubba) | | } \
} \
break
#define OPT_IS_CHAR(X) 1
CASE(0);
#undef OPT_IS_CHAR
|
7489bb | 2008-06-29 | Martin Stjernholm | | #define OPT_IS_CHAR(X) ((size_t) (X) < NELEM(ctx->set_end))
|
007b46 | 2006-03-11 | Henrik Grubbström (Grubba) | | CASE(1);
CASE(2);
#undef OPT_IS_CHAR
|
d8fc6f | 2006-03-10 | Henrik Grubbström (Grubba) | | }
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | UNSET_ONERROR(uwp);
return finish_string_builder(&ret);
}
static struct pike_string *replace_many(struct pike_string *str,
struct array *from,
struct array *to)
{
struct replace_many_context ctx;
ONERROR uwp;
struct pike_string *ret;
if(from->size != to->size)
Pike_error("Replace must have equal-sized from and to arrays.\n");
if(!from->size)
{
reference_shared_string(str);
return str;
}
if( (from->type_field & ~BIT_STRING) &&
(array_fix_type_field(from) & ~BIT_STRING) )
Pike_error("replace: from array not array(string).\n");
if( (to->type_field & ~BIT_STRING) &&
(array_fix_type_field(to) & ~BIT_STRING) )
Pike_error("replace: to array not array(string).\n");
if (from->size == 1) {
return string_replace(str, from->item[0].u.string, to->item[0].u.string);
}
compile_replace_many(&ctx, from, to, 0);
SET_ONERROR(uwp, free_replace_many_context, &ctx);
ret = execute_replace_many(&ctx, str);
CALL_AND_UNSET_ONERROR(uwp);
return ret;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
ed1cc3 | 2001-01-09 | Henrik Grubbström (Grubba) | | |
7f0f34 | 2006-03-09 | Henrik Grubbström (Grubba) | | *! @decl string replace(string s, array(string) from, string to)
|
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);
|
7f0f34 | 2006-03-09 | Henrik Grubbström (Grubba) | | } else if (args > 3) {
pop_n_elems(args-3);
args = 3;
|
f7a446 | 2000-10-31 | Mirar (Pontus Hagland) | | }
|
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:
|
7f0f34 | 2006-03-09 | Henrik Grubbström (Grubba) | | if (Pike_sp[2-args].type == T_STRING) {
push_int(Pike_sp[1-args].u.array->size);
stack_swap();
f_allocate(2);
} else if(Pike_sp[2-args].type != T_ARRAY)
SIMPLE_BAD_ARG_ERROR("replace", 3, "array|string");
|
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;
|
5527f7 | 2008-01-13 | Henrik Grubbström (Grubba) | | if (!arg0) return NULL;
|
637767 | 2001-06-01 | Henrik Grubbström (Grubba) | | MAKE_CONSTANT_TYPE(array_zero, tArr(tZero));
MAKE_CONSTANT_TYPE(mapping_zero, tMap(tZero, tZero));
|
5527f7 | 2008-01-13 | Henrik Grubbström (Grubba) | | if ((pike_types_le(array_zero, (*arg0)->type) ||
|
637767 | 2001-06-01 | Henrik Grubbström (Grubba) | | 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);
|
a842b2 | 2006-03-11 | Henrik Grubbström (Grubba) | | struct program *replace_compiler = NULL;
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | |
|
dc384d | 2006-03-11 | Henrik Grubbström (Grubba) | | if (arg1 && ((pike_types_le((*arg1)->type, array_type_string) &&
arg2 &&
(pike_types_le((*arg2)->type, array_type_string) ||
pike_types_le((*arg2)->type, string_type_string))) ||
(pike_types_le((*arg1)->type, mapping_type_string)))) {
|
a842b2 | 2006-03-11 | Henrik Grubbström (Grubba) | | extern struct program *multi_string_replace_program;
replace_compiler = multi_string_replace_program;
} else if (arg1 && pike_types_le((*arg1)->type, string_type_string) &&
arg2 && pike_types_le((*arg2)->type, string_type_string)) {
extern struct program *single_string_replace_program;
replace_compiler = single_string_replace_program;
}
if (replace_compiler && !is_const(*arg0) && is_const(*arg1) &&
(!arg2 || is_const(*arg2))) {
struct svalue *save_sp = Pike_sp;
JMP_BUF tmp;
if (SETJMP(tmp)) {
|
1ab4ac | 2008-01-26 | Martin Stjernholm | | struct svalue thrown;
|
a842b2 | 2006-03-11 | Henrik Grubbström (Grubba) | | struct pike_string *s;
|
1ab4ac | 2008-01-26 | Martin Stjernholm | | move_svalue (&thrown, &throw_value);
mark_free_svalue (&throw_value);
|
a842b2 | 2006-03-11 | Henrik Grubbström (Grubba) | | 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);
} else {
INT16 lfun;
struct object *replace_obj;
node *ret = NULL;
INT32 args;
args = eval_low(*arg1, 1);
|
2e45e2 | 2008-01-23 | Henrik Grubbström (Grubba) | | if (args != 1) goto failed;
|
a842b2 | 2006-03-11 | Henrik Grubbström (Grubba) | | if (arg2) {
|
1759c4 | 2008-01-21 | Henrik Grubbström (Grubba) | | args += eval_low(*arg2, 1);
if (!args) {
|
2e45e2 | 2008-01-23 | Henrik Grubbström (Grubba) | | goto failed;
|
1759c4 | 2008-01-21 | Henrik Grubbström (Grubba) | | }
|
a842b2 | 2006-03-11 | Henrik Grubbström (Grubba) | | }
|
cbd1f2 | 2001-06-29 | Henrik Grubbström (Grubba) | |
|
a842b2 | 2006-03-11 | Henrik Grubbström (Grubba) | | replace_obj = clone_object(replace_compiler, args);
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | |
|
a842b2 | 2006-03-11 | 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);
);
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | |
|
a842b2 | 2006-03-11 | Henrik Grubbström (Grubba) | | UNSETJMP(tmp);
pop_n_elems(Pike_sp - save_sp);
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | |
|
a842b2 | 2006-03-11 | Henrik Grubbström (Grubba) | | free_type(array_zero);
free_type(mapping_zero);
return ret;
|
fed7de | 2001-06-28 | Henrik Grubbström (Grubba) | | }
}
|
2e45e2 | 2008-01-23 | Henrik Grubbström (Grubba) | | failed:
|
a842b2 | 2006-03-11 | Henrik Grubbström (Grubba) | | UNSETJMP(tmp);
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;
}
|
e290f3 | 2006-01-27 | 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
|
e290f3 | 2006-01-27 | Henrik Grubbström (Grubba) | | *! @[compile_string()], @[compile_file()], @[cpp()], @[master()],
|
71d390 | 2008-06-01 | Henrik Grubbström (Grubba) | | *! @[CompilationHandler], @[DefaultCompilerEnvironment]
|
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) | | {
|
41c915 | 2008-04-18 | Henrik Grubbström (Grubba) | | apply_low(compilation_environment, CE_COMPILE_FUN_NUM, args);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
|
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
|
371406 | 2010-02-18 | Stephen R. van den Berg | | static void delaysleep(double delay, unsigned do_abort_on_signal,
unsigned do_microsleep)
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | {
|
371406 | 2010-02-18 | Stephen R. van den Berg | | #define POLL_SLEEP_LIMIT 0.02
|
bebcca | 2001-11-08 | Fredrik Hübinette (Hubbe) | | #ifdef HAVE_GETHRTIME
hrtime_t t0,tv;
#else
struct timeval t0,tv;
#endif
|
371406 | 2010-02-18 | Stephen R. van den Berg | |
if(delay == 0.0)
{
check_threads_etc();
return;
}
if(sizeof(FLOAT_TYPE)<sizeof(double))
delay += FLT_EPSILON*5;
|
bebcca | 2001-11-08 | Fredrik Hübinette (Hubbe) | |
#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; \
|
371406 | 2010-02-18 | Stephen R. van den Berg | | left = delay - TIME_ELAPSED; \
if (do_microsleep) left-=POLL_SLEEP_LIMIT;
if (!do_microsleep || delay>POLL_SLEEP_LIMIT)
{
for(;;)
{
double left;
THREADS_ALLOW();
FIX_LEFT();
if(left>0.0)
sysleep(left);
THREADS_DISALLOW();
if(do_abort_on_signal)
return;
FIX_LEFT();
if(left<=0.0)
break;
check_threads_etc();
}
}
if (do_microsleep)
while (delay>TIME_ELAPSED)
GET_TIME_ELAPSED;
}
PMOD_EXPORT void f_sleep(INT32 args)
{
double delay=0.0;
unsigned do_abort_on_signal;
|
bebcca | 2001-11-08 | Fredrik Hübinette (Hubbe) | |
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;
}
|
371406 | 2010-02-18 | Stephen R. van den Berg | | do_abort_on_signal = delay!=0.0 && args > 1
&& !UNSAFE_IS_ZERO(Pike_sp + 1-args);
|
bebcca | 2001-11-08 | Fredrik Hübinette (Hubbe) | | pop_n_elems(args);
|
371406 | 2010-02-18 | Stephen R. van den Berg | | delaysleep(delay, do_abort_on_signal, 0);
|
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) | | double delay=0.0;
|
371406 | 2010-02-18 | Stephen R. van den Berg | | unsigned do_abort_on_signal;
|
0dbb5c | 2000-02-22 | Fredrik Hübinette (Hubbe) | |
|
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) | |
|
371406 | 2010-02-18 | Stephen R. van den Berg | | do_abort_on_signal = delay!=0.0 && args > 1
&& !UNSAFE_IS_ZERO(Pike_sp + 1-args);
|
838017 | 1999-12-06 | Mirar (Pontus Hagland) | | pop_n_elems(args);
|
371406 | 2010-02-18 | Stephen R. van den Berg | | delaysleep(delay, do_abort_on_signal, !do_abort_on_signal && delay<10);
|
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) | |
|
e00952 | 2007-11-18 | Martin Nilsson | |
PMOD_EXPORT void f_undefinedp(INT32 args)
{
if( args<1 )
SIMPLE_TOO_FEW_ARGS_ERROR("undefinedp", 1);
f_zero_type(args);
Pike_sp[-1].u.integer = ( Pike_sp[-1].u.integer == NUMBER_UNDEFINED);
}
PMOD_EXPORT void f_destructedp(INT32 args)
{
if( args<1 )
SIMPLE_TOO_FEW_ARGS_ERROR("destructedp", 1);
f_zero_type(args);
Pike_sp[-1].u.integer = ( Pike_sp[-1].u.integer == NUMBER_DESTRUCTED);
}
|
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;
}
|
786b96 | 2009-06-23 | Henrik Grubbström (Grubba) | | |
c511aa | 2006-01-20 | Henrik Grubbström (Grubba) | | *!
*! Dumps the internal tables for the program @[p] on stderr.
|
786b96 | 2009-06-23 | Henrik Grubbström (Grubba) | | *!
*! @param p
*! Program to dump.
*!
*! @param indent
*! Number of spaces to indent the output.
*!
*! @note
*! In Pike 7.8.308 and earlier @[indent] wasn't supported.
|
c511aa | 2006-01-20 | Henrik Grubbström (Grubba) | | */
void f__dump_program_tables(INT32 args)
{
struct program *p;
|
786b96 | 2009-06-23 | Henrik Grubbström (Grubba) | | int indent = 0;
|
c511aa | 2006-01-20 | Henrik Grubbström (Grubba) | |
ASSERT_SECURITY_ROOT("_dump_program_tables");
|
786b96 | 2009-06-23 | Henrik Grubbström (Grubba) | | get_all_args("_dump_program_tables", args, "%p.%d", &p, &indent);
|
c511aa | 2006-01-20 | Henrik Grubbström (Grubba) | |
|
786b96 | 2009-06-23 | Henrik Grubbström (Grubba) | | dump_program_tables(p, indent);
|
c511aa | 2006-01-20 | Henrik Grubbström (Grubba) | | pop_n_elems(args);
}
|
3dba60 | 2001-01-11 | Henrik Grubbström (Grubba) | |
|
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
|
1bf419 | 2006-07-02 | Martin Stjernholm | | #if defined (HAVE_GMTIME) || defined (HAVE_GMTIME_R) || defined (HAVE_GMTIME_S)
|
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 | | {
|
1bf419 | 2006-07-02 | Martin Stjernholm | | #if defined (HAVE_GMTIME_R) || defined (HAVE_GMTIME_S)
struct tm tm_s;
#endif
|
fe9150 | 1998-07-26 | Peter J. Holzer | | struct tm *tm;
|
14f689 | 2008-04-22 | Martin Stjernholm | | LONGEST tt;
|
fe9150 | 1998-07-26 | Peter J. Holzer | | time_t t;
|
14f689 | 2008-04-22 | Martin Stjernholm | | get_all_args("gmtime", args, "%l", &tt);
#if SIZEOF_TIME_T < SIZEOF_LONGEST
if (tt > MAX_TIME_T || tt < MIN_TIME_T)
SIMPLE_ARG_ERROR ("gmtime", 1, "Timestamp outside valid range.");
#endif
t = (time_t) tt;
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | |
|
1bf419 | 2006-07-02 | Martin Stjernholm | | #ifdef HAVE_GMTIME_R
tm = gmtime_r (&t, &tm_s);
#elif defined (HAVE_GMTIME_S)
|
8e71e5 | 2008-06-25 | Martin Stjernholm | | if (!gmtime_s (&tm_s, &t)) tm = &tm_s; else tm = NULL;
|
1bf419 | 2006-07-02 | Martin Stjernholm | | #else
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | | tm = gmtime(&t);
|
1bf419 | 2006-07-02 | Martin Stjernholm | | #endif
|
f917a3 | 2002-10-03 | Martin Stjernholm | | if (!tm) Pike_error ("gmtime() on this system cannot handle "
|
8e71e5 | 2008-06-25 | Martin Stjernholm | | "the timestamp %"PRINTLONGEST"d.\n", (LONGEST) 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;
|
14f689 | 2008-04-22 | Martin Stjernholm | | LONGEST tt;
|
fe9150 | 1998-07-26 | Peter J. Holzer | | time_t t;
|
14f689 | 2008-04-22 | Martin Stjernholm | | get_all_args("localtime", args, "%l", &tt);
#if SIZEOF_TIME_T < SIZEOF_LONGEST
if (tt > MAX_TIME_T || tt < MIN_TIME_T)
|
771209 | 2008-04-23 | Martin Stjernholm | | SIMPLE_ARG_ERROR ("localtime", 1, "Timestamp outside valid range.");
|
14f689 | 2008-04-22 | Martin Stjernholm | | #endif
t = (time_t) tt;
|
d0d01b | 1999-03-20 | Henrik Grubbström (Grubba) | |
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)
|
778568 | 2007-03-29 | Martin Stjernholm | |
#define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
static const int mon_lengths[2][12] = {
{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
{31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}
};
static void normalize_date (struct tm *t)
{
int q, year, mon, mday, leap;
q = t->tm_mon / 12;
if (t->tm_mon < 0) q--;
t->tm_mon -= q * 12;
t->tm_year += q;
year = t->tm_year + 1900;
leap = isleap (year);
mon = t->tm_mon;
mday = t->tm_mday;
if (mday > 0) {
int mon_len = mon_lengths[leap][mon];
if (mday <= mon_len) return;
do {
mday -= mon_len;
if (++mon == 12) mon = 0, year++, leap = isleap (year);
} while (mday > (mon_len = mon_lengths[leap][mon]));
}
else
do {
if (mon == 0) mon = 11, year--, leap = isleap (year);
else mon--;
mday += mon_lengths[leap][mon];
} while (mday < 1);
t->tm_year = year - 1900;
t->tm_mon = mon;
t->tm_mday = mday;
}
#define CHECKED_DIFF_MULT(RES, A, B, MULT, OVERFLOW) do { \
RES = (A - B) * (MULT); \
if ((A > B) != (RES > 0)) {OVERFLOW;} \
} while (0)
#define CHECKED_ADD(ACC, DIFF, OVERFLOW) do { \
time_t res_ = ACC + DIFF; \
if ((ACC > 0) == (DIFF > 0) && (ACC > 0) != (res_ > 0)) \
{OVERFLOW;} \
else \
ACC = res_; \
} while (0)
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | |
static time_t my_tm_diff(const struct tm *t1, const struct tm *t2)
{
|
778568 | 2007-03-29 | Martin Stjernholm | | time_t base, diff;
|
aac1c4 | 2004-12-22 | Henrik Grubbström (Grubba) | |
if (!t2) return -1;
|
778568 | 2007-03-29 | Martin Stjernholm | | CHECKED_DIFF_MULT (base, t1->tm_year, t2->tm_year, 60*60*24*31*12,
return base < 0 ? MAX_TIME_T : MIN_TIME_T);
|
86d9aa | 2004-12-13 | Martin Stjernholm | |
|
778568 | 2007-03-29 | Martin Stjernholm | |
diff =
(t1->tm_mon - t2->tm_mon) * (60*60*24*31) +
(t1->tm_mday - t2->tm_mday) * (60*60*24) +
(t1->tm_hour - t2->tm_hour) * (60*60) +
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | (t1->tm_min - t2->tm_min) * 60 +
(t1->tm_sec - t2->tm_sec);
|
86d9aa | 2004-12-13 | Martin Stjernholm | |
|
778568 | 2007-03-29 | Martin Stjernholm | | CHECKED_ADD (base, diff,
return diff < 0 ? MIN_TIME_T : MAX_TIME_T);
|
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) | | {
|
778568 | 2007-03-29 | Martin Stjernholm | | struct tm norm_tm = *target_tm;
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | time_t current_ts = 0;
|
778568 | 2007-03-29 | Martin Stjernholm | | time_t displacement;
|
86d9aa | 2004-12-13 | Martin Stjernholm | | time_t diff_ts, old_diff_ts = 0;
int loop_cnt, tried_dst_displacement = 0;
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | |
|
778568 | 2007-03-29 | Martin Stjernholm | | #ifdef DEBUG_MY_TIME_INVERSE
fprintf (stderr, "target: y %d m %d d %d h %d m %d isdst %d\n",
target_tm->tm_year, target_tm->tm_mon, target_tm->tm_mday,
target_tm->tm_hour, target_tm->tm_min, target_tm->tm_isdst);
#endif
displacement = norm_tm.tm_sec;
norm_tm.tm_sec = 0;
if (norm_tm.tm_min < 0 || norm_tm.tm_min >= 60) {
time_t d;
CHECKED_DIFF_MULT (d, norm_tm.tm_min, 0, 60, return 0);
CHECKED_ADD (displacement, d, return 0);
norm_tm.tm_min = 0;
}
if (norm_tm.tm_hour < 0 || norm_tm.tm_hour >= 60) {
time_t d;
CHECKED_DIFF_MULT (d, norm_tm.tm_hour, 0, 60*60, return 0);
CHECKED_ADD (displacement, d, return 0);
norm_tm.tm_hour = 0;
}
normalize_date (&norm_tm);
#ifdef DEBUG_MY_TIME_INVERSE
fprintf (stderr, "normalized: y %d m %d d %d h %d m %d isdst %d\n"
"displacement: %ld\n",
norm_tm.tm_year, norm_tm.tm_mon, norm_tm.tm_mday,
norm_tm.tm_hour, norm_tm.tm_min, norm_tm.tm_isdst,
(long) displacement);
#endif
|
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) {
|
778568 | 2007-03-29 | Martin Stjernholm | | struct 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);
#endif
diff_ts = my_tm_diff (&norm_tm, current_tm);
#ifdef DEBUG_MY_TIME_INVERSE
fprintf (stderr, "diff: %ld\n", (long) diff_ts);
#endif
|
86d9aa | 2004-12-13 | Martin Stjernholm | |
|
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) {
|
778568 | 2007-03-29 | Martin Stjernholm | | |
86d9aa | 2004-12-13 | Martin Stjernholm | | * DST we should check if we can return an alternative in the
* same DST zone, to cope with the overlapping DST adjustment at
* fall. */
|
778568 | 2007-03-29 | Martin Stjernholm | | if (norm_tm.tm_isdst >= 0 &&
norm_tm.tm_isdst != current_tm->tm_isdst &&
|
86d9aa | 2004-12-13 | Martin Stjernholm | | !tried_dst_displacement) {
|
778568 | 2007-03-29 | Martin Stjernholm | | if (norm_tm.tm_isdst)
|
86d9aa | 2004-12-13 | Martin Stjernholm | | 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) {
|
778568 | 2007-03-29 | Martin Stjernholm | |
|
86d9aa | 2004-12-13 | Martin Stjernholm | | #ifdef DEBUG_MY_TIME_INVERSE
|
778568 | 2007-03-29 | Martin Stjernholm | | fprintf (stderr, "oscillation detected: %ld <-> %ld\n",
(long) old_diff_ts, (long) diff_ts);
|
86d9aa | 2004-12-13 | Martin Stjernholm | | #endif
|
778568 | 2007-03-29 | Martin Stjernholm | | return 0;
|
86d9aa | 2004-12-13 | Martin Stjernholm | | }
|
778568 | 2007-03-29 | Martin Stjernholm | |
CHECKED_ADD (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
return 0;
});
|
a7c4d9 | 2004-01-30 | Henrik Grubbström (Grubba) | | }
|
86d9aa | 2004-12-13 | Martin Stjernholm | |
|
778568 | 2007-03-29 | Martin Stjernholm | | CHECKED_ADD (current_ts, displacement, return 0);
|
86d9aa | 2004-12-13 | Martin Stjernholm | | *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 */
|
|