2006-04-17 00:05:42 +00:00
|
|
|
|
/* Copyright (C) 1995,1996,1998,1999,2000,2001, 2004, 2006 Free Software Foundation, Inc.
|
1996-07-25 22:56:11 +00:00
|
|
|
|
*
|
2003-04-05 19:15:35 +00:00
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
1996-07-25 22:56:11 +00:00
|
|
|
|
*
|
2003-04-05 19:15:35 +00:00
|
|
|
|
* This library 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
|
|
|
|
|
|
* Lesser General Public License for more details.
|
1996-07-25 22:56:11 +00:00
|
|
|
|
*
|
2003-04-05 19:15:35 +00:00
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2005-05-23 19:57:22 +00:00
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-04-05 19:15:35 +00:00
|
|
|
|
*/
|
1999-12-12 02:36:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
2003-03-25 23:57:16 +00:00
|
|
|
|
#if HAVE_CONFIG_H
|
|
|
|
|
|
# include <config.h>
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
2001-01-26 17:30:54 +00:00
|
|
|
|
#include <string.h>
|
2004-08-10 13:30:12 +00:00
|
|
|
|
#include <stdio.h>
|
2001-01-26 17:30:54 +00:00
|
|
|
|
|
2000-04-21 14:16:44 +00:00
|
|
|
|
#include "libguile/_scm.h"
|
|
|
|
|
|
#include "libguile/libpath.h"
|
|
|
|
|
|
#include "libguile/fports.h"
|
|
|
|
|
|
#include "libguile/read.h"
|
|
|
|
|
|
#include "libguile/eval.h"
|
|
|
|
|
|
#include "libguile/throw.h"
|
|
|
|
|
|
#include "libguile/alist.h"
|
|
|
|
|
|
#include "libguile/dynwind.h"
|
|
|
|
|
|
#include "libguile/root.h"
|
|
|
|
|
|
#include "libguile/strings.h"
|
2000-08-11 08:43:49 +00:00
|
|
|
|
#include "libguile/modules.h"
|
2002-01-22 23:31:39 +00:00
|
|
|
|
#include "libguile/lang.h"
|
2004-08-10 13:30:12 +00:00
|
|
|
|
#include "libguile/chars.h"
|
2004-08-24 22:12:37 +00:00
|
|
|
|
#include "libguile/srfi-13.h"
|
2000-04-21 14:16:44 +00:00
|
|
|
|
|
|
|
|
|
|
#include "libguile/validate.h"
|
|
|
|
|
|
#include "libguile/load.h"
|
2005-12-14 00:21:11 +00:00
|
|
|
|
#include "libguile/fluids.h"
|
1996-09-05 16:51:22 +00:00
|
|
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
#endif /* HAVE_UNISTD_H */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef R_OK
|
|
|
|
|
|
#define R_OK 4
|
|
|
|
|
|
#endif
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
1996-09-05 16:51:22 +00:00
|
|
|
|
/* Loading a file, given an absolute filename. */
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
1996-10-28 23:05:37 +00:00
|
|
|
|
/* Hook to run when we load a file, perhaps to announce the fact somewhere.
|
|
|
|
|
|
Applied to the full name of the file. */
|
|
|
|
|
|
static SCM *scm_loc_load_hook;
|
|
|
|
|
|
|
2005-12-14 00:21:11 +00:00
|
|
|
|
/* The current reader (a fluid). */
|
|
|
|
|
|
static SCM the_reader = SCM_BOOL_F;
|
|
|
|
|
|
static size_t the_reader_fluid_num = 0;
|
|
|
|
|
|
|
2000-01-05 19:25:37 +00:00
|
|
|
|
SCM_DEFINE (scm_primitive_load, "primitive-load", 1, 0, 0,
|
1999-12-12 02:36:16 +00:00
|
|
|
|
(SCM filename),
|
2001-03-12 07:08:46 +00:00
|
|
|
|
"Load the file named @var{filename} and evaluate its contents in\n"
|
|
|
|
|
|
"the top-level environment. The load paths are not searched;\n"
|
|
|
|
|
|
"@var{filename} must either be a full pathname or be a pathname\n"
|
|
|
|
|
|
"relative to the current directory. If the variable\n"
|
|
|
|
|
|
"@code{%load-hook} is defined, it should be bound to a procedure\n"
|
|
|
|
|
|
"that will be called before any code is loaded. See the\n"
|
|
|
|
|
|
"documentation for @code{%load-hook} later in this section.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_primitive_load
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
1996-10-28 23:05:37 +00:00
|
|
|
|
SCM hook = *scm_loc_load_hook;
|
2000-10-30 11:42:26 +00:00
|
|
|
|
SCM_VALIDATE_STRING (1, filename);
|
2004-07-27 15:41:49 +00:00
|
|
|
|
if (scm_is_true (hook) && scm_is_false (scm_procedure_p (hook)))
|
2001-03-06 01:22:37 +00:00
|
|
|
|
SCM_MISC_ERROR ("value of %load-hook is neither a procedure nor #f",
|
|
|
|
|
|
SCM_EOL);
|
1996-10-28 23:05:37 +00:00
|
|
|
|
|
2004-07-27 15:41:49 +00:00
|
|
|
|
if (!scm_is_false (hook))
|
2001-06-26 15:46:40 +00:00
|
|
|
|
scm_call_1 (hook, filename);
|
1996-10-28 23:05:37 +00:00
|
|
|
|
|
1999-12-12 02:36:16 +00:00
|
|
|
|
{ /* scope */
|
2005-03-02 20:13:53 +00:00
|
|
|
|
SCM port = scm_open_file (filename, scm_from_locale_string ("r"));
|
2006-01-29 00:23:28 +00:00
|
|
|
|
scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
|
|
|
|
|
|
scm_i_dynwind_current_load_port (port);
|
2005-03-02 20:13:53 +00:00
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
|
{
|
2005-12-14 00:21:11 +00:00
|
|
|
|
SCM reader, form;
|
|
|
|
|
|
|
|
|
|
|
|
/* Lookup and use the current reader to read the next
|
|
|
|
|
|
expression. */
|
|
|
|
|
|
reader = SCM_FAST_FLUID_REF (the_reader_fluid_num);
|
|
|
|
|
|
if (reader == SCM_BOOL_F)
|
|
|
|
|
|
form = scm_read (port);
|
|
|
|
|
|
else
|
|
|
|
|
|
form = scm_call_1 (reader, port);
|
|
|
|
|
|
|
2005-03-02 20:13:53 +00:00
|
|
|
|
if (SCM_EOF_OBJECT_P (form))
|
|
|
|
|
|
break;
|
2005-12-14 00:21:11 +00:00
|
|
|
|
|
2005-03-02 20:13:53 +00:00
|
|
|
|
scm_primitive_eval_x (form);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2006-01-29 00:23:28 +00:00
|
|
|
|
scm_dynwind_end ();
|
1996-07-25 22:56:11 +00:00
|
|
|
|
scm_close_port (port);
|
|
|
|
|
|
}
|
1996-09-24 07:21:17 +00:00
|
|
|
|
return SCM_UNSPECIFIED;
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
2001-06-29 23:13:43 +00:00
|
|
|
|
SCM
|
|
|
|
|
|
scm_c_primitive_load (const char *filename)
|
|
|
|
|
|
{
|
* strings.h, strings.c: (scm_i_string_chars, scm_i_string_length,
scm_i_string_writable_chars, scm_i_string_stop_writing): New, to
replace SCM_I_STRING_CHARS and SCM_I_STRING_LENGTH. Updated all
uses.
(scm_i_make_string, scm_c_make_string): New, to replace
scm_allocate_string. Updated all uses.
(SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_UCHARS,
SCM_STRING_LENGTH): Deprecated.
(scm_allocate_string, scm_take_str, scm_take0str, scm_mem2string,
scm_str2string, scm_makfrom0str, scm_makfrom0str_opt):
Discouraged. Replaced all uses with scm_from_locale_string or
similar, as appropriate.
(scm_c_string_length, scm_c_string_ref, scm_c_string_set_x,
scm_c_substring, scm_c_substring_shared, scm_c_substring_copy,
scm_substring_shared, scm_substring_copy): New.
* symbols.c, symbols.h (SCM_SYMBOLP, SCM_SYMBOL_FUNC,
SCM_SET_SYMBOL_FUNC, SCM_SYMBOL_PROPS, SCM_SET_SYMBOL_PROPS,
SCM_SYMBOL_HASH, SCM_SYMBOL_INTERNED_P, scm_mem2symbol,
scm_str2symbol, scm_mem2uninterned_symbol): Discouraged.
(SCM_SYMBOL_LENGTH, SCM_SYMBOL_CHARS, scm_c_symbol2str):
Deprecated.
(SCM_MAKE_SYMBOL_TAG, SCM_SET_SYMBOL_LENGTH, SCM_SET_SYMBOL_CHARS,
SCM_PROP_SLOTS, SCM_SET_PROP_SLOTS): Removed.
(scm_is_symbol, scm_from_locale_symbol, scm_from_locale_symboln):
New, to replace scm_str2symbol and scm_mem2symbol, respectively.
Updated all uses.
(scm_gensym): Generate only the number suffix in the buffer, just
string-append the prefix.
2004-08-19 17:19:44 +00:00
|
|
|
|
return scm_primitive_load (scm_from_locale_string (filename));
|
2001-06-29 23:13:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
1996-10-30 23:34:33 +00:00
|
|
|
|
|
|
|
|
|
|
/* Builtin path to scheme library files. */
|
|
|
|
|
|
#ifdef SCM_PKGDATA_DIR
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_sys_package_data_dir, "%package-data-dir", 0, 0, 0,
|
1999-12-12 02:36:16 +00:00
|
|
|
|
(),
|
* alist.c, chars.c, debug.c, dynl.c, dynwind.c, error.c, eval.c,
evalext.c, filesys.c, gc.c, hash.c, hashtab.c, ioext.c,
keywords.c, list.c, load.c, macros.c, net_db.c, numbers.c,
objprop.c, ports.c, posix.c, print.c, procprop.c, procs.c,
ramap.c, regex-posix.c, root.c, scmsigs.c, simpos.c, socket.c,
stacks.c, stime.c, strings.c, strop.c, strports.c, struct.c,
symbols.c, throw.c, unif.c, vectors.c, version.c, vports.c,
weaks.c: Converted docstrings to ANSI C format.
2000-01-18 11:24:03 +00:00
|
|
|
|
"Return the name of the directory where Scheme packages, modules and\n"
|
|
|
|
|
|
"libraries are kept. On most Unix systems, this will be\n"
|
|
|
|
|
|
"@samp{/usr/local/share/guile}.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_sys_package_data_dir
|
1996-10-30 23:34:33 +00:00
|
|
|
|
{
|
* strings.h, strings.c: (scm_i_string_chars, scm_i_string_length,
scm_i_string_writable_chars, scm_i_string_stop_writing): New, to
replace SCM_I_STRING_CHARS and SCM_I_STRING_LENGTH. Updated all
uses.
(scm_i_make_string, scm_c_make_string): New, to replace
scm_allocate_string. Updated all uses.
(SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_UCHARS,
SCM_STRING_LENGTH): Deprecated.
(scm_allocate_string, scm_take_str, scm_take0str, scm_mem2string,
scm_str2string, scm_makfrom0str, scm_makfrom0str_opt):
Discouraged. Replaced all uses with scm_from_locale_string or
similar, as appropriate.
(scm_c_string_length, scm_c_string_ref, scm_c_string_set_x,
scm_c_substring, scm_c_substring_shared, scm_c_substring_copy,
scm_substring_shared, scm_substring_copy): New.
* symbols.c, symbols.h (SCM_SYMBOLP, SCM_SYMBOL_FUNC,
SCM_SET_SYMBOL_FUNC, SCM_SYMBOL_PROPS, SCM_SET_SYMBOL_PROPS,
SCM_SYMBOL_HASH, SCM_SYMBOL_INTERNED_P, scm_mem2symbol,
scm_str2symbol, scm_mem2uninterned_symbol): Discouraged.
(SCM_SYMBOL_LENGTH, SCM_SYMBOL_CHARS, scm_c_symbol2str):
Deprecated.
(SCM_MAKE_SYMBOL_TAG, SCM_SET_SYMBOL_LENGTH, SCM_SET_SYMBOL_CHARS,
SCM_PROP_SLOTS, SCM_SET_PROP_SLOTS): Removed.
(scm_is_symbol, scm_from_locale_symbol, scm_from_locale_symboln):
New, to replace scm_str2symbol and scm_mem2symbol, respectively.
Updated all uses.
(scm_gensym): Generate only the number suffix in the buffer, just
string-append the prefix.
2004-08-19 17:19:44 +00:00
|
|
|
|
return scm_from_locale_string (SCM_PKGDATA_DIR);
|
1996-10-30 23:34:33 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-10-30 23:34:33 +00:00
|
|
|
|
#endif /* SCM_PKGDATA_DIR */
|
|
|
|
|
|
|
1999-12-14 17:41:59 +00:00
|
|
|
|
#ifdef SCM_LIBRARY_DIR
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_sys_library_dir, "%library-dir", 0,0,0,
|
1999-12-14 17:41:59 +00:00
|
|
|
|
(),
|
* alist.c, chars.c, debug.c, dynl.c, dynwind.c, error.c, eval.c,
evalext.c, filesys.c, gc.c, hash.c, hashtab.c, ioext.c,
keywords.c, list.c, load.c, macros.c, net_db.c, numbers.c,
objprop.c, ports.c, posix.c, print.c, procprop.c, procs.c,
ramap.c, regex-posix.c, root.c, scmsigs.c, simpos.c, socket.c,
stacks.c, stime.c, strings.c, strop.c, strports.c, struct.c,
symbols.c, throw.c, unif.c, vectors.c, version.c, vports.c,
weaks.c: Converted docstrings to ANSI C format.
2000-01-18 11:24:03 +00:00
|
|
|
|
"Return the directory where the Guile Scheme library files are installed.\n"
|
|
|
|
|
|
"E.g., may return \"/usr/share/guile/1.3.5\".")
|
1999-12-14 17:41:59 +00:00
|
|
|
|
#define FUNC_NAME s_scm_sys_library_dir
|
|
|
|
|
|
{
|
* strings.h, strings.c: (scm_i_string_chars, scm_i_string_length,
scm_i_string_writable_chars, scm_i_string_stop_writing): New, to
replace SCM_I_STRING_CHARS and SCM_I_STRING_LENGTH. Updated all
uses.
(scm_i_make_string, scm_c_make_string): New, to replace
scm_allocate_string. Updated all uses.
(SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_UCHARS,
SCM_STRING_LENGTH): Deprecated.
(scm_allocate_string, scm_take_str, scm_take0str, scm_mem2string,
scm_str2string, scm_makfrom0str, scm_makfrom0str_opt):
Discouraged. Replaced all uses with scm_from_locale_string or
similar, as appropriate.
(scm_c_string_length, scm_c_string_ref, scm_c_string_set_x,
scm_c_substring, scm_c_substring_shared, scm_c_substring_copy,
scm_substring_shared, scm_substring_copy): New.
* symbols.c, symbols.h (SCM_SYMBOLP, SCM_SYMBOL_FUNC,
SCM_SET_SYMBOL_FUNC, SCM_SYMBOL_PROPS, SCM_SET_SYMBOL_PROPS,
SCM_SYMBOL_HASH, SCM_SYMBOL_INTERNED_P, scm_mem2symbol,
scm_str2symbol, scm_mem2uninterned_symbol): Discouraged.
(SCM_SYMBOL_LENGTH, SCM_SYMBOL_CHARS, scm_c_symbol2str):
Deprecated.
(SCM_MAKE_SYMBOL_TAG, SCM_SET_SYMBOL_LENGTH, SCM_SET_SYMBOL_CHARS,
SCM_PROP_SLOTS, SCM_SET_PROP_SLOTS): Removed.
(scm_is_symbol, scm_from_locale_symbol, scm_from_locale_symboln):
New, to replace scm_str2symbol and scm_mem2symbol, respectively.
Updated all uses.
(scm_gensym): Generate only the number suffix in the buffer, just
string-append the prefix.
2004-08-19 17:19:44 +00:00
|
|
|
|
return scm_from_locale_string (SCM_LIBRARY_DIR);
|
1999-12-14 17:41:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
#endif /* SCM_LIBRARY_DIR */
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef SCM_SITE_DIR
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_sys_site_dir, "%site-dir", 0,0,0,
|
1999-12-14 17:41:59 +00:00
|
|
|
|
(),
|
* alist.c, chars.c, debug.c, dynl.c, dynwind.c, error.c, eval.c,
evalext.c, filesys.c, gc.c, hash.c, hashtab.c, ioext.c,
keywords.c, list.c, load.c, macros.c, net_db.c, numbers.c,
objprop.c, ports.c, posix.c, print.c, procprop.c, procs.c,
ramap.c, regex-posix.c, root.c, scmsigs.c, simpos.c, socket.c,
stacks.c, stime.c, strings.c, strop.c, strports.c, struct.c,
symbols.c, throw.c, unif.c, vectors.c, version.c, vports.c,
weaks.c: Converted docstrings to ANSI C format.
2000-01-18 11:24:03 +00:00
|
|
|
|
"Return the directory where the Guile site files are installed.\n"
|
|
|
|
|
|
"E.g., may return \"/usr/share/guile/site\".")
|
1999-12-14 17:41:59 +00:00
|
|
|
|
#define FUNC_NAME s_scm_sys_site_dir
|
|
|
|
|
|
{
|
* strings.h, strings.c: (scm_i_string_chars, scm_i_string_length,
scm_i_string_writable_chars, scm_i_string_stop_writing): New, to
replace SCM_I_STRING_CHARS and SCM_I_STRING_LENGTH. Updated all
uses.
(scm_i_make_string, scm_c_make_string): New, to replace
scm_allocate_string. Updated all uses.
(SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_UCHARS,
SCM_STRING_LENGTH): Deprecated.
(scm_allocate_string, scm_take_str, scm_take0str, scm_mem2string,
scm_str2string, scm_makfrom0str, scm_makfrom0str_opt):
Discouraged. Replaced all uses with scm_from_locale_string or
similar, as appropriate.
(scm_c_string_length, scm_c_string_ref, scm_c_string_set_x,
scm_c_substring, scm_c_substring_shared, scm_c_substring_copy,
scm_substring_shared, scm_substring_copy): New.
* symbols.c, symbols.h (SCM_SYMBOLP, SCM_SYMBOL_FUNC,
SCM_SET_SYMBOL_FUNC, SCM_SYMBOL_PROPS, SCM_SET_SYMBOL_PROPS,
SCM_SYMBOL_HASH, SCM_SYMBOL_INTERNED_P, scm_mem2symbol,
scm_str2symbol, scm_mem2uninterned_symbol): Discouraged.
(SCM_SYMBOL_LENGTH, SCM_SYMBOL_CHARS, scm_c_symbol2str):
Deprecated.
(SCM_MAKE_SYMBOL_TAG, SCM_SET_SYMBOL_LENGTH, SCM_SET_SYMBOL_CHARS,
SCM_PROP_SLOTS, SCM_SET_PROP_SLOTS): Removed.
(scm_is_symbol, scm_from_locale_symbol, scm_from_locale_symboln):
New, to replace scm_str2symbol and scm_mem2symbol, respectively.
Updated all uses.
(scm_gensym): Generate only the number suffix in the buffer, just
string-append the prefix.
2004-08-19 17:19:44 +00:00
|
|
|
|
return scm_from_locale_string (SCM_SITE_DIR);
|
1999-12-14 17:41:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
#endif /* SCM_SITE_DIR */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
1996-09-05 16:51:22 +00:00
|
|
|
|
/* Initializing the load path, and searching it. */
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
1996-10-28 23:05:37 +00:00
|
|
|
|
/* List of names of directories we search for files to load. */
|
1996-09-05 16:51:22 +00:00
|
|
|
|
static SCM *scm_loc_load_path;
|
|
|
|
|
|
|
1996-10-28 23:05:37 +00:00
|
|
|
|
/* List of extensions we try adding to the filenames. */
|
|
|
|
|
|
static SCM *scm_loc_load_extensions;
|
|
|
|
|
|
|
1997-10-25 06:53:11 +00:00
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_parse_path, "parse-path", 1, 1, 0,
|
1999-12-12 02:36:16 +00:00
|
|
|
|
(SCM path, SCM tail),
|
2001-02-16 15:12:26 +00:00
|
|
|
|
"Parse @var{path}, which is expected to be a colon-separated\n"
|
|
|
|
|
|
"string, into a list and return the resulting list with\n"
|
|
|
|
|
|
"@var{tail} appended. If @var{path} is @code{#f}, @var{tail}\n"
|
|
|
|
|
|
"is returned.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_parse_path
|
1998-06-22 09:23:01 +00:00
|
|
|
|
{
|
2004-08-10 13:30:12 +00:00
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
|
|
SCM sep = SCM_MAKE_CHAR (';');
|
|
|
|
|
|
#else
|
|
|
|
|
|
SCM sep = SCM_MAKE_CHAR (':');
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
1998-06-22 09:23:01 +00:00
|
|
|
|
if (SCM_UNBNDP (tail))
|
|
|
|
|
|
tail = SCM_EOL;
|
2004-07-06 10:59:25 +00:00
|
|
|
|
return (scm_is_false (path)
|
1998-06-22 09:23:01 +00:00
|
|
|
|
? tail
|
2004-08-10 13:30:12 +00:00
|
|
|
|
: scm_append_x (scm_list_2 (scm_string_split (path, sep), tail)));
|
1998-06-22 09:23:01 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1998-06-22 09:23:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
1996-09-05 16:51:22 +00:00
|
|
|
|
/* Initialize the global variable %load-path, given the value of the
|
1996-10-30 23:34:33 +00:00
|
|
|
|
SCM_SITE_DIR and SCM_LIBRARY_DIR preprocessor symbols and the
|
1997-10-25 06:53:11 +00:00
|
|
|
|
GUILE_LOAD_PATH environment variable. */
|
1996-07-25 22:56:11 +00:00
|
|
|
|
void
|
1996-09-05 16:51:22 +00:00
|
|
|
|
scm_init_load_path ()
|
|
|
|
|
|
{
|
2004-08-13 12:28:23 +00:00
|
|
|
|
char *env;
|
1996-09-05 16:51:22 +00:00
|
|
|
|
SCM path = SCM_EOL;
|
|
|
|
|
|
|
1996-10-30 23:34:33 +00:00
|
|
|
|
#ifdef SCM_LIBRARY_DIR
|
* strings.h, strings.c: (scm_i_string_chars, scm_i_string_length,
scm_i_string_writable_chars, scm_i_string_stop_writing): New, to
replace SCM_I_STRING_CHARS and SCM_I_STRING_LENGTH. Updated all
uses.
(scm_i_make_string, scm_c_make_string): New, to replace
scm_allocate_string. Updated all uses.
(SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_UCHARS,
SCM_STRING_LENGTH): Deprecated.
(scm_allocate_string, scm_take_str, scm_take0str, scm_mem2string,
scm_str2string, scm_makfrom0str, scm_makfrom0str_opt):
Discouraged. Replaced all uses with scm_from_locale_string or
similar, as appropriate.
(scm_c_string_length, scm_c_string_ref, scm_c_string_set_x,
scm_c_substring, scm_c_substring_shared, scm_c_substring_copy,
scm_substring_shared, scm_substring_copy): New.
* symbols.c, symbols.h (SCM_SYMBOLP, SCM_SYMBOL_FUNC,
SCM_SET_SYMBOL_FUNC, SCM_SYMBOL_PROPS, SCM_SET_SYMBOL_PROPS,
SCM_SYMBOL_HASH, SCM_SYMBOL_INTERNED_P, scm_mem2symbol,
scm_str2symbol, scm_mem2uninterned_symbol): Discouraged.
(SCM_SYMBOL_LENGTH, SCM_SYMBOL_CHARS, scm_c_symbol2str):
Deprecated.
(SCM_MAKE_SYMBOL_TAG, SCM_SET_SYMBOL_LENGTH, SCM_SET_SYMBOL_CHARS,
SCM_PROP_SLOTS, SCM_SET_PROP_SLOTS): Removed.
(scm_is_symbol, scm_from_locale_symbol, scm_from_locale_symboln):
New, to replace scm_str2symbol and scm_mem2symbol, respectively.
Updated all uses.
(scm_gensym): Generate only the number suffix in the buffer, just
string-append the prefix.
2004-08-19 17:19:44 +00:00
|
|
|
|
path = scm_list_3 (scm_from_locale_string (SCM_SITE_DIR),
|
|
|
|
|
|
scm_from_locale_string (SCM_LIBRARY_DIR),
|
|
|
|
|
|
scm_from_locale_string (SCM_PKGDATA_DIR));
|
1996-10-30 23:34:33 +00:00
|
|
|
|
#endif /* SCM_LIBRARY_DIR */
|
1996-09-05 16:51:22 +00:00
|
|
|
|
|
2004-08-13 12:28:23 +00:00
|
|
|
|
env = getenv ("GUILE_LOAD_PATH");
|
|
|
|
|
|
if (env)
|
|
|
|
|
|
path = scm_parse_path (scm_from_locale_string (env), path);
|
1997-10-25 06:53:11 +00:00
|
|
|
|
|
1996-09-05 16:51:22 +00:00
|
|
|
|
*scm_loc_load_path = path;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
1998-06-22 09:23:01 +00:00
|
|
|
|
SCM scm_listofnullstr;
|
1996-09-05 16:51:22 +00:00
|
|
|
|
|
2004-08-10 13:30:12 +00:00
|
|
|
|
/* Utility functions for assembling C strings in a buffer.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
struct stringbuf {
|
|
|
|
|
|
char *buf, *ptr;
|
|
|
|
|
|
size_t buf_len;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
stringbuf_free (void *data)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct stringbuf *buf = (struct stringbuf *)data;
|
|
|
|
|
|
free (buf->buf);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
stringbuf_grow (struct stringbuf *buf)
|
|
|
|
|
|
{
|
|
|
|
|
|
size_t ptroff = buf->ptr - buf->buf;
|
|
|
|
|
|
buf->buf_len *= 2;
|
|
|
|
|
|
buf->buf = scm_realloc (buf->buf, buf->buf_len);
|
|
|
|
|
|
buf->ptr = buf->buf + ptroff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
stringbuf_cat_locale_string (struct stringbuf *buf, SCM str)
|
|
|
|
|
|
{
|
|
|
|
|
|
size_t max_len = buf->buf_len - (buf->ptr - buf->buf) - 1;
|
|
|
|
|
|
size_t len = scm_to_locale_stringbuf (str, buf->ptr, max_len);
|
|
|
|
|
|
if (len > max_len)
|
|
|
|
|
|
{
|
|
|
|
|
|
/* buffer is too small, double its size and try again.
|
|
|
|
|
|
*/
|
|
|
|
|
|
stringbuf_grow (buf);
|
|
|
|
|
|
stringbuf_cat_locale_string (buf, str);
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
/* string fits, terminate it and check for embedded '\0'.
|
|
|
|
|
|
*/
|
|
|
|
|
|
buf->ptr[len] = '\0';
|
|
|
|
|
|
if (strlen (buf->ptr) != len)
|
|
|
|
|
|
scm_misc_error (NULL,
|
|
|
|
|
|
"string contains #\\nul character: ~S",
|
|
|
|
|
|
scm_list_1 (str));
|
|
|
|
|
|
buf->ptr += len;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
stringbuf_cat (struct stringbuf *buf, char *str)
|
|
|
|
|
|
{
|
|
|
|
|
|
size_t max_len = buf->buf_len - (buf->ptr - buf->buf) - 1;
|
|
|
|
|
|
size_t len = strlen (str);
|
|
|
|
|
|
if (len > max_len)
|
|
|
|
|
|
{
|
|
|
|
|
|
/* buffer is too small, double its size and try again.
|
|
|
|
|
|
*/
|
|
|
|
|
|
stringbuf_grow (buf);
|
|
|
|
|
|
stringbuf_cat (buf, str);
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
/* string fits, copy it into buffer.
|
|
|
|
|
|
*/
|
|
|
|
|
|
strcpy (buf->ptr, str);
|
|
|
|
|
|
buf->ptr += len;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1998-06-22 09:23:01 +00:00
|
|
|
|
/* Search PATH for a directory containing a file named FILENAME.
|
1996-09-05 16:51:22 +00:00
|
|
|
|
The file must be readable, and not a directory.
|
1996-10-28 23:05:37 +00:00
|
|
|
|
If we find one, return its full filename; otherwise, return #f.
|
1999-09-03 07:54:06 +00:00
|
|
|
|
If FILENAME is absolute, return it unchanged.
|
|
|
|
|
|
If given, EXTENSIONS is a list of strings; for each directory
|
|
|
|
|
|
in PATH, we search for FILENAME concatenated with each EXTENSION. */
|
2000-01-05 19:25:37 +00:00
|
|
|
|
SCM_DEFINE (scm_search_path, "search-path", 2, 1, 0,
|
1999-12-12 02:36:16 +00:00
|
|
|
|
(SCM path, SCM filename, SCM extensions),
|
2001-02-16 15:12:26 +00:00
|
|
|
|
"Search @var{path} for a directory containing a file named\n"
|
|
|
|
|
|
"@var{filename}. The file must be readable, and not a directory.\n"
|
|
|
|
|
|
"If we find one, return its full filename; otherwise, return\n"
|
|
|
|
|
|
"@code{#f}. If @var{filename} is absolute, return it unchanged.\n"
|
|
|
|
|
|
"If given, @var{extensions} is a list of strings; for each\n"
|
|
|
|
|
|
"directory in @var{path}, we search for @var{filename}\n"
|
|
|
|
|
|
"concatenated with each @var{extension}.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_search_path
|
1996-09-05 16:51:22 +00:00
|
|
|
|
{
|
2004-08-10 13:30:12 +00:00
|
|
|
|
struct stringbuf buf;
|
1999-09-03 07:54:06 +00:00
|
|
|
|
char *filename_chars;
|
2004-08-10 13:30:12 +00:00
|
|
|
|
size_t filename_len;
|
|
|
|
|
|
SCM result = SCM_BOOL_F;
|
1996-09-05 16:51:22 +00:00
|
|
|
|
|
1998-06-22 09:23:01 +00:00
|
|
|
|
if (SCM_UNBNDP (extensions))
|
1999-09-03 07:54:06 +00:00
|
|
|
|
extensions = SCM_EOL;
|
|
|
|
|
|
|
2006-01-29 00:23:28 +00:00
|
|
|
|
scm_dynwind_begin (0);
|
2004-08-10 13:30:12 +00:00
|
|
|
|
|
|
|
|
|
|
filename_chars = scm_to_locale_string (filename);
|
|
|
|
|
|
filename_len = strlen (filename_chars);
|
2006-01-29 00:23:28 +00:00
|
|
|
|
scm_dynwind_free (filename_chars);
|
1996-09-05 16:51:22 +00:00
|
|
|
|
|
1996-10-28 23:05:37 +00:00
|
|
|
|
/* If FILENAME is absolute, return it unchanged. */
|
2003-05-29 14:39:13 +00:00
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
|
|
if (((filename_len >= 1) &&
|
|
|
|
|
|
(filename_chars[0] == '/' || filename_chars[0] == '\\')) ||
|
|
|
|
|
|
((filename_len >= 3) && filename_chars[1] == ':' &&
|
|
|
|
|
|
((filename_chars[0] >= 'a' && filename_chars[0] <= 'z') ||
|
|
|
|
|
|
(filename_chars[0] >= 'A' && filename_chars[0] <= 'Z')) &&
|
|
|
|
|
|
(filename_chars[2] == '/' || filename_chars[2] == '\\')))
|
|
|
|
|
|
#else
|
1999-09-03 07:54:06 +00:00
|
|
|
|
if (filename_len >= 1 && filename_chars[0] == '/')
|
2003-05-29 14:39:13 +00:00
|
|
|
|
#endif
|
2004-08-10 13:30:12 +00:00
|
|
|
|
{
|
2006-01-29 00:23:28 +00:00
|
|
|
|
scm_dynwind_end ();
|
2004-08-10 13:30:12 +00:00
|
|
|
|
return filename;
|
|
|
|
|
|
}
|
1996-10-28 23:05:37 +00:00
|
|
|
|
|
1999-09-03 07:54:06 +00:00
|
|
|
|
/* If FILENAME has an extension, don't try to add EXTENSIONS to it. */
|
|
|
|
|
|
{
|
|
|
|
|
|
char *endp;
|
|
|
|
|
|
|
|
|
|
|
|
for (endp = filename_chars + filename_len - 1;
|
|
|
|
|
|
endp >= filename_chars;
|
|
|
|
|
|
endp--)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (*endp == '.')
|
|
|
|
|
|
{
|
|
|
|
|
|
/* This filename already has an extension, so cancel the
|
|
|
|
|
|
list of extensions. */
|
|
|
|
|
|
extensions = SCM_EOL;
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
2003-05-29 14:39:13 +00:00
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
|
|
else if (*endp == '/' || *endp == '\\')
|
|
|
|
|
|
#else
|
1999-09-03 07:54:06 +00:00
|
|
|
|
else if (*endp == '/')
|
2003-05-29 14:39:13 +00:00
|
|
|
|
#endif
|
1999-09-03 07:54:06 +00:00
|
|
|
|
/* This filename has no extension, so keep the current list
|
|
|
|
|
|
of extensions. */
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2004-08-10 13:30:12 +00:00
|
|
|
|
/* This simplifies the loop below a bit.
|
|
|
|
|
|
*/
|
2004-09-22 17:41:37 +00:00
|
|
|
|
if (scm_is_null (extensions))
|
2004-08-10 13:30:12 +00:00
|
|
|
|
extensions = scm_listofnullstr;
|
1996-09-05 16:51:22 +00:00
|
|
|
|
|
2004-08-10 13:30:12 +00:00
|
|
|
|
buf.buf_len = 512;
|
|
|
|
|
|
buf.buf = scm_malloc (buf.buf_len);
|
2006-01-29 00:23:28 +00:00
|
|
|
|
scm_dynwind_unwind_handler (stringbuf_free, &buf, SCM_F_WIND_EXPLICITLY);
|
1999-08-29 14:22:29 +00:00
|
|
|
|
|
2004-08-10 13:30:12 +00:00
|
|
|
|
/* Try every path element.
|
|
|
|
|
|
*/
|
2004-09-22 17:41:37 +00:00
|
|
|
|
for (; scm_is_pair (path); path = SCM_CDR (path))
|
2004-08-10 13:30:12 +00:00
|
|
|
|
{
|
|
|
|
|
|
SCM dir = SCM_CAR (path);
|
|
|
|
|
|
SCM exts;
|
|
|
|
|
|
size_t sans_ext_len;
|
|
|
|
|
|
|
|
|
|
|
|
buf.ptr = buf.buf;
|
|
|
|
|
|
stringbuf_cat_locale_string (&buf, dir);
|
|
|
|
|
|
|
|
|
|
|
|
/* Concatenate the path name and the filename. */
|
|
|
|
|
|
|
2003-05-29 14:39:13 +00:00
|
|
|
|
#ifdef __MINGW32__
|
2005-05-12 06:39:50 +00:00
|
|
|
|
if ((buf.ptr > buf.buf) && (buf.ptr[-1] != '/') && (buf.ptr[-1] != '\\'))
|
2003-05-29 14:39:13 +00:00
|
|
|
|
#else
|
2005-05-12 06:39:50 +00:00
|
|
|
|
if ((buf.ptr > buf.buf) && (buf.ptr[-1] != '/'))
|
2003-05-29 14:39:13 +00:00
|
|
|
|
#endif
|
2004-08-10 13:30:12 +00:00
|
|
|
|
stringbuf_cat (&buf, "/");
|
|
|
|
|
|
|
|
|
|
|
|
stringbuf_cat (&buf, filename_chars);
|
|
|
|
|
|
sans_ext_len = buf.ptr - buf.buf;
|
|
|
|
|
|
|
|
|
|
|
|
/* Try every extension. */
|
2004-09-22 17:41:37 +00:00
|
|
|
|
for (exts = extensions; scm_is_pair (exts); exts = SCM_CDR (exts))
|
2004-08-10 13:30:12 +00:00
|
|
|
|
{
|
|
|
|
|
|
SCM ext = SCM_CAR (exts);
|
|
|
|
|
|
struct stat mode;
|
|
|
|
|
|
|
|
|
|
|
|
buf.ptr = buf.buf + sans_ext_len;
|
|
|
|
|
|
stringbuf_cat_locale_string (&buf, ext);
|
|
|
|
|
|
|
|
|
|
|
|
/* If the file exists at all, we should return it. If the
|
|
|
|
|
|
file is inaccessible, then that's an error. */
|
|
|
|
|
|
|
|
|
|
|
|
if (stat (buf.buf, &mode) == 0
|
|
|
|
|
|
&& ! (mode.st_mode & S_IFDIR))
|
|
|
|
|
|
{
|
|
|
|
|
|
result = scm_from_locale_string (buf.buf);
|
|
|
|
|
|
goto end;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!SCM_NULL_OR_NIL_P (exts))
|
|
|
|
|
|
scm_wrong_type_arg_msg (NULL, 0, extensions, "proper list");
|
|
|
|
|
|
}
|
1999-09-03 07:54:06 +00:00
|
|
|
|
|
2004-08-10 13:30:12 +00:00
|
|
|
|
if (!SCM_NULL_OR_NIL_P (path))
|
|
|
|
|
|
scm_wrong_type_arg_msg (NULL, 0, path, "proper list");
|
1999-09-03 07:54:06 +00:00
|
|
|
|
|
2004-08-10 13:30:12 +00:00
|
|
|
|
end:
|
2006-01-29 00:23:28 +00:00
|
|
|
|
scm_dynwind_end ();
|
2004-08-10 13:30:12 +00:00
|
|
|
|
return result;
|
1996-09-05 16:51:22 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-09-05 16:51:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
1998-06-22 09:23:01 +00:00
|
|
|
|
/* Search %load-path for a directory containing a file named FILENAME.
|
|
|
|
|
|
The file must be readable, and not a directory.
|
|
|
|
|
|
If we find one, return its full filename; otherwise, return #f.
|
|
|
|
|
|
If FILENAME is absolute, return it unchanged. */
|
2000-01-05 19:25:37 +00:00
|
|
|
|
SCM_DEFINE (scm_sys_search_load_path, "%search-load-path", 1, 0, 0,
|
2001-03-12 07:08:46 +00:00
|
|
|
|
(SCM filename),
|
|
|
|
|
|
"Search @var{%load-path} for the file named @var{filename},\n"
|
|
|
|
|
|
"which must be readable by the current user. If @var{filename}\n"
|
|
|
|
|
|
"is found in the list of paths to search or is an absolute\n"
|
|
|
|
|
|
"pathname, return its full pathname. Otherwise, return\n"
|
|
|
|
|
|
"@code{#f}. Filenames may have any of the optional extensions\n"
|
|
|
|
|
|
"in the @code{%load-extensions} list; @code{%search-load-path}\n"
|
|
|
|
|
|
"will try each extension automatically.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_sys_search_load_path
|
1998-06-22 09:23:01 +00:00
|
|
|
|
{
|
|
|
|
|
|
SCM path = *scm_loc_load_path;
|
|
|
|
|
|
SCM exts = *scm_loc_load_extensions;
|
2000-10-30 11:42:26 +00:00
|
|
|
|
SCM_VALIDATE_STRING (1, filename);
|
1999-12-12 02:36:16 +00:00
|
|
|
|
|
2001-03-06 01:22:37 +00:00
|
|
|
|
if (scm_ilength (path) < 0)
|
|
|
|
|
|
SCM_MISC_ERROR ("%load-path is not a proper list", SCM_EOL);
|
|
|
|
|
|
if (scm_ilength (exts) < 0)
|
|
|
|
|
|
SCM_MISC_ERROR ("%load-extension list is not a proper list", SCM_EOL);
|
1999-12-12 02:36:16 +00:00
|
|
|
|
return scm_search_path (path, filename, exts);
|
1998-06-22 09:23:01 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1998-06-22 09:23:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:25:37 +00:00
|
|
|
|
SCM_DEFINE (scm_primitive_load_path, "primitive-load-path", 1, 0, 0,
|
2001-03-12 07:08:46 +00:00
|
|
|
|
(SCM filename),
|
|
|
|
|
|
"Search @var{%load-path} for the file named @var{filename} and\n"
|
|
|
|
|
|
"load it into the top-level environment. If @var{filename} is a\n"
|
|
|
|
|
|
"relative pathname and is not found in the list of search paths,\n"
|
|
|
|
|
|
"an error is signalled.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_primitive_load_path
|
1996-09-05 16:51:22 +00:00
|
|
|
|
{
|
1996-10-28 23:05:37 +00:00
|
|
|
|
SCM full_filename;
|
|
|
|
|
|
|
|
|
|
|
|
full_filename = scm_sys_search_load_path (filename);
|
|
|
|
|
|
|
2004-07-06 10:59:25 +00:00
|
|
|
|
if (scm_is_false (full_filename))
|
2004-08-12 11:57:42 +00:00
|
|
|
|
SCM_MISC_ERROR ("Unable to find file ~S in load path",
|
|
|
|
|
|
scm_list_1 (filename));
|
1996-10-28 23:05:37 +00:00
|
|
|
|
|
* strports.c (scm_read_0str, scm_eval_0str): update scm_read usage.
* gdbint.c (gdb_read): update scm_lreadr usage.
* load.h: update prototypes.
* load.c (scm_primitive_load, scm_read_and_eval_x,
scm_primitive_load_path): remove case_insensitive_p, sharp arguments.
* read.h: add prototype for scm_read_hash_extend. Change args for
other prototypes.
* read.c (scm_read_hash_procedures): new variable.
(scm_read_hash_extend): new procedure.
(scm_get_hash_procedure): new procedure.
* (scm_lreadr): use scm_get_hash_procedure instead of an argument
for extended # processing.
(scm_read, scm_lreadr, scm_lreadrecparen, scm_lreadparen,
scm_read_token): remove case_i, sharp arguments. Change callers.
* read.h (SCM_N_READ_OPTIONS): increase to 3.
(SCM_CASE_INSENSITIVE_P): define.
* read.c: add case-insensitive option to scm_read_opts.
* (scm_read_token): use SCM_CASE_INSENSITIVE_P instead of an argument
to determine whether to convert symbol case.
(default_case_i): definition removed.
* read.c (scm_read_token): if case_i, downcase ic before doing
anything with it.
1997-03-08 18:58:24 +00:00
|
|
|
|
return scm_primitive_load (full_filename);
|
1996-09-05 16:51:22 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-09-05 16:51:22 +00:00
|
|
|
|
|
2001-06-29 23:13:43 +00:00
|
|
|
|
SCM
|
|
|
|
|
|
scm_c_primitive_load_path (const char *filename)
|
|
|
|
|
|
{
|
* strings.h, strings.c: (scm_i_string_chars, scm_i_string_length,
scm_i_string_writable_chars, scm_i_string_stop_writing): New, to
replace SCM_I_STRING_CHARS and SCM_I_STRING_LENGTH. Updated all
uses.
(scm_i_make_string, scm_c_make_string): New, to replace
scm_allocate_string. Updated all uses.
(SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_UCHARS,
SCM_STRING_LENGTH): Deprecated.
(scm_allocate_string, scm_take_str, scm_take0str, scm_mem2string,
scm_str2string, scm_makfrom0str, scm_makfrom0str_opt):
Discouraged. Replaced all uses with scm_from_locale_string or
similar, as appropriate.
(scm_c_string_length, scm_c_string_ref, scm_c_string_set_x,
scm_c_substring, scm_c_substring_shared, scm_c_substring_copy,
scm_substring_shared, scm_substring_copy): New.
* symbols.c, symbols.h (SCM_SYMBOLP, SCM_SYMBOL_FUNC,
SCM_SET_SYMBOL_FUNC, SCM_SYMBOL_PROPS, SCM_SET_SYMBOL_PROPS,
SCM_SYMBOL_HASH, SCM_SYMBOL_INTERNED_P, scm_mem2symbol,
scm_str2symbol, scm_mem2uninterned_symbol): Discouraged.
(SCM_SYMBOL_LENGTH, SCM_SYMBOL_CHARS, scm_c_symbol2str):
Deprecated.
(SCM_MAKE_SYMBOL_TAG, SCM_SET_SYMBOL_LENGTH, SCM_SET_SYMBOL_CHARS,
SCM_PROP_SLOTS, SCM_SET_PROP_SLOTS): Removed.
(scm_is_symbol, scm_from_locale_symbol, scm_from_locale_symboln):
New, to replace scm_str2symbol and scm_mem2symbol, respectively.
Updated all uses.
(scm_gensym): Generate only the number suffix in the buffer, just
string-append the prefix.
2004-08-19 17:19:44 +00:00
|
|
|
|
return scm_primitive_load_path (scm_from_locale_string (filename));
|
2001-06-29 23:13:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
1996-09-05 16:51:22 +00:00
|
|
|
|
|
1997-06-23 23:48:39 +00:00
|
|
|
|
/* Information about the build environment. */
|
1996-09-05 16:51:22 +00:00
|
|
|
|
|
1997-06-23 23:48:39 +00:00
|
|
|
|
/* Initialize the scheme variable %guile-build-info, based on data
|
|
|
|
|
|
provided by the Makefile, via libpath.h. */
|
|
|
|
|
|
static void
|
|
|
|
|
|
init_build_info ()
|
|
|
|
|
|
{
|
|
|
|
|
|
static struct { char *name; char *value; } info[] = SCM_BUILD_INFO;
|
2001-05-15 14:57:22 +00:00
|
|
|
|
SCM *loc = SCM_VARIABLE_LOC (scm_c_define ("%guile-build-info", SCM_EOL));
|
2001-05-26 20:51:22 +00:00
|
|
|
|
unsigned long i;
|
1997-06-23 23:48:39 +00:00
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < (sizeof (info) / sizeof (info[0])); i++)
|
* strings.h, strings.c: (scm_i_string_chars, scm_i_string_length,
scm_i_string_writable_chars, scm_i_string_stop_writing): New, to
replace SCM_I_STRING_CHARS and SCM_I_STRING_LENGTH. Updated all
uses.
(scm_i_make_string, scm_c_make_string): New, to replace
scm_allocate_string. Updated all uses.
(SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_UCHARS,
SCM_STRING_LENGTH): Deprecated.
(scm_allocate_string, scm_take_str, scm_take0str, scm_mem2string,
scm_str2string, scm_makfrom0str, scm_makfrom0str_opt):
Discouraged. Replaced all uses with scm_from_locale_string or
similar, as appropriate.
(scm_c_string_length, scm_c_string_ref, scm_c_string_set_x,
scm_c_substring, scm_c_substring_shared, scm_c_substring_copy,
scm_substring_shared, scm_substring_copy): New.
* symbols.c, symbols.h (SCM_SYMBOLP, SCM_SYMBOL_FUNC,
SCM_SET_SYMBOL_FUNC, SCM_SYMBOL_PROPS, SCM_SET_SYMBOL_PROPS,
SCM_SYMBOL_HASH, SCM_SYMBOL_INTERNED_P, scm_mem2symbol,
scm_str2symbol, scm_mem2uninterned_symbol): Discouraged.
(SCM_SYMBOL_LENGTH, SCM_SYMBOL_CHARS, scm_c_symbol2str):
Deprecated.
(SCM_MAKE_SYMBOL_TAG, SCM_SET_SYMBOL_LENGTH, SCM_SET_SYMBOL_CHARS,
SCM_PROP_SLOTS, SCM_SET_PROP_SLOTS): Removed.
(scm_is_symbol, scm_from_locale_symbol, scm_from_locale_symboln):
New, to replace scm_str2symbol and scm_mem2symbol, respectively.
Updated all uses.
(scm_gensym): Generate only the number suffix in the buffer, just
string-append the prefix.
2004-08-19 17:19:44 +00:00
|
|
|
|
{
|
|
|
|
|
|
SCM key = scm_from_locale_symbol (info[i].name);
|
|
|
|
|
|
SCM val = scm_from_locale_string (info[i].value);
|
|
|
|
|
|
*loc = scm_acons (key, val, *loc);
|
|
|
|
|
|
}
|
1997-06-23 23:48:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1996-07-25 22:56:11 +00:00
|
|
|
|
void
|
|
|
|
|
|
scm_init_load ()
|
|
|
|
|
|
{
|
* list.h (scm_list_1, scm_list_2, scm_list_3, scm_list_4, scm_list_5,
scm_list_n): New functions.
(SCM_LIST0, SCM_LIST1, SCM_LIST2, SCM_LIST3, SCM_LIST4, SCM_LIST5,
SCM_LIST6, SCM_LIST7, SCM_LIST8, SCM_LIST9, scm_listify): Deprecated.
(lots of files): Use the new functions.
* goops.c (CALL_GF1, CALL_GF2, CALL_GF3, CALL_GF4): Use scm_call_N.
* strings.c: #include "libguile/deprecation.h".
2001-06-28 01:11:59 +00:00
|
|
|
|
scm_listofnullstr = scm_permanent_object (scm_list_1 (scm_nullstr));
|
2001-05-15 14:57:22 +00:00
|
|
|
|
scm_loc_load_path = SCM_VARIABLE_LOC (scm_c_define ("%load-path", SCM_EOL));
|
1996-10-28 23:05:37 +00:00
|
|
|
|
scm_loc_load_extensions
|
2001-05-15 14:57:22 +00:00
|
|
|
|
= SCM_VARIABLE_LOC (scm_c_define ("%load-extensions",
|
* strings.h, strings.c: (scm_i_string_chars, scm_i_string_length,
scm_i_string_writable_chars, scm_i_string_stop_writing): New, to
replace SCM_I_STRING_CHARS and SCM_I_STRING_LENGTH. Updated all
uses.
(scm_i_make_string, scm_c_make_string): New, to replace
scm_allocate_string. Updated all uses.
(SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_UCHARS,
SCM_STRING_LENGTH): Deprecated.
(scm_allocate_string, scm_take_str, scm_take0str, scm_mem2string,
scm_str2string, scm_makfrom0str, scm_makfrom0str_opt):
Discouraged. Replaced all uses with scm_from_locale_string or
similar, as appropriate.
(scm_c_string_length, scm_c_string_ref, scm_c_string_set_x,
scm_c_substring, scm_c_substring_shared, scm_c_substring_copy,
scm_substring_shared, scm_substring_copy): New.
* symbols.c, symbols.h (SCM_SYMBOLP, SCM_SYMBOL_FUNC,
SCM_SET_SYMBOL_FUNC, SCM_SYMBOL_PROPS, SCM_SET_SYMBOL_PROPS,
SCM_SYMBOL_HASH, SCM_SYMBOL_INTERNED_P, scm_mem2symbol,
scm_str2symbol, scm_mem2uninterned_symbol): Discouraged.
(SCM_SYMBOL_LENGTH, SCM_SYMBOL_CHARS, scm_c_symbol2str):
Deprecated.
(SCM_MAKE_SYMBOL_TAG, SCM_SET_SYMBOL_LENGTH, SCM_SET_SYMBOL_CHARS,
SCM_PROP_SLOTS, SCM_SET_PROP_SLOTS): Removed.
(scm_is_symbol, scm_from_locale_symbol, scm_from_locale_symboln):
New, to replace scm_str2symbol and scm_mem2symbol, respectively.
Updated all uses.
(scm_gensym): Generate only the number suffix in the buffer, just
string-append the prefix.
2004-08-19 17:19:44 +00:00
|
|
|
|
scm_list_2 (scm_from_locale_string (".scm"),
|
|
|
|
|
|
scm_nullstr)));
|
2001-05-15 14:57:22 +00:00
|
|
|
|
scm_loc_load_hook = SCM_VARIABLE_LOC (scm_c_define ("%load-hook", SCM_BOOL_F));
|
1996-09-05 16:51:22 +00:00
|
|
|
|
|
2005-12-14 00:21:11 +00:00
|
|
|
|
the_reader = scm_make_fluid ();
|
|
|
|
|
|
the_reader_fluid_num = SCM_FLUID_NUM (the_reader);
|
|
|
|
|
|
SCM_FAST_FLUID_SET_X (the_reader_fluid_num, SCM_BOOL_F);
|
|
|
|
|
|
scm_c_define("current-reader", the_reader);
|
|
|
|
|
|
|
1997-06-23 23:48:39 +00:00
|
|
|
|
init_build_info ();
|
|
|
|
|
|
|
2000-04-21 14:16:44 +00:00
|
|
|
|
#include "libguile/load.x"
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
2000-03-19 19:01:16 +00:00
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
Local Variables:
|
|
|
|
|
|
c-file-style: "gnu"
|
|
|
|
|
|
End:
|
|
|
|
|
|
*/
|