quakeforge/libs/gib/gib_builtin.c

942 lines
21 KiB
C
Raw Normal View History

/*
#FILENAME#
#DESCRIPTION#
Copyright (C) 2002 #AUTHOR#
Author: #AUTHOR#
Date: #DATE#
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
2003-02-14 22:42:11 +00:00
static __attribute__ ((unused))
const char rcsid[] =
"$Id$";
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
2002-08-27 23:25:52 +00:00
#include <sys/types.h>
#include <dirent.h>
#include <fnmatch.h>
#include <errno.h>
#include "QF/cvar.h"
2002-08-27 23:25:52 +00:00
#include "QF/quakeio.h"
#include "QF/quakefs.h"
#include "QF/zone.h"
#include "QF/va.h"
#include "QF/sys.h"
#include "QF/cmd.h"
#include "QF/cbuf.h"
#include "QF/hash.h"
#include "QF/dstring.h"
#include "QF/gib_parse.h"
#include "QF/gib_execute.h"
#include "QF/gib_builtin.h"
#include "QF/gib_buffer.h"
#include "QF/gib_function.h"
#include "QF/gib_vars.h"
#include "QF/gib_regex.h"
#include "QF/gib_thread.h"
#include "regex.h"
2003-02-14 22:42:11 +00:00
char gib_null_string[] = "";
2003-02-14 22:42:11 +00:00
hashtab_t *gib_builtins;
/*
Hashtable callbacks
*/
2003-02-14 22:42:11 +00:00
static const char *
GIB_Builtin_Get_Key (void *ele, void *ptr)
{
2003-02-14 22:42:11 +00:00
return ((gib_builtin_t *) ele)->name->str;
}
static void
GIB_Builtin_Free (void *ele, void *ptr)
{
gib_builtin_t *b;
2003-02-14 22:42:11 +00:00
b = (gib_builtin_t *) ele;
dstring_delete (b->name);
free (b);
}
/*
GIB_Builtin_Add
Registers a new builtin GIB command.
*/
void
GIB_Builtin_Add (const char *name, void (*func) (void))
{
gib_builtin_t *new;
2003-02-14 22:42:11 +00:00
if (!gib_builtins)
2003-02-14 22:42:11 +00:00
gib_builtins =
Hash_NewTable (1024, GIB_Builtin_Get_Key, GIB_Builtin_Free, 0);
new = calloc (1, sizeof (gib_builtin_t));
new->func = func;
2003-02-14 22:42:11 +00:00
new->name = dstring_newstr ();
dstring_appendstr (new->name, name);
Hash_Add (gib_builtins, new);
}
/*
GIB_Builtin_Find
Looks up the builtin name in the builtin hash,
returning a pointer to the struct on success,
zero otherwise.
*/
gib_builtin_t *
GIB_Builtin_Find (const char *name)
{
if (!gib_builtins)
return 0;
return (gib_builtin_t *) Hash_Find (gib_builtins, name);
}
dstring_t *
GIB_Return (const char *str)
{
2003-02-14 22:42:11 +00:00
dstring_t *dstr;
if (GIB_DATA (cbuf_active)->waitret) {
dstr = GIB_Buffer_Dsarray_Get (cbuf_active);
dstring_clearstr (dstr);
2003-02-14 22:42:11 +00:00
if (!str)
return dstr;
else
dstring_appendstr (dstr, str);
}
return 0;
}
void
GIB_Error (const char *type, const char *fmt, ...)
{
2003-02-14 22:42:11 +00:00
va_list args;
va_start (args, fmt);
GIB_Buffer_Error (cbuf_active, type, fmt, args);
va_end (args);
}
/*
GIB Builtin functions
See GIB docs for information.
*/
static void
GIB_Function_f (void)
{
gib_tree_t *program;
if (GIB_Argc () != 3)
GIB_USAGE ("name program");
else {
// Is the function program already tokenized?
if (GIB_Argm (2)->delim != '{') {
// Parse on the fly
2003-02-14 22:42:11 +00:00
if (!(program = GIB_Parse_Lines (GIB_Argv (2), 0, TREE_NORMAL))) {
// Error!
2003-02-14 22:42:11 +00:00
GIB_Error ("parse", "Parse error while defining function '%s'.",
GIB_Argv (1));
return;
}
} else
program = GIB_Argm (2)->children;
2003-02-14 22:42:11 +00:00
GIB_Function_Define (GIB_Argv (1), GIB_Argv (2), program,
GIB_DATA (cbuf_active)->script,
GIB_DATA (cbuf_active)->globals);
}
2003-02-14 22:42:11 +00:00
}
static void
GIB_Function_Get_f (void)
{
if (GIB_Argc () != 2)
GIB_USAGE ("name");
else {
gib_function_t *f;
2003-02-14 22:42:11 +00:00
if ((f = GIB_Function_Find (GIB_Argv (1))))
GIB_Return (f->text->str);
else
GIB_Return ("");
}
}
static void
GIB_Local_f (void)
{
2003-02-14 22:42:11 +00:00
gib_var_t *var;
unsigned int index, i;
static hashtab_t *zero = 0;
2003-02-14 22:42:11 +00:00
if (GIB_Argc () < 2)
GIB_USAGE ("var [= value1 value2 ...] || var [var2 var3 ...]");
else if (!strcmp (GIB_Argv(2), "=")) {
var = GIB_Var_Get_Complex (&GIB_DATA (cbuf_active)->locals, &zero,
2003-02-14 22:42:11 +00:00
GIB_Argv (1), &index, true);
if (GIB_Argc () >= 3)
GIB_Var_Assign (var, index, cbuf_active->args->argv + 3,
GIB_Argc () - 3);
} else for (i = 1; i < GIB_Argc(); i++)
var = GIB_Var_Get_Complex (&GIB_DATA (cbuf_active)->locals, &zero,
GIB_Argv (1), &index, true);
}
static void
GIB_Global_f (void)
{
2003-02-14 22:42:11 +00:00
gib_var_t *var;
unsigned int index, i;
static hashtab_t *zero = 0;
2003-02-14 22:42:11 +00:00
if (GIB_Argc () < 2)
GIB_USAGE ("var [= value1 value2 ...] || var [var2 var3 ...]");
else if (!strcmp (GIB_Argv(2), "=")) {
var = GIB_Var_Get_Complex (&GIB_DATA (cbuf_active)->globals, &zero,
2003-02-14 22:42:11 +00:00
GIB_Argv (1), &index, true);
if (GIB_Argc () >= 3)
GIB_Var_Assign (var, index, cbuf_active->args->argv + 3,
GIB_Argc () - 3);
} else for (i = 1; i < GIB_Argc(); i++)
var = GIB_Var_Get_Complex (&GIB_DATA (cbuf_active)->globals, &zero,
GIB_Argv (1), &index, true);
}
static void
GIB_Global_Delete_f (void)
{
gib_var_t *var;
unsigned int index, i;
hashtab_t *source;
static hashtab_t *zero = 0;
char *c;
if (GIB_Argc () < 2)
GIB_USAGE ("var [var2 var2 ...]");
else for (i = 1; i < GIB_Argc(); i++) {
if ((c = strrchr (GIB_Argv(i), '.'))) {
*(c++) = 0;
if (!(var = GIB_Var_Get_Complex (&GIB_DATA (cbuf_active)->globals, &zero,
GIB_Argv (i), &index, false)))
continue;
source = var->array[index].leaves;
} else {
c = GIB_Argv(i);
source = GIB_DATA(cbuf_active)->globals;
}
Hash_Free (source, Hash_Del (source, c));
}
}
static void
GIB_Domain_f (void)
{
2003-02-14 22:42:11 +00:00
if (GIB_Argc () != 2)
GIB_USAGE ("domain");
else
2003-02-14 22:42:11 +00:00
GIB_DATA (cbuf_active)->globals = GIB_Domain_Get (GIB_Argv (1));
}
static void
GIB_Domain_Clear_f (void)
{
2003-02-14 22:42:11 +00:00
if (GIB_Argc () != 2)
GIB_USAGE ("domain");
else
2003-02-14 22:42:11 +00:00
Hash_FlushTable (GIB_Domain_Get (GIB_Argv (2)));
}
2003-02-14 22:42:11 +00:00
static void
GIB_Return_f (void)
{
2003-02-14 22:42:11 +00:00
cbuf_t *sp = cbuf_active->up;
GIB_DATA (cbuf_active)->done = true;
if (GIB_Argc () > 1 && sp && sp->interpreter == &gib_interp
&& GIB_DATA (sp)->waitret) {
unsigned int i;
2003-02-14 22:42:11 +00:00
dstring_t *dstr;
for (i = 1; i < GIB_Argc (); i++) {
dstr = GIB_Buffer_Dsarray_Get (sp);
dstring_clearstr (dstr);
2003-02-14 22:42:11 +00:00
dstring_appendstr (dstr, GIB_Argv (i));
}
}
}
2003-02-14 22:42:11 +00:00
static void
GIB_For_f (void)
{
2003-02-14 22:42:11 +00:00
dstring_t *dstr;
unsigned int i;
2003-02-14 22:42:11 +00:00
if (GIB_Argc () < 5) {
GIB_DATA (cbuf_active)->ip = GIB_DATA (cbuf_active)->ip->jump;
return;
}
GIB_Buffer_Push_Sstack (cbuf_active);
dstr = GIB_Buffer_Dsarray_Get (cbuf_active);
dstring_clearstr (dstr);
2003-02-14 22:42:11 +00:00
dstring_appendstr (dstr, GIB_Argv (1));
for (i = GIB_Argc () - 2; i > 2; i--) {
dstr = GIB_Buffer_Dsarray_Get (cbuf_active);
2003-02-14 22:42:11 +00:00
dstring_appendstr (dstr, GIB_Argv (i));
}
GIB_Execute_For_Next (cbuf_active);
}
static void
GIB_Break_f (void)
{
2003-02-14 22:42:11 +00:00
if (!GIB_DATA (cbuf_active)->ip->jump) {
GIB_Error ("loop", "Break command attempted outside of a loop.");
return;
}
2003-02-14 22:42:11 +00:00
if (!GIB_DATA (cbuf_active)->ip->jump->flags & TREE_COND) // In a for
// loop?
GIB_Buffer_Pop_Sstack (cbuf_active); // Kill it
GIB_DATA (cbuf_active)->ip = GIB_DATA (cbuf_active)->ip->jump->jump;
}
static gib_tree_t gib_cont = {
"",
' ',
0, 0, 0, 0,
TREE_NORMAL
};
static void
GIB_Continue_f (void)
{
2003-02-14 22:42:11 +00:00
if (!GIB_DATA (cbuf_active)->ip->jump) {
GIB_Error ("loop", "Continue command attempted outside of a loop.");
return;
}
2003-02-14 22:42:11 +00:00
if (GIB_DATA (cbuf_active)->ip->jump->flags & TREE_COND) {
gib_cont.next = GIB_DATA (cbuf_active)->ip->jump;
GIB_DATA (cbuf_active)->ip = &gib_cont;
} else {
GIB_Execute_For_Next (cbuf_active);
2003-02-14 22:42:11 +00:00
GIB_DATA (cbuf_active)->ip = GIB_DATA (cbuf_active)->ip->jump;
}
}
// Note: this is a standard console command, not a GIB builtin
static void
GIB_Runexported_f (void)
{
gib_function_t *f;
2003-02-14 22:42:11 +00:00
if (!(f = GIB_Function_Find (Cmd_Argv (0))))
Sys_Printf ("Error: No function found for exported command \"%s\".\n"
"This is most likely a bug, please report it to"
2003-02-14 22:42:11 +00:00
"The QuakeForge developers.", Cmd_Argv (0));
else {
2003-02-14 22:42:11 +00:00
cbuf_t *sub = Cbuf_New (&gib_interp);
GIB_Function_Execute (sub, f, cbuf_active->args->argv,
cbuf_active->args->argc);
cbuf_active->down = sub;
sub->up = cbuf_active;
cbuf_active->state = CBUF_STATE_STACK;
}
}
static void
GIB_Function_Export_f (void)
{
gib_function_t *f;
2003-02-14 22:42:11 +00:00
int i;
if (GIB_Argc () < 2)
GIB_USAGE ("function1 [function2 function3 ...]");
2003-02-14 22:42:11 +00:00
for (i = 1; i < GIB_Argc (); i++) {
if (!(f = GIB_Function_Find (GIB_Argv (i))))
2003-02-14 22:42:11 +00:00
GIB_Error ("function", "%s: function '%s' not found.", GIB_Argv (0),
GIB_Argv (i));
else if (!f->exported) {
if (Cmd_Exists (f->name)) {
2003-02-14 22:42:11 +00:00
GIB_Error ("export",
"%s: A console command with the name '%s' already exists.",
GIB_Argv (0), GIB_Argv (i));
return;
} else {
2003-02-14 22:42:11 +00:00
Cmd_AddCommand (f->name, GIB_Runexported_f,
"Exported GIB function.");
f->exported = true;
}
}
}
}
static void
GIB_Length_f (void)
{
2003-02-14 22:42:11 +00:00
dstring_t *ret;
if (GIB_Argc () != 2)
GIB_USAGE ("string");
else if ((ret = GIB_Return (0)))
2003-02-14 22:42:11 +00:00
dsprintf (ret, "%i", (int) strlen (GIB_Argv (1)));
}
static void
GIB_Equal_f (void)
{
2003-02-14 22:42:11 +00:00
if (GIB_Argc () != 3)
GIB_USAGE ("string1 string2");
2003-02-14 22:42:11 +00:00
else if (strcmp (GIB_Argv (1), GIB_Argv (2)))
GIB_Return ("0");
else
GIB_Return ("1");
}
static void
GIB_Slice_f (void)
{
2003-02-14 22:42:11 +00:00
dstring_t *ret;
int start, end, len;
if (GIB_Argc () < 3 || GIB_Argc () > 4)
2003-01-31 05:22:20 +00:00
GIB_USAGE ("string start [end]");
else {
2003-02-14 22:42:11 +00:00
len = strlen (GIB_Argv (1));
start = atoi (GIB_Argv (2));
end = *GIB_Argv (3) ? atoi (GIB_Argv (3)) : len;
2003-01-31 05:22:20 +00:00
if (end < 0)
end += len;
else if (end > len)
end = len;
if (start < 0) {
start += len;
if (start < 0)
start = 0;
} else if (start >= len || start >= end)
return;
if ((ret = GIB_Return (0)))
2003-02-14 22:42:11 +00:00
dstring_appendsubstr (ret, GIB_Argv (1) + start, end - start);
}
}
static void
GIB_Slice_Find_f (void)
{
2003-02-14 22:42:11 +00:00
char *res;
if (GIB_Argc () != 3) {
GIB_USAGE ("haystack needle");
return;
} else if (!GIB_CanReturn ())
return;
2003-02-14 22:42:11 +00:00
else if ((res = strstr (GIB_Argv (1), GIB_Argv (2)))) {
dsprintf (GIB_Return (0), "%lu",
(unsigned long int) (res - GIB_Argv (1)));
dsprintf (GIB_Return (0), "%lu",
(unsigned long int) (res - GIB_Argv (1)) +
strlen (GIB_Argv (2)));
}
}
static void
GIB_Split_f (void)
{
2003-02-14 22:42:11 +00:00
char *end, *start;
const char *ifs;
2003-02-14 22:42:11 +00:00
if (GIB_Argc () < 2 || GIB_Argc () > 3) {
GIB_USAGE ("string [fs]");
return;
}
2003-02-14 22:42:11 +00:00
ifs = GIB_Argc () == 3 ? GIB_Argv (2) : " \t\r\n";
end = GIB_Argv (1);
while (*end) {
2003-02-14 22:42:11 +00:00
for (; strchr (ifs, *end); end++)
if (!*end)
return;
start = end;
2003-02-14 22:42:11 +00:00
while (!strchr (ifs, *end))
end++;
if (*end)
*(end++) = 0;
2003-02-14 22:42:11 +00:00
GIB_Return (start);
}
}
static void
GIB_Regex_Match_f (void)
{
2003-02-14 22:42:11 +00:00
regex_t *reg;
if (GIB_Argc () != 4) {
GIB_USAGE ("string regex options");
return;
}
2003-02-14 22:42:11 +00:00
if (!
(reg =
GIB_Regex_Compile (GIB_Argv (2),
REG_EXTENDED |
GIB_Regex_Translate_Options (GIB_Argv (3)))))
GIB_Error ("regex", "%s: %s", GIB_Argv (0), GIB_Regex_Error ());
else if (regexec (reg, GIB_Argv (1), 0, 0, 0))
GIB_Return ("0");
else
GIB_Return ("1");
}
static void
GIB_Regex_Replace_f (void)
{
2003-02-14 22:42:11 +00:00
regex_t *reg;
int ofs, len;
regmatch_t match[10];
if (GIB_Argc () != 5) {
GIB_USAGE ("string regex options replacement");
return;
}
2003-02-14 22:42:11 +00:00
ofs = 0;
2003-02-14 22:42:11 +00:00
len = strlen (GIB_Argv (4));
if (!
(reg =
GIB_Regex_Compile (GIB_Argv (2),
REG_EXTENDED |
GIB_Regex_Translate_Options (GIB_Argv (3)))))
GIB_Error ("regex", "%s: %s", GIB_Argv (0), GIB_Regex_Error ());
else if (strchr (GIB_Argv (3), 'g'))
while (!regexec
(reg, GIB_Argv (1) + ofs, 10, match, ofs > 0 ? REG_NOTBOL : 0)
&& match[0].rm_eo)
ofs +=
GIB_Regex_Apply_Match (match, GIB_Argd (1), ofs, GIB_Argv (4));
else if (!regexec (reg, GIB_Argv (1), 10, match, 0) && match[0].rm_eo)
GIB_Regex_Apply_Match (match, GIB_Argd (1), 0, GIB_Argv (4));
GIB_Return (GIB_Argv (1));
}
static void
GIB_Regex_Extract_f (void)
{
2003-02-14 22:42:11 +00:00
regex_t *reg;
regmatch_t *match;
2003-02-14 22:42:11 +00:00
int i;
char o;
if (GIB_Argc () != 4) {
GIB_USAGE ("string regex options");
return;
} else if (!GIB_CanReturn ())
return;
2003-02-14 22:42:11 +00:00
match = calloc (32, sizeof (regmatch_t));
if (!
(reg =
GIB_Regex_Compile (GIB_Argv (2),
REG_EXTENDED |
GIB_Regex_Translate_Options (GIB_Argv (3)))))
GIB_Error ("regex", "%s: %s", GIB_Argv (0), GIB_Regex_Error ());
else if (!regexec (reg, GIB_Argv (1), 32, match, 0) && match[0].rm_eo) {
dsprintf (GIB_Return (0), "%lu", (unsigned long) match[0].rm_eo);
for (i = 0; i < 32; i++) {
if (match[i].rm_so != -1) {
2003-02-14 22:42:11 +00:00
o = GIB_Argv (1)[match[i].rm_eo];
GIB_Argv (1)[match[i].rm_eo] = 0;
GIB_Return (GIB_Argv (1) + match[i].rm_so);
GIB_Argv (1)[match[i].rm_eo] = o;
}
}
}
free (match);
}
static void
GIB_Thread_Create_f (void)
{
gib_function_t *f;
2003-02-14 22:42:11 +00:00
if (GIB_Argc () < 2)
GIB_USAGE ("function [arg1 arg2 ...]");
2003-02-14 22:42:11 +00:00
else if (!(f = GIB_Function_Find (GIB_Argv (1))))
GIB_Error ("function", "%s: no function named '%s' exists.",
GIB_Argv (0), GIB_Argv (1));
else {
gib_thread_t *thread = GIB_Thread_New ();
2003-02-14 22:42:11 +00:00
GIB_Function_Execute (thread->cbuf, f, cbuf_active->args->argv + 1,
cbuf_active->args->argc - 1);
GIB_Thread_Add (thread);
if (GIB_CanReturn ())
2003-02-14 22:42:11 +00:00
dsprintf (GIB_Return (0), "%lu", thread->id);
}
}
static void
GIB_Thread_Kill_f (void)
{
2003-02-14 22:42:11 +00:00
if (GIB_Argc () != 2)
GIB_USAGE ("id");
else {
gib_thread_t *thread;
2003-02-14 22:42:11 +00:00
cbuf_t *cur;
unsigned long int id = strtoul (GIB_Argv (1), 0, 10);
thread = GIB_Thread_Find (id);
if (!thread) {
2003-02-14 22:42:11 +00:00
GIB_Error ("thread", "%s: thread %lu does not exist.", GIB_Argv (0),
id);
return;
}
2003-02-14 22:42:11 +00:00
// Set error condition on the top of the stack so the thread will exit
// We can't simply nuke the thread, as it would cause the stack walker
// to segfault if a thread kills itself.
2003-02-14 22:42:11 +00:00
for (cur = thread->cbuf;
cur->down && cur->down->state != CBUF_STATE_JUNK; cur = cur->down);
cur->state = CBUF_STATE_ERROR;
}
}
static void
GIB_Thread_List_f (void)
{
2003-02-14 22:42:11 +00:00
if (GIB_Argc () != 1)
GIB_USAGE ("");
2003-02-14 22:42:11 +00:00
else if (GIB_CanReturn ()) {
gib_thread_t *cur;
2003-02-14 22:42:11 +00:00
for (cur = gib_threads; cur; cur = cur->next)
dsprintf (GIB_Return (0), "%lu", cur->id);
}
}
2002-08-27 23:25:52 +00:00
static void
GIB_Event_Register_f (void)
{
gib_function_t *func;
2003-02-14 22:42:11 +00:00
if (GIB_Argc () != 3)
GIB_USAGE ("event function");
2003-02-14 22:42:11 +00:00
else if (!(func = GIB_Function_Find (GIB_Argv (2))) && GIB_Argv (2)[0])
GIB_Error ("function", "Function %s not found.", GIB_Argv (2));
else if (GIB_Event_Register (GIB_Argv (1), func))
GIB_Error ("event", "Event %s not found.", GIB_Argv (1));
}
2002-08-27 23:25:52 +00:00
/* File access */
2003-02-14 22:42:11 +00:00
int (*GIB_File_Transform_Path) (dstring_t * path) = NULL;
static int
2003-02-14 22:42:11 +00:00
GIB_File_Transform_Path_Null (dstring_t * path)
{
2003-02-14 22:42:11 +00:00
char *s;
// Convert backslash to forward slash
2003-02-14 22:42:11 +00:00
for (s = strchr (path->str, '\\'); s; s = strchr (s, '\\'))
*s = '/';
return 0;
}
static int
2003-02-14 22:42:11 +00:00
GIB_File_Transform_Path_Secure (dstring_t * path)
{
2003-02-14 22:42:11 +00:00
char *s /* , e_dir[MAX_OSPATH] */ ;
for (s = strchr (path->str, '\\'); s; s = strchr (s, '\\'))
*s = '/';
if (Sys_PathType (path->str) != PATHTYPE_RELATIVE_BELOW)
return -1;
/* Qexpand_squiggle (fs_userpath->string, e_dir); */
dstring_insertstr (path, 0, "/");
2003-02-14 22:36:10 +00:00
dstring_insertstr (path, 0, /* e_dir */ qfs_gamedir->dir.def);
dstring_insertstr (path, 0, "/");
dstring_insertstr (path, 0, fs_userpath->string);
return 0;
}
2003-02-14 22:42:11 +00:00
static void
2002-08-27 23:25:52 +00:00
GIB_File_Read_f (void)
{
QFile *file;
char *path;
2003-02-14 22:42:11 +00:00
int len;
dstring_t *ret;
2002-08-27 23:25:52 +00:00
if (GIB_Argc () != 2) {
GIB_USAGE ("file");
return;
}
if (!*GIB_Argv (1)) {
2003-02-14 22:42:11 +00:00
GIB_Error ("file", "%s: null filename provided", GIB_Argv (0));
2002-08-27 23:25:52 +00:00
return;
}
2003-02-14 22:42:11 +00:00
if (GIB_File_Transform_Path (GIB_Argd (1))) {
GIB_Error ("access",
2003-02-14 22:42:11 +00:00
"%s: access to %s denied", GIB_Argv (0), GIB_Argv (1));
2002-08-27 23:25:52 +00:00
return;
}
if (!(ret = GIB_Return (0)))
return;
path = GIB_Argv (1);
file = Qopen (path, "r");
if (file) {
len = Qfilesize (file);
2003-02-14 22:42:11 +00:00
ret->size = len + 1;
dstring_adjust (ret);
Qread (file, ret->str, len);
ret->str[len] = 0;
Qclose (file);
}
if (!file) {
GIB_Error ("file",
2003-02-14 22:42:11 +00:00
"%s: could not read %s: %s", GIB_Argv (0), path,
strerror (errno));
2002-08-27 23:25:52 +00:00
return;
}
}
static void
2002-08-27 23:25:52 +00:00
GIB_File_Write_f (void)
{
QFile *file;
char *path;
2003-02-14 22:42:11 +00:00
2002-08-27 23:25:52 +00:00
if (GIB_Argc () != 3) {
GIB_USAGE ("file data");
2002-08-27 23:25:52 +00:00
return;
}
2003-02-14 22:42:11 +00:00
if (!*GIB_Argv (1)) {
GIB_Error ("file", "%s: null filename provided", GIB_Argv (0));
return;
}
2003-02-14 22:42:11 +00:00
if (GIB_File_Transform_Path (GIB_Argd (1))) {
GIB_Error ("access",
2003-02-14 22:42:11 +00:00
"%s: access to %s denied", GIB_Argv (0), GIB_Argv (1));
2002-08-27 23:25:52 +00:00
return;
}
2003-02-14 22:42:11 +00:00
path = GIB_Argv (1);
if (!(file = Qopen (path, "w"))) {
GIB_Error ("file",
2003-02-14 22:42:11 +00:00
"%s: could not open %s for writing: %s", GIB_Argv (0), path,
strerror (errno));
2002-08-27 23:25:52 +00:00
return;
}
Qprintf (file, "%s", GIB_Argv (2));
Qclose (file);
}
static void
2002-08-27 23:25:52 +00:00
GIB_File_Find_f (void)
{
DIR *directory;
struct dirent *entry;
2003-02-14 22:42:11 +00:00
const char *path, *glob = 0;
char *s;
2002-08-27 23:25:52 +00:00
if (GIB_Argc () != 2) {
GIB_USAGE ("glob");
2002-08-27 23:25:52 +00:00
return;
}
2003-02-14 22:42:11 +00:00
if (GIB_File_Transform_Path (GIB_Argd (1))) {
GIB_Error ("access",
2003-02-14 22:42:11 +00:00
"%s: access to %s denied", GIB_Argv (0), GIB_Argv (1));
return;
}
2003-02-14 22:42:11 +00:00
path = GIB_Argv (1);
s = strrchr (path, '/');
2003-02-14 22:42:11 +00:00
if (!s) { // No slash in path
glob = path; // The glob is the entire argument
path = "."; // The path is the current directory
} else if (s == path) // Unix filesystem root (carne only)
path = "/";
else {
2003-02-14 22:42:11 +00:00
*s = 0; // Split the string at the final slash
glob = s + 1;
2002-08-27 23:25:52 +00:00
}
directory = opendir (path);
2002-08-27 23:25:52 +00:00
if (!directory) {
GIB_Error ("file",
2003-02-14 22:42:11 +00:00
"%s: could not open directory %s: %s", GIB_Argv (0), path,
strerror (errno));
2002-08-27 23:25:52 +00:00
return;
}
while ((entry = readdir (directory)))
2003-02-14 22:42:11 +00:00
if (strcmp (entry->d_name, ".") && strcmp (entry->d_name, "..")
&& !fnmatch (glob, entry->d_name, 0))
GIB_Return (entry->d_name);
closedir (directory);
2002-08-27 23:25:52 +00:00
}
static void
GIB_File_Move_f (void)
{
2003-02-14 22:42:11 +00:00
char *path1, *path2;
if (GIB_Argc () != 3) {
GIB_USAGE ("from_file to_file");
return;
}
2003-02-14 22:42:11 +00:00
if (GIB_File_Transform_Path (GIB_Argd (1))) {
GIB_Error ("access",
2003-02-14 22:42:11 +00:00
"%s: access to %s denied", GIB_Argv (0), GIB_Argv (1));
return;
}
2003-02-14 22:42:11 +00:00
if (GIB_File_Transform_Path (GIB_Argd (2))) {
GIB_Error ("access",
2003-02-14 22:42:11 +00:00
"%s: access to %s denied", GIB_Argv (0), GIB_Argv (2));
return;
}
2003-02-14 22:42:11 +00:00
path1 = GIB_Argv (1);
path2 = GIB_Argv (2);
if (Qrename (path1, path2))
2003-02-14 22:42:11 +00:00
GIB_Error ("file", "%s: could not move %s to %s: %s", GIB_Argv (0),
path1, path2, strerror (errno));
}
static void
GIB_File_Delete_f (void)
{
2003-02-14 22:42:11 +00:00
char *path;
if (GIB_Argc () != 2) {
GIB_USAGE ("file");
return;
}
2003-02-14 22:42:11 +00:00
if (GIB_File_Transform_Path (GIB_Argd (1))) {
GIB_Error ("access",
2003-02-14 22:42:11 +00:00
"%s: access to %s denied", GIB_Argv (0), GIB_Argv (1));
return;
}
path = GIB_Argv (1);
2003-02-14 22:42:11 +00:00
if (Qremove (path))
GIB_Error ("file", "%s: could not delete %s: %s", GIB_Argv (0), path,
strerror (errno));
}
static void
GIB_Range_f (void)
{
2003-02-14 22:42:11 +00:00
double i, inc, start, limit;
dstring_t *dstr;
if (GIB_Argc () < 3 || GIB_Argc () > 4) {
GIB_USAGE ("lower upper [step]");
return;
}
2003-02-14 22:42:11 +00:00
limit = atof (GIB_Argv (2));
start = atof (GIB_Argv (1));
if (GIB_Argc () == 4) {
2003-02-14 22:42:11 +00:00
if ((inc = atof (GIB_Argv (3))) == 0.0)
return;
} else
inc = limit < start ? -1.0 : 1.0;
2003-02-14 22:42:11 +00:00
for (i = atof (GIB_Argv (1)); inc < 0 ? i >= limit : i <= limit; i += inc) {
if (!(dstr = GIB_Return (0)))
return;
2003-02-14 22:42:11 +00:00
dsprintf (dstr, "%.10g", i);
}
}
static void
GIB_Print_f (void)
{
2003-02-14 22:42:11 +00:00
if (GIB_Argc () != 2) {
GIB_USAGE ("text");
return;
}
2003-02-14 22:42:11 +00:00
Sys_Printf ("%s", GIB_Argv (1));
}
static void
GIB_Random_f (void)
{
2003-02-14 22:42:11 +00:00
dstring_t *ret;
if (GIB_Argc () != 1)
GIB_USAGE ("");
else if ((ret = GIB_Return (0)))
2003-02-14 22:42:11 +00:00
dsprintf (ret, "%.10g", (double) rand () / (double) RAND_MAX);
}
void
GIB_Builtin_Init (qboolean sandbox)
{
if (sandbox)
GIB_File_Transform_Path = GIB_File_Transform_Path_Secure;
else
GIB_File_Transform_Path = GIB_File_Transform_Path_Null;
2003-02-14 22:42:11 +00:00
GIB_Builtin_Add ("function", GIB_Function_f);
GIB_Builtin_Add ("function::get", GIB_Function_Get_f);
GIB_Builtin_Add ("function::export", GIB_Function_Export_f);
GIB_Builtin_Add ("local", GIB_Local_f);
GIB_Builtin_Add ("global", GIB_Global_f);
GIB_Builtin_Add ("global::delete", GIB_Global_Delete_f);
GIB_Builtin_Add ("domain", GIB_Domain_f);
GIB_Builtin_Add ("domain::clear", GIB_Domain_Clear_f);
GIB_Builtin_Add ("return", GIB_Return_f);
GIB_Builtin_Add ("for", GIB_For_f);
GIB_Builtin_Add ("break", GIB_Break_f);
GIB_Builtin_Add ("continue", GIB_Continue_f);
GIB_Builtin_Add ("length", GIB_Length_f);
GIB_Builtin_Add ("equal", GIB_Equal_f);
GIB_Builtin_Add ("slice", GIB_Slice_f);
GIB_Builtin_Add ("slice::find", GIB_Slice_Find_f);
GIB_Builtin_Add ("split", GIB_Split_f);
GIB_Builtin_Add ("regex::match", GIB_Regex_Match_f);
GIB_Builtin_Add ("regex::replace", GIB_Regex_Replace_f);
GIB_Builtin_Add ("regex::extract", GIB_Regex_Extract_f);
GIB_Builtin_Add ("thread::create", GIB_Thread_Create_f);
GIB_Builtin_Add ("thread::kill", GIB_Thread_Kill_f);
GIB_Builtin_Add ("thread::list", GIB_Thread_List_f);
GIB_Builtin_Add ("event::register", GIB_Event_Register_f);
GIB_Builtin_Add ("file::read", GIB_File_Read_f);
GIB_Builtin_Add ("file::write", GIB_File_Write_f);
GIB_Builtin_Add ("file::find", GIB_File_Find_f);
GIB_Builtin_Add ("file::move", GIB_File_Move_f);
GIB_Builtin_Add ("file::delete", GIB_File_Delete_f);
GIB_Builtin_Add ("range", GIB_Range_f);
GIB_Builtin_Add ("print", GIB_Print_f);
GIB_Builtin_Add ("random", GIB_Random_f);
}