2012-02-01 16:35:32 -05:00
|
|
|
|
/* Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2004, 2006, 2008,
|
2014-02-27 22:04:39 -05:00
|
|
|
|
* 2009, 2010, 2011, 2012, 2013, 2014 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
|
2009-06-17 00:22:09 +01:00
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
|
|
* as published by the Free Software Foundation; either version 3 of
|
|
|
|
|
|
* the License, or (at your option) any later version.
|
1996-07-25 22:56:11 +00:00
|
|
|
|
*
|
2009-06-17 00:22:09 +01:00
|
|
|
|
* This library is distributed in the hope that it will be useful, but
|
|
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
2003-04-05 19:15:35 +00:00
|
|
|
|
* 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
|
2009-06-17 00:22:09 +01: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
|
|
|
|
|
|
|
|
|
|
|
2008-09-13 15:35:27 +02:00
|
|
|
|
#ifdef HAVE_CONFIG_H
|
2003-03-25 23:57:16 +00:00
|
|
|
|
# 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"
|
2010-03-30 10:28:51 +02:00
|
|
|
|
#include "libguile/private-gc.h" /* scm_getenv_int */
|
2000-04-21 14:16:44 +00:00
|
|
|
|
#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"
|
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
|
|
|
|
|
2008-09-02 00:08:26 -07:00
|
|
|
|
#include "libguile/vm.h" /* for load-compiled/vm */
|
|
|
|
|
|
|
1996-09-05 16:51:22 +00:00
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
2009-06-02 22:18:02 +02:00
|
|
|
|
#ifdef HAVE_PWD_H
|
|
|
|
|
|
#include <pwd.h>
|
|
|
|
|
|
#endif /* HAVE_PWD_H */
|
|
|
|
|
|
|
1996-09-05 16:51:22 +00:00
|
|
|
|
#ifndef R_OK
|
|
|
|
|
|
#define R_OK 4
|
|
|
|
|
|
#endif
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
2010-09-04 16:07:58 +02:00
|
|
|
|
#include <stat-time.h>
|
|
|
|
|
|
|
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;
|
Remove GC-related code from fluids.
* libguile/fluids.c (all_dynamic_states, all_fluids): Remove. Together,
they prevented dynamic states and fluids to be collected. Callers no
longer use them.
(resize_all_states): Remove.
(grow_dynamic_state): New function.
(next_fluid_num): Don't call `resize_all_states ()'.
(scm_i_fluid_num, scm_i_fast_fluid_ref, scm_i_fast_fluid_set_x): Remove,
as they broke encapsulation and would have needed duplication of the lazy
dynamic state growing code.
(scm_fluid_ref, scm_fluid_set_x): Lazily grow the dynamic state's fluid
vector.
(scm_fluids_prehistory): Don't set an `scm_after_sweep_c_hook'.
* libguile/fluids.h (SCM_FLUID_NUM, SCM_FAST_FLUID_REF, SCM_FAST_FLUID_SET_X,
scm_i_fluid_num, scm_i_fast_fluid_set_x, scm_i_fast_fluid_ref): Remove.
* libguile/load.c (the_reader_fluid_num): Remove.
(scm_primitive_load): Use `scm_fluid_ref ()' instead of
`SCM_FAST_FLUID_REF ()'.
(scm_init_load): Likewise.
2008-09-17 00:25:03 +02:00
|
|
|
|
|
2005-12-14 00:21:11 +00:00
|
|
|
|
|
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;
|
2012-01-09 16:07:46 +01:00
|
|
|
|
SCM ret = SCM_UNSPECIFIED;
|
|
|
|
|
|
|
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
|
|
|
|
|
2012-01-09 16:07:46 +01:00
|
|
|
|
{
|
|
|
|
|
|
SCM port;
|
|
|
|
|
|
|
2013-12-24 06:48:44 -05:00
|
|
|
|
port = scm_open_file_with_encoding (filename,
|
|
|
|
|
|
scm_from_latin1_string ("r"),
|
|
|
|
|
|
SCM_BOOL_T, /* guess_encoding */
|
|
|
|
|
|
scm_from_latin1_string ("UTF-8"));
|
|
|
|
|
|
|
2006-01-29 00:23:28 +00:00
|
|
|
|
scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
|
|
|
|
|
|
scm_i_dynwind_current_load_port (port);
|
2009-11-14 16:27:28 +01:00
|
|
|
|
|
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. */
|
Remove GC-related code from fluids.
* libguile/fluids.c (all_dynamic_states, all_fluids): Remove. Together,
they prevented dynamic states and fluids to be collected. Callers no
longer use them.
(resize_all_states): Remove.
(grow_dynamic_state): New function.
(next_fluid_num): Don't call `resize_all_states ()'.
(scm_i_fluid_num, scm_i_fast_fluid_ref, scm_i_fast_fluid_set_x): Remove,
as they broke encapsulation and would have needed duplication of the lazy
dynamic state growing code.
(scm_fluid_ref, scm_fluid_set_x): Lazily grow the dynamic state's fluid
vector.
(scm_fluids_prehistory): Don't set an `scm_after_sweep_c_hook'.
* libguile/fluids.h (SCM_FLUID_NUM, SCM_FAST_FLUID_REF, SCM_FAST_FLUID_SET_X,
scm_i_fluid_num, scm_i_fast_fluid_set_x, scm_i_fast_fluid_ref): Remove.
* libguile/load.c (the_reader_fluid_num): Remove.
(scm_primitive_load): Use `scm_fluid_ref ()' instead of
`SCM_FAST_FLUID_REF ()'.
(scm_init_load): Likewise.
2008-09-17 00:25:03 +02:00
|
|
|
|
reader = scm_fluid_ref (the_reader);
|
2011-05-13 13:04:49 +02:00
|
|
|
|
if (scm_is_false (reader))
|
2005-12-14 00:21:11 +00:00
|
|
|
|
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
|
|
|
|
|
2012-01-09 16:07:46 +01:00
|
|
|
|
ret = scm_primitive_eval_x (form);
|
2005-03-02 20:13:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2006-01-29 00:23:28 +00:00
|
|
|
|
scm_dynwind_end ();
|
1996-07-25 22:56:11 +00:00
|
|
|
|
scm_close_port (port);
|
|
|
|
|
|
}
|
2012-01-09 16:07:46 +01:00
|
|
|
|
return ret;
|
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
|
|
|
|
(),
|
2010-08-06 13:15:29 +02:00
|
|
|
|
"Return the directory where users should install Scheme code for use\n"
|
|
|
|
|
|
"with this version of Guile.\n\n"
|
|
|
|
|
|
"E.g., may return \"/usr/share/guile/site/" SCM_EFFECTIVE_VERSION "\".")
|
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 */
|
|
|
|
|
|
|
2010-08-06 13:15:29 +02:00
|
|
|
|
#ifdef SCM_GLOBAL_SITE_DIR
|
|
|
|
|
|
SCM_DEFINE (scm_sys_global_site_dir, "%global-site-dir", 0,0,0,
|
|
|
|
|
|
(),
|
|
|
|
|
|
"Return the directory where users should install Scheme code for use\n"
|
|
|
|
|
|
"with all versions of Guile.\n\n"
|
|
|
|
|
|
"E.g., may return \"/usr/share/guile/site\".")
|
|
|
|
|
|
#define FUNC_NAME s_scm_sys_global_site_dir
|
|
|
|
|
|
{
|
|
|
|
|
|
return scm_from_locale_string (SCM_GLOBAL_SITE_DIR);
|
|
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
#endif /* SCM_GLOBAL_SITE_DIR */
|
1999-12-14 17:41:59 +00:00
|
|
|
|
|
2013-03-10 23:20:22 +01:00
|
|
|
|
#ifdef SCM_SITE_CCACHE_DIR
|
|
|
|
|
|
SCM_DEFINE (scm_sys_site_ccache_dir, "%site-ccache-dir", 0,0,0,
|
|
|
|
|
|
(),
|
|
|
|
|
|
"Return the directory where users should install compiled\n"
|
|
|
|
|
|
"@code{.go} files for use with this version of Guile.\n\n"
|
|
|
|
|
|
"E.g., may return \"/usr/lib/guile/" SCM_EFFECTIVE_VERSION "/site-ccache\".")
|
|
|
|
|
|
#define FUNC_NAME s_scm_sys_site_ccache_dir
|
|
|
|
|
|
{
|
|
|
|
|
|
return scm_from_locale_string (SCM_SITE_CCACHE_DIR);
|
|
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
#endif /* SCM_SITE_CCACHE_DIR */
|
|
|
|
|
|
|
1999-12-14 17:41:59 +00:00
|
|
|
|
|
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;
|
|
|
|
|
|
|
2009-06-02 22:18:02 +02:00
|
|
|
|
/* Like %load-path and %load-extensions, but for compiled files. */
|
|
|
|
|
|
static SCM *scm_loc_load_compiled_path;
|
2008-09-02 00:08:26 -07:00
|
|
|
|
static SCM *scm_loc_load_compiled_extensions;
|
|
|
|
|
|
|
2009-06-03 18:22:39 +02:00
|
|
|
|
/* Whether we should try to auto-compile. */
|
2011-02-13 10:41:44 +01:00
|
|
|
|
static SCM *scm_loc_load_should_auto_compile;
|
1997-10-25 06:53:11 +00:00
|
|
|
|
|
2011-04-15 11:27:27 +02:00
|
|
|
|
/* Whether to treat all auto-compiled files as stale. */
|
|
|
|
|
|
static SCM *scm_loc_fresh_auto_compile;
|
|
|
|
|
|
|
2011-02-13 10:41:44 +01:00
|
|
|
|
/* The fallback path for auto-compilation */
|
2009-06-05 01:20:19 +02:00
|
|
|
|
static SCM *scm_loc_compile_fallback_path;
|
1997-10-25 06:53:11 +00:00
|
|
|
|
|
2012-11-28 18:01:35 -05:00
|
|
|
|
/* Ellipsis: "..." */
|
|
|
|
|
|
static SCM scm_ellipsis;
|
|
|
|
|
|
|
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
|
|
|
|
|
2012-11-28 18:01:35 -05:00
|
|
|
|
SCM_DEFINE (scm_parse_path_with_ellipsis, "parse-path-with-ellipsis", 2, 0, 0,
|
|
|
|
|
|
(SCM path, SCM base),
|
|
|
|
|
|
"Parse @var{path}, which is expected to be a colon-separated\n"
|
|
|
|
|
|
"string, into a list and return the resulting list with\n"
|
|
|
|
|
|
"@var{base} (a list) spliced in place of the @code{...} path\n"
|
|
|
|
|
|
"component, if present, or else @var{base} is added to the end.\n"
|
|
|
|
|
|
"If @var{path} is @code{#f}, @var{base} is returned.")
|
|
|
|
|
|
#define FUNC_NAME s_scm_parse_path_with_ellipsis
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM lst = scm_parse_path (path, SCM_EOL);
|
|
|
|
|
|
SCM walk = lst;
|
|
|
|
|
|
SCM *prev = &lst;
|
|
|
|
|
|
|
|
|
|
|
|
while (!scm_is_null (walk) &&
|
|
|
|
|
|
scm_is_false (scm_equal_p (scm_car (walk), scm_ellipsis)))
|
|
|
|
|
|
{
|
|
|
|
|
|
prev = SCM_CDRLOC (walk);
|
|
|
|
|
|
walk = *prev;
|
|
|
|
|
|
}
|
|
|
|
|
|
*prev = scm_is_null (walk)
|
|
|
|
|
|
? base
|
|
|
|
|
|
: scm_append (scm_list_2 (base, scm_cdr (walk)));
|
|
|
|
|
|
return lst;
|
|
|
|
|
|
}
|
|
|
|
|
|
#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;
|
2009-06-02 22:18:02 +02:00
|
|
|
|
SCM cpath = SCM_EOL;
|
1996-09-05 16:51:22 +00:00
|
|
|
|
|
1996-10-30 23:34:33 +00:00
|
|
|
|
#ifdef SCM_LIBRARY_DIR
|
2008-09-18 23:04:58 +02:00
|
|
|
|
env = getenv ("GUILE_SYSTEM_PATH");
|
|
|
|
|
|
if (env && strcmp (env, "") == 0)
|
|
|
|
|
|
/* special-case interpret system-path=="" as meaning no system path instead
|
|
|
|
|
|
of '("") */
|
|
|
|
|
|
;
|
|
|
|
|
|
else if (env)
|
|
|
|
|
|
path = scm_parse_path (scm_from_locale_string (env), path);
|
|
|
|
|
|
else
|
2010-08-06 13:15:29 +02:00
|
|
|
|
path = scm_list_4 (scm_from_locale_string (SCM_LIBRARY_DIR),
|
2009-12-15 10:49:22 +01:00
|
|
|
|
scm_from_locale_string (SCM_SITE_DIR),
|
2010-08-06 13:15:29 +02:00
|
|
|
|
scm_from_locale_string (SCM_GLOBAL_SITE_DIR),
|
2008-09-18 23:04:58 +02:00
|
|
|
|
scm_from_locale_string (SCM_PKGDATA_DIR));
|
2009-06-02 22:18:02 +02:00
|
|
|
|
|
|
|
|
|
|
env = getenv ("GUILE_SYSTEM_COMPILED_PATH");
|
|
|
|
|
|
if (env && strcmp (env, "") == 0)
|
|
|
|
|
|
/* like above */
|
|
|
|
|
|
;
|
|
|
|
|
|
else if (env)
|
|
|
|
|
|
cpath = scm_parse_path (scm_from_locale_string (env), cpath);
|
|
|
|
|
|
else
|
2011-07-21 10:36:13 +02:00
|
|
|
|
{
|
|
|
|
|
|
cpath = scm_list_2 (scm_from_locale_string (SCM_CCACHE_DIR),
|
|
|
|
|
|
scm_from_locale_string (SCM_SITE_CCACHE_DIR));
|
|
|
|
|
|
}
|
2009-06-05 10:06:39 +02:00
|
|
|
|
|
1996-10-30 23:34:33 +00:00
|
|
|
|
#endif /* SCM_LIBRARY_DIR */
|
1996-09-05 16:51:22 +00:00
|
|
|
|
|
2009-06-05 10:06:39 +02:00
|
|
|
|
{
|
2009-06-20 14:26:54 +02:00
|
|
|
|
char cachedir[1024];
|
|
|
|
|
|
char *e;
|
|
|
|
|
|
#ifdef HAVE_GETPWENT
|
|
|
|
|
|
struct passwd *pwd;
|
|
|
|
|
|
#endif
|
2009-06-02 22:18:02 +02:00
|
|
|
|
|
2009-08-11 21:16:05 +02:00
|
|
|
|
#define FALLBACK_DIR \
|
|
|
|
|
|
"guile/ccache/" SCM_EFFECTIVE_VERSION "-" SCM_OBJCODE_MACHINE_VERSION_STRING
|
2009-06-20 14:26:54 +02:00
|
|
|
|
|
|
|
|
|
|
if ((e = getenv ("XDG_CACHE_HOME")))
|
2009-08-20 17:56:44 +02:00
|
|
|
|
snprintf (cachedir, sizeof(cachedir), "%s/" FALLBACK_DIR, e);
|
2009-06-20 14:26:54 +02:00
|
|
|
|
else if ((e = getenv ("HOME")))
|
|
|
|
|
|
snprintf (cachedir, sizeof(cachedir), "%s/.cache/" FALLBACK_DIR, e);
|
2009-06-02 22:18:02 +02:00
|
|
|
|
#ifdef HAVE_GETPWENT
|
2009-06-20 14:26:54 +02:00
|
|
|
|
else if ((pwd = getpwuid (getuid ())) && pwd->pw_dir)
|
|
|
|
|
|
snprintf (cachedir, sizeof(cachedir), "%s/.cache/" FALLBACK_DIR,
|
|
|
|
|
|
pwd->pw_dir);
|
2009-06-02 22:18:02 +02:00
|
|
|
|
#endif /* HAVE_GETPWENT */
|
2011-02-15 16:35:03 +01:00
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
|
|
else if ((e = getenv ("LOCALAPPDATA")))
|
|
|
|
|
|
snprintf (cachedir, sizeof (cachedir), "%s/.cache/" FALLBACK_DIR, e);
|
|
|
|
|
|
else if ((e = getenv ("APPDATA")))
|
|
|
|
|
|
snprintf (cachedir, sizeof (cachedir), "%s/.cache/" FALLBACK_DIR, e);
|
|
|
|
|
|
#endif /* __MINGW32__ */
|
2009-06-20 14:26:54 +02:00
|
|
|
|
else
|
|
|
|
|
|
cachedir[0] = 0;
|
|
|
|
|
|
|
|
|
|
|
|
if (cachedir[0])
|
|
|
|
|
|
*scm_loc_compile_fallback_path = scm_from_locale_string (cachedir);
|
2009-06-05 10:06:39 +02:00
|
|
|
|
}
|
1996-09-05 16:51:22 +00:00
|
|
|
|
|
2004-08-13 12:28:23 +00:00
|
|
|
|
env = getenv ("GUILE_LOAD_PATH");
|
|
|
|
|
|
if (env)
|
2012-11-28 18:01:35 -05:00
|
|
|
|
path = scm_parse_path_with_ellipsis (scm_from_locale_string (env), path);
|
1997-10-25 06:53:11 +00:00
|
|
|
|
|
2009-06-02 22:18:02 +02:00
|
|
|
|
env = getenv ("GUILE_LOAD_COMPILED_PATH");
|
|
|
|
|
|
if (env)
|
2012-11-28 18:01:35 -05:00
|
|
|
|
cpath = scm_parse_path_with_ellipsis (scm_from_locale_string (env), cpath);
|
2009-06-02 22:18:02 +02:00
|
|
|
|
|
1996-09-05 16:51:22 +00:00
|
|
|
|
*scm_loc_load_path = path;
|
2009-06-02 22:18:02 +02:00
|
|
|
|
*scm_loc_load_compiled_path = cpath;
|
1996-09-05 16:51:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-09-02 00:08:26 -07:00
|
|
|
|
static int
|
|
|
|
|
|
scm_c_string_has_an_ext (char *str, size_t len, SCM extensions)
|
|
|
|
|
|
{
|
|
|
|
|
|
for (; !scm_is_null (extensions); extensions = SCM_CDR (extensions))
|
|
|
|
|
|
{
|
|
|
|
|
|
char *ext;
|
|
|
|
|
|
size_t extlen;
|
|
|
|
|
|
int match;
|
|
|
|
|
|
ext = scm_to_locale_string (SCM_CAR (extensions));
|
|
|
|
|
|
extlen = strlen (ext);
|
|
|
|
|
|
match = (len > extlen && str[len - extlen - 1] == '.'
|
|
|
|
|
|
&& strncmp (str + (len - extlen), ext, extlen) == 0);
|
|
|
|
|
|
free (ext);
|
|
|
|
|
|
if (match)
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2013-02-24 13:48:02 +01:00
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
|
|
#define FILE_NAME_SEPARATOR_STRING "\\"
|
|
|
|
|
|
#else
|
|
|
|
|
|
#define FILE_NAME_SEPARATOR_STRING "/"
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
|
is_file_name_separator (SCM c)
|
|
|
|
|
|
{
|
2013-03-07 00:03:36 +01:00
|
|
|
|
if (scm_is_eq (c, SCM_MAKE_CHAR ('/')))
|
2013-02-24 13:48:02 +01:00
|
|
|
|
return 1;
|
|
|
|
|
|
#ifdef __MINGW32__
|
2013-03-07 00:03:36 +01:00
|
|
|
|
if (scm_is_eq (c, SCM_MAKE_CHAR ('\\')))
|
2013-02-24 13:48:02 +01:00
|
|
|
|
return 1;
|
|
|
|
|
|
#endif
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
|
is_drive_letter (SCM c)
|
|
|
|
|
|
{
|
|
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
|
|
if (SCM_CHAR (c) >= 'a' && SCM_CHAR (c) <= 'z')
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
else if (SCM_CHAR (c) >= 'A' && SCM_CHAR (c) <= 'Z')
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
#endif
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2013-03-05 14:42:32 +01:00
|
|
|
|
is_absolute_file_name (SCM filename)
|
2013-02-24 13:48:02 +01:00
|
|
|
|
{
|
2013-03-05 14:42:32 +01:00
|
|
|
|
size_t filename_len = scm_c_string_length (filename);
|
|
|
|
|
|
|
2013-02-24 13:48:02 +01:00
|
|
|
|
if (filename_len >= 1
|
2013-03-05 14:42:32 +01:00
|
|
|
|
&& is_file_name_separator (scm_c_string_ref (filename, 0))
|
2013-02-24 13:48:02 +01:00
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
|
|
/* On Windows, one initial separator indicates a drive-relative
|
|
|
|
|
|
path. Two separators indicate a Universal Naming Convention
|
|
|
|
|
|
(UNC) path. UNC paths are always absolute. */
|
|
|
|
|
|
&& filename_len >= 2
|
2013-03-05 14:42:32 +01:00
|
|
|
|
&& is_file_name_separator (scm_c_string_ref (filename, 1))
|
2013-02-24 13:48:02 +01:00
|
|
|
|
#endif
|
|
|
|
|
|
)
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
if (filename_len >= 3
|
2013-03-05 14:42:32 +01:00
|
|
|
|
&& is_drive_letter (scm_c_string_ref (filename, 0))
|
|
|
|
|
|
&& scm_is_eq (scm_c_string_ref (filename, 1), SCM_MAKE_CHAR (':'))
|
|
|
|
|
|
&& is_file_name_separator (scm_c_string_ref (filename, 2)))
|
2013-02-24 13:48:02 +01:00
|
|
|
|
return 1;
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
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.
|
2012-02-01 16:35:32 -05:00
|
|
|
|
If we find one, return its full pathname; otherwise, return #f.
|
1999-09-03 07:54:06 +00:00
|
|
|
|
If FILENAME is absolute, return it unchanged.
|
2012-02-01 16:35:32 -05:00
|
|
|
|
We also fill *stat_buf corresponding to the returned pathname.
|
1999-09-03 07:54:06 +00:00
|
|
|
|
If given, EXTENSIONS is a list of strings; for each directory
|
|
|
|
|
|
in PATH, we search for FILENAME concatenated with each EXTENSION. */
|
2011-08-03 12:36:55 +02:00
|
|
|
|
static SCM
|
|
|
|
|
|
search_path (SCM path, SCM filename, SCM extensions, SCM require_exts,
|
|
|
|
|
|
struct stat *stat_buf)
|
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
|
|
|
|
|
2011-08-03 12:36:55 +02:00
|
|
|
|
if (scm_ilength (path) < 0)
|
|
|
|
|
|
scm_misc_error ("%search-path", "path is not a proper list: ~a",
|
|
|
|
|
|
scm_list_1 (path));
|
|
|
|
|
|
if (scm_ilength (extensions) < 0)
|
|
|
|
|
|
scm_misc_error ("%search-path", "bad extensions list: ~a",
|
|
|
|
|
|
scm_list_1 (extensions));
|
2008-09-02 00:08:26 -07:00
|
|
|
|
|
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
|
|
|
|
|
2012-02-01 16:35:32 -05:00
|
|
|
|
/* If FILENAME is absolute and is still valid, return it unchanged. */
|
2013-03-05 14:42:32 +01:00
|
|
|
|
if (is_absolute_file_name (filename))
|
2004-08-10 13:30:12 +00:00
|
|
|
|
{
|
2012-02-01 16:35:32 -05:00
|
|
|
|
if ((scm_is_false (require_exts) ||
|
|
|
|
|
|
scm_c_string_has_an_ext (filename_chars, filename_len,
|
2008-09-02 00:08:26 -07:00
|
|
|
|
extensions))
|
2012-02-01 16:35:32 -05:00
|
|
|
|
&& stat (filename_chars, stat_buf) == 0
|
|
|
|
|
|
&& !(stat_buf->st_mode & S_IFDIR))
|
|
|
|
|
|
result = filename;
|
|
|
|
|
|
goto end;
|
2004-08-10 13:30:12 +00:00
|
|
|
|
}
|
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 == '.')
|
|
|
|
|
|
{
|
2008-09-02 00:08:26 -07:00
|
|
|
|
if (scm_is_true (require_exts) &&
|
|
|
|
|
|
!scm_c_string_has_an_ext (filename_chars, filename_len,
|
|
|
|
|
|
extensions))
|
|
|
|
|
|
{
|
|
|
|
|
|
/* This filename has an extension, but not one of the right
|
|
|
|
|
|
ones... */
|
2012-02-01 16:35:32 -05:00
|
|
|
|
goto end;
|
2008-09-02 00:08:26 -07:00
|
|
|
|
}
|
1999-09-03 07:54:06 +00:00
|
|
|
|
/* This filename already has an extension, so cancel the
|
|
|
|
|
|
list of extensions. */
|
|
|
|
|
|
extensions = SCM_EOL;
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
2013-02-24 13:48:02 +01:00
|
|
|
|
else if (is_file_name_separator (SCM_MAKE_CHAR (*endp)))
|
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. */
|
|
|
|
|
|
|
2013-02-24 13:48:02 +01:00
|
|
|
|
if (buf.ptr > buf.buf
|
|
|
|
|
|
&& !is_file_name_separator (SCM_MAKE_CHAR (buf.ptr[-1])))
|
|
|
|
|
|
stringbuf_cat (&buf, FILE_NAME_SEPARATOR_STRING);
|
2004-08-10 13:30:12 +00:00
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
|
|
|
|
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. */
|
|
|
|
|
|
|
2011-08-03 12:36:55 +02:00
|
|
|
|
if (stat (buf.buf, stat_buf) == 0
|
|
|
|
|
|
&& ! (stat_buf->st_mode & S_IFDIR))
|
2004-08-10 13:30:12 +00:00
|
|
|
|
{
|
|
|
|
|
|
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
|
|
|
|
}
|
2011-08-03 12:36:55 +02:00
|
|
|
|
|
|
|
|
|
|
SCM_DEFINE (scm_search_path, "search-path", 2, 0, 1,
|
|
|
|
|
|
(SCM path, SCM filename, SCM rest),
|
|
|
|
|
|
"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"
|
2012-01-11 23:33:01 -05:00
|
|
|
|
"If given, @var{rest} is a list of extension strings; for each\n"
|
2011-08-03 12:36:55 +02:00
|
|
|
|
"directory in @var{path}, we search for @var{filename}\n"
|
2012-01-11 23:33:01 -05:00
|
|
|
|
"concatenated with each extension.")
|
2011-08-03 12:36:55 +02:00
|
|
|
|
#define FUNC_NAME s_scm_search_path
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM extensions, require_exts;
|
|
|
|
|
|
struct stat stat_buf;
|
|
|
|
|
|
|
|
|
|
|
|
if (SCM_UNBNDP (rest) || scm_is_null (rest))
|
|
|
|
|
|
{
|
|
|
|
|
|
/* Called either by Scheme code that didn't provide the optional
|
|
|
|
|
|
arguments, or C code that used the Guile 1.8 signature (2 required,
|
|
|
|
|
|
1 optional arg) and passed '() or nothing as the EXTENSIONS
|
|
|
|
|
|
argument. */
|
|
|
|
|
|
extensions = SCM_EOL;
|
|
|
|
|
|
require_exts = SCM_UNDEFINED;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
if (scm_is_null (SCM_CAR (rest)) || scm_is_pair (SCM_CAR (rest)))
|
|
|
|
|
|
{
|
|
|
|
|
|
/* Called by Scheme code written for 1.9. */
|
|
|
|
|
|
extensions = SCM_CAR (rest);
|
|
|
|
|
|
if (scm_is_null (SCM_CDR (rest)))
|
|
|
|
|
|
require_exts = SCM_UNDEFINED;
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
require_exts = SCM_CADR (rest);
|
|
|
|
|
|
if (SCM_UNLIKELY (!scm_is_null (SCM_CDDR (rest))))
|
|
|
|
|
|
scm_wrong_num_args (scm_from_locale_string (FUNC_NAME));
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
/* Called by C code that uses the 1.8 signature, i.e., which
|
|
|
|
|
|
expects the 3rd argument to be EXTENSIONS. */
|
|
|
|
|
|
extensions = rest;
|
|
|
|
|
|
require_exts = SCM_UNDEFINED;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (SCM_UNBNDP (extensions))
|
|
|
|
|
|
extensions = SCM_EOL;
|
|
|
|
|
|
|
|
|
|
|
|
if (SCM_UNBNDP (require_exts))
|
|
|
|
|
|
require_exts = SCM_BOOL_F;
|
|
|
|
|
|
|
|
|
|
|
|
return search_path (path, filename, extensions, require_exts, &stat_buf);
|
|
|
|
|
|
}
|
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
|
|
|
|
{
|
2011-08-03 12:36:55 +02:00
|
|
|
|
struct stat stat_buf;
|
|
|
|
|
|
|
2000-10-30 11:42:26 +00:00
|
|
|
|
SCM_VALIDATE_STRING (1, filename);
|
1999-12-12 02:36:16 +00:00
|
|
|
|
|
2011-08-03 12:36:55 +02:00
|
|
|
|
return search_path (*scm_loc_load_path, filename, *scm_loc_load_extensions,
|
|
|
|
|
|
SCM_BOOL_F, &stat_buf);
|
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
|
|
|
|
|
|
|
|
|
|
|
2010-09-04 16:07:58 +02:00
|
|
|
|
/* Return true if COMPILED_FILENAME is newer than source file
|
2011-08-03 12:36:55 +02:00
|
|
|
|
FULL_FILENAME, false otherwise. */
|
2009-06-03 09:24:35 +02:00
|
|
|
|
static int
|
2011-08-03 12:36:55 +02:00
|
|
|
|
compiled_is_fresh (SCM full_filename, SCM compiled_filename,
|
|
|
|
|
|
struct stat *stat_source, struct stat *stat_compiled)
|
2009-06-03 09:24:35 +02:00
|
|
|
|
{
|
2010-09-04 16:13:42 +02:00
|
|
|
|
int compiled_is_newer;
|
2011-08-03 12:36:55 +02:00
|
|
|
|
struct timespec source_mtime, compiled_mtime;
|
2009-06-03 09:24:35 +02:00
|
|
|
|
|
2011-08-03 12:36:55 +02:00
|
|
|
|
source_mtime = get_stat_mtime (stat_source);
|
|
|
|
|
|
compiled_mtime = get_stat_mtime (stat_compiled);
|
2010-07-26 11:56:25 +02:00
|
|
|
|
|
2011-08-03 12:36:55 +02:00
|
|
|
|
if (source_mtime.tv_sec < compiled_mtime.tv_sec
|
|
|
|
|
|
|| (source_mtime.tv_sec == compiled_mtime.tv_sec
|
|
|
|
|
|
&& source_mtime.tv_nsec <= compiled_mtime.tv_nsec))
|
|
|
|
|
|
compiled_is_newer = 1;
|
|
|
|
|
|
else
|
2009-06-03 09:24:35 +02:00
|
|
|
|
{
|
2011-08-03 12:36:55 +02:00
|
|
|
|
compiled_is_newer = 0;
|
|
|
|
|
|
scm_puts (";;; note: source file ", scm_current_error_port ());
|
|
|
|
|
|
scm_display (full_filename, scm_current_error_port ());
|
|
|
|
|
|
scm_puts ("\n;;; newer than compiled ", scm_current_error_port ());
|
|
|
|
|
|
scm_display (compiled_filename, scm_current_error_port ());
|
|
|
|
|
|
scm_puts ("\n", scm_current_error_port ());
|
2009-06-03 09:24:35 +02:00
|
|
|
|
}
|
2010-09-04 16:07:58 +02:00
|
|
|
|
|
|
|
|
|
|
return compiled_is_newer;
|
2009-06-03 09:24:35 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2009-08-14 19:30:14 +02:00
|
|
|
|
SCM_KEYWORD (kw_env, "env");
|
2011-02-13 19:18:02 +01:00
|
|
|
|
SCM_KEYWORD (kw_opts, "opts");
|
|
|
|
|
|
|
|
|
|
|
|
SCM_SYMBOL (sym_compile_file, "compile-file");
|
|
|
|
|
|
SCM_SYMBOL (sym_auto_compilation_options, "%auto-compilation-options");
|
2009-08-14 19:30:14 +02:00
|
|
|
|
|
2009-06-03 09:24:35 +02:00
|
|
|
|
static SCM
|
2011-02-13 10:41:44 +01:00
|
|
|
|
do_try_auto_compile (void *data)
|
2009-06-03 09:24:35 +02:00
|
|
|
|
{
|
2009-06-05 10:06:39 +02:00
|
|
|
|
SCM source = PTR2SCM (data);
|
|
|
|
|
|
SCM comp_mod, compile_file;
|
2009-06-03 18:22:39 +02:00
|
|
|
|
|
|
|
|
|
|
scm_puts (";;; compiling ", scm_current_error_port ());
|
2009-06-05 10:06:39 +02:00
|
|
|
|
scm_display (source, scm_current_error_port ());
|
2009-06-03 18:22:39 +02:00
|
|
|
|
scm_newline (scm_current_error_port ());
|
|
|
|
|
|
|
|
|
|
|
|
comp_mod = scm_c_resolve_module ("system base compile");
|
2011-02-13 19:18:02 +01:00
|
|
|
|
compile_file = scm_module_variable (comp_mod, sym_compile_file);
|
2009-06-03 18:22:39 +02:00
|
|
|
|
|
2009-06-05 10:06:39 +02:00
|
|
|
|
if (scm_is_true (compile_file))
|
|
|
|
|
|
{
|
2009-08-14 19:30:14 +02:00
|
|
|
|
/* Auto-compile in the context of the current module. */
|
2011-02-13 19:18:02 +01:00
|
|
|
|
SCM res, opts;
|
|
|
|
|
|
SCM args[5];
|
|
|
|
|
|
|
|
|
|
|
|
opts = scm_module_variable (scm_the_root_module (),
|
|
|
|
|
|
sym_auto_compilation_options);
|
|
|
|
|
|
if (SCM_VARIABLEP (opts))
|
|
|
|
|
|
opts = SCM_VARIABLE_REF (opts);
|
|
|
|
|
|
else
|
|
|
|
|
|
opts = SCM_EOL;
|
|
|
|
|
|
|
|
|
|
|
|
args[0] = source;
|
|
|
|
|
|
args[1] = kw_opts;
|
|
|
|
|
|
args[2] = opts;
|
|
|
|
|
|
args[3] = kw_env;
|
|
|
|
|
|
args[4] = scm_current_module ();
|
|
|
|
|
|
|
|
|
|
|
|
/* Assume `*current-warning-prefix*' has an appropriate value. */
|
|
|
|
|
|
res = scm_call_n (scm_variable_ref (compile_file), args, 5);
|
|
|
|
|
|
|
2009-06-05 10:06:39 +02:00
|
|
|
|
scm_puts (";;; compiled ", scm_current_error_port ());
|
|
|
|
|
|
scm_display (res, scm_current_error_port ());
|
|
|
|
|
|
scm_newline (scm_current_error_port ());
|
|
|
|
|
|
return res;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
scm_puts (";;; it seems ", scm_current_error_port ());
|
|
|
|
|
|
scm_display (source, scm_current_error_port ());
|
2011-02-13 10:41:44 +01:00
|
|
|
|
scm_puts ("\n;;; is part of the compiler; skipping auto-compilation\n",
|
2009-06-05 10:06:39 +02:00
|
|
|
|
scm_current_error_port ());
|
|
|
|
|
|
return SCM_BOOL_F;
|
|
|
|
|
|
}
|
2009-06-03 18:22:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static SCM
|
2011-02-13 10:41:44 +01:00
|
|
|
|
auto_compile_catch_handler (void *data, SCM tag, SCM throw_args)
|
2009-06-03 18:22:39 +02:00
|
|
|
|
{
|
2009-06-05 10:06:39 +02:00
|
|
|
|
SCM source = PTR2SCM (data);
|
2011-06-17 18:08:06 +02:00
|
|
|
|
SCM oport, lines;
|
|
|
|
|
|
|
|
|
|
|
|
oport = scm_open_output_string ();
|
|
|
|
|
|
scm_print_exception (oport, SCM_BOOL_F, tag, throw_args);
|
|
|
|
|
|
|
2011-12-05 15:43:18 +01:00
|
|
|
|
scm_puts (";;; WARNING: compilation of ", scm_current_warning_port ());
|
|
|
|
|
|
scm_display (source, scm_current_warning_port ());
|
|
|
|
|
|
scm_puts (" failed:\n", scm_current_warning_port ());
|
2011-06-17 18:08:06 +02:00
|
|
|
|
|
|
|
|
|
|
lines = scm_string_split (scm_get_output_string (oport),
|
|
|
|
|
|
SCM_MAKE_CHAR ('\n'));
|
|
|
|
|
|
for (; scm_is_pair (lines); lines = scm_cdr (lines))
|
|
|
|
|
|
if (scm_c_string_length (scm_car (lines)))
|
|
|
|
|
|
{
|
2011-12-05 15:43:18 +01:00
|
|
|
|
scm_puts (";;; ", scm_current_warning_port ());
|
|
|
|
|
|
scm_display (scm_car (lines), scm_current_warning_port ());
|
|
|
|
|
|
scm_newline (scm_current_warning_port ());
|
2011-06-17 18:08:06 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
scm_close_port (oport);
|
|
|
|
|
|
|
2009-06-03 09:24:35 +02:00
|
|
|
|
return SCM_BOOL_F;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2011-02-13 10:41:44 +01:00
|
|
|
|
SCM_DEFINE (scm_sys_warn_auto_compilation_enabled, "%warn-auto-compilation-enabled", 0, 0, 0,
|
2009-08-18 11:05:17 +02:00
|
|
|
|
(void), "")
|
2011-02-13 10:41:44 +01:00
|
|
|
|
#define FUNC_NAME s_scm_sys_warn_auto_compilation_enabled
|
2009-06-03 18:22:39 +02:00
|
|
|
|
{
|
|
|
|
|
|
static int message_shown = 0;
|
|
|
|
|
|
|
|
|
|
|
|
if (!message_shown)
|
|
|
|
|
|
{
|
2011-02-13 10:41:44 +01:00
|
|
|
|
scm_puts (";;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0\n"
|
|
|
|
|
|
";;; or pass the --no-auto-compile argument to disable.\n",
|
2011-12-05 15:43:18 +01:00
|
|
|
|
scm_current_warning_port ());
|
2009-06-03 18:22:39 +02:00
|
|
|
|
message_shown = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2009-08-18 11:05:17 +02:00
|
|
|
|
return SCM_UNSPECIFIED;
|
|
|
|
|
|
}
|
2009-08-28 01:16:49 +02:00
|
|
|
|
#undef FUNC_NAME
|
2009-08-18 11:05:17 +02:00
|
|
|
|
|
|
|
|
|
|
static SCM
|
2011-02-13 10:41:44 +01:00
|
|
|
|
scm_try_auto_compile (SCM source)
|
2009-08-18 11:05:17 +02:00
|
|
|
|
{
|
2011-02-13 10:41:44 +01:00
|
|
|
|
if (scm_is_false (*scm_loc_load_should_auto_compile))
|
2009-08-18 11:05:17 +02:00
|
|
|
|
return SCM_BOOL_F;
|
|
|
|
|
|
|
2011-02-13 10:41:44 +01:00
|
|
|
|
scm_sys_warn_auto_compilation_enabled ();
|
2009-06-03 18:22:39 +02:00
|
|
|
|
return scm_c_catch (SCM_BOOL_T,
|
2011-02-13 10:41:44 +01:00
|
|
|
|
do_try_auto_compile,
|
2009-06-05 10:06:39 +02:00
|
|
|
|
SCM2PTR (source),
|
2011-02-13 10:41:44 +01:00
|
|
|
|
auto_compile_catch_handler,
|
2009-06-05 10:06:39 +02:00
|
|
|
|
SCM2PTR (source),
|
2009-06-03 18:22:39 +02:00
|
|
|
|
NULL, NULL);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2013-02-24 13:48:02 +01:00
|
|
|
|
/* The auto-compilation code will residualize a .go file in the cache
|
|
|
|
|
|
dir: by default, $HOME/.cache/guile/2.0/ccache/PATH.go. This
|
|
|
|
|
|
function determines the PATH to use as a key into the compilation
|
|
|
|
|
|
cache. See also (system base compile):compiled-file-name. */
|
2011-06-30 16:07:17 +02:00
|
|
|
|
static SCM
|
2011-08-03 11:46:56 +02:00
|
|
|
|
canonical_suffix (SCM fname)
|
2011-06-30 16:07:17 +02:00
|
|
|
|
{
|
2011-08-03 11:46:56 +02:00
|
|
|
|
SCM canon;
|
|
|
|
|
|
|
2013-02-24 13:48:02 +01:00
|
|
|
|
/* CANON should be absolute. */
|
2011-08-03 11:46:56 +02:00
|
|
|
|
canon = scm_canonicalize_path (fname);
|
2011-06-30 16:07:17 +02:00
|
|
|
|
|
2013-02-24 13:48:02 +01:00
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
|
|
{
|
|
|
|
|
|
size_t len = scm_c_string_length (canon);
|
|
|
|
|
|
|
|
|
|
|
|
/* On Windows, an absolute file name that doesn't start with a
|
|
|
|
|
|
separator starts with a drive component. Transform the drive
|
|
|
|
|
|
component to a file name element: c:\foo -> \c\foo. */
|
|
|
|
|
|
if (len >= 2
|
|
|
|
|
|
&& is_absolute_file_name (canon)
|
|
|
|
|
|
&& !is_file_name_separator (scm_c_string_ref (canon, 0)))
|
|
|
|
|
|
return scm_string_append
|
|
|
|
|
|
(scm_list_3 (scm_from_latin1_string (FILE_NAME_SEPARATOR_STRING),
|
|
|
|
|
|
scm_c_substring (canon, 0, 1),
|
|
|
|
|
|
scm_c_substring (canon, 2, len)));
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
return canon;
|
2011-06-30 16:07:17 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2009-10-15 01:05:32 +02:00
|
|
|
|
SCM_DEFINE (scm_primitive_load_path, "primitive-load-path", 0, 0, 1,
|
|
|
|
|
|
(SCM args),
|
2001-03-12 07:08:46 +00:00
|
|
|
|
"Search @var{%load-path} for the file named @var{filename} and\n"
|
2013-01-20 19:33:42 +01:00
|
|
|
|
"load it into the top-level environment.\n\n"
|
|
|
|
|
|
"If @var{filename} is a relative pathname and is not found in\n"
|
|
|
|
|
|
"the list of search paths, one of three things may happen,\n"
|
|
|
|
|
|
"depending on the optional second argument,\n"
|
|
|
|
|
|
"@var{exception_on_not_found}. If it is @code{#f}, @code{#f}\n"
|
|
|
|
|
|
"will be returned. If it is a procedure, it will be called\n"
|
|
|
|
|
|
"with no arguments. Otherwise 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
|
|
|
|
{
|
2009-10-15 01:05:32 +02:00
|
|
|
|
SCM filename, exception_on_not_found;
|
2008-09-02 00:08:26 -07:00
|
|
|
|
SCM full_filename, compiled_filename;
|
2009-06-05 10:24:35 +02:00
|
|
|
|
int compiled_is_fallback = 0;
|
2011-06-30 12:56:12 +02:00
|
|
|
|
SCM hook = *scm_loc_load_hook;
|
2011-08-03 12:36:55 +02:00
|
|
|
|
struct stat stat_source, stat_compiled;
|
2011-06-30 12:56:12 +02:00
|
|
|
|
|
|
|
|
|
|
if (scm_is_true (hook) && scm_is_false (scm_procedure_p (hook)))
|
|
|
|
|
|
SCM_MISC_ERROR ("value of %load-hook is neither a procedure nor #f",
|
|
|
|
|
|
SCM_EOL);
|
1996-10-28 23:05:37 +00:00
|
|
|
|
|
2009-10-15 01:05:32 +02:00
|
|
|
|
if (scm_is_string (args))
|
|
|
|
|
|
{
|
|
|
|
|
|
/* C code written for 1.8 and earlier expects this function to take a
|
|
|
|
|
|
single argument (the file name). */
|
|
|
|
|
|
filename = args;
|
|
|
|
|
|
exception_on_not_found = SCM_UNDEFINED;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
/* Starting from 1.9, this function takes 1 required and 1 optional
|
|
|
|
|
|
argument. */
|
|
|
|
|
|
long len;
|
|
|
|
|
|
|
|
|
|
|
|
SCM_VALIDATE_LIST_COPYLEN (SCM_ARG1, args, len);
|
|
|
|
|
|
if (len < 1 || len > 2)
|
|
|
|
|
|
scm_error_num_args_subr (FUNC_NAME);
|
|
|
|
|
|
|
|
|
|
|
|
filename = SCM_CAR (args);
|
|
|
|
|
|
SCM_VALIDATE_STRING (SCM_ARG1, filename);
|
|
|
|
|
|
|
|
|
|
|
|
exception_on_not_found = len > 1 ? SCM_CADR (args) : SCM_UNDEFINED;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2009-06-03 09:48:16 +02:00
|
|
|
|
if (SCM_UNBNDP (exception_on_not_found))
|
|
|
|
|
|
exception_on_not_found = SCM_BOOL_T;
|
1996-10-28 23:05:37 +00:00
|
|
|
|
|
2011-08-03 12:36:55 +02:00
|
|
|
|
full_filename = search_path (*scm_loc_load_path, filename,
|
|
|
|
|
|
*scm_loc_load_extensions, SCM_BOOL_F,
|
|
|
|
|
|
&stat_source);
|
2010-06-20 16:57:06 +02:00
|
|
|
|
|
2009-11-01 23:29:36 +01:00
|
|
|
|
compiled_filename =
|
2011-08-03 12:36:55 +02:00
|
|
|
|
search_path (*scm_loc_load_compiled_path, filename,
|
|
|
|
|
|
*scm_loc_load_compiled_extensions, SCM_BOOL_T,
|
|
|
|
|
|
&stat_compiled);
|
2009-11-01 23:29:36 +01:00
|
|
|
|
|
2009-06-05 01:20:19 +02:00
|
|
|
|
if (scm_is_false (compiled_filename)
|
|
|
|
|
|
&& scm_is_true (full_filename)
|
2009-06-05 10:06:39 +02:00
|
|
|
|
&& scm_is_true (*scm_loc_compile_fallback_path)
|
2011-04-15 11:27:27 +02:00
|
|
|
|
&& scm_is_false (*scm_loc_fresh_auto_compile)
|
2009-06-05 10:06:39 +02:00
|
|
|
|
&& scm_is_pair (*scm_loc_load_compiled_extensions)
|
|
|
|
|
|
&& scm_is_string (scm_car (*scm_loc_load_compiled_extensions)))
|
2009-06-05 01:20:19 +02:00
|
|
|
|
{
|
2011-08-03 12:36:55 +02:00
|
|
|
|
SCM fallback;
|
|
|
|
|
|
char *fallback_chars;
|
|
|
|
|
|
|
|
|
|
|
|
fallback = scm_string_append
|
2009-06-05 10:06:39 +02:00
|
|
|
|
(scm_list_3 (*scm_loc_compile_fallback_path,
|
2011-08-03 11:46:56 +02:00
|
|
|
|
canonical_suffix (full_filename),
|
2009-06-05 10:06:39 +02:00
|
|
|
|
scm_car (*scm_loc_load_compiled_extensions)));
|
2011-08-03 12:36:55 +02:00
|
|
|
|
|
|
|
|
|
|
fallback_chars = scm_to_locale_string (fallback);
|
|
|
|
|
|
if (stat (fallback_chars, &stat_compiled) == 0)
|
2009-06-05 10:24:35 +02:00
|
|
|
|
{
|
|
|
|
|
|
compiled_filename = fallback;
|
|
|
|
|
|
compiled_is_fallback = 1;
|
|
|
|
|
|
}
|
2011-08-03 12:36:55 +02:00
|
|
|
|
free (fallback_chars);
|
2009-06-05 01:20:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2008-09-02 00:08:26 -07:00
|
|
|
|
if (scm_is_false (full_filename) && scm_is_false (compiled_filename))
|
2009-06-03 09:48:16 +02:00
|
|
|
|
{
|
2013-01-20 19:33:42 +01:00
|
|
|
|
if (scm_is_true (scm_procedure_p (exception_on_not_found)))
|
|
|
|
|
|
return scm_call_0 (exception_on_not_found);
|
|
|
|
|
|
else if (scm_is_false (exception_on_not_found))
|
|
|
|
|
|
return SCM_BOOL_F;
|
|
|
|
|
|
else
|
2009-06-03 09:48:16 +02:00
|
|
|
|
SCM_MISC_ERROR ("Unable to find file ~S in load path",
|
|
|
|
|
|
scm_list_1 (filename));
|
|
|
|
|
|
}
|
2008-09-02 00:08:26 -07:00
|
|
|
|
|
2011-06-30 12:56:12 +02:00
|
|
|
|
if (!scm_is_false (hook))
|
|
|
|
|
|
scm_call_1 (hook, (scm_is_true (full_filename)
|
|
|
|
|
|
? full_filename : compiled_filename));
|
|
|
|
|
|
|
2009-06-03 09:24:35 +02:00
|
|
|
|
if (scm_is_false (full_filename)
|
|
|
|
|
|
|| (scm_is_true (compiled_filename)
|
2011-08-03 12:36:55 +02:00
|
|
|
|
&& compiled_is_fresh (full_filename, compiled_filename,
|
|
|
|
|
|
&stat_source, &stat_compiled)))
|
2008-09-02 00:08:26 -07:00
|
|
|
|
return scm_load_compiled_with_vm (compiled_filename);
|
|
|
|
|
|
|
2009-06-05 10:24:35 +02:00
|
|
|
|
/* Perhaps there was the installed .go that was stale, but our fallback is
|
|
|
|
|
|
fresh. Let's try that. Duplicating code, but perhaps that's OK. */
|
|
|
|
|
|
|
|
|
|
|
|
if (!compiled_is_fallback
|
|
|
|
|
|
&& scm_is_true (*scm_loc_compile_fallback_path)
|
2011-04-15 11:27:27 +02:00
|
|
|
|
&& scm_is_false (*scm_loc_fresh_auto_compile)
|
2009-06-05 10:24:35 +02:00
|
|
|
|
&& scm_is_pair (*scm_loc_load_compiled_extensions)
|
|
|
|
|
|
&& scm_is_string (scm_car (*scm_loc_load_compiled_extensions)))
|
|
|
|
|
|
{
|
2011-08-03 12:36:55 +02:00
|
|
|
|
SCM fallback;
|
|
|
|
|
|
char *fallback_chars;
|
|
|
|
|
|
int stat_ret;
|
|
|
|
|
|
|
|
|
|
|
|
fallback = scm_string_append
|
2009-06-05 10:24:35 +02:00
|
|
|
|
(scm_list_3 (*scm_loc_compile_fallback_path,
|
2011-08-03 11:46:56 +02:00
|
|
|
|
canonical_suffix (full_filename),
|
2009-06-05 10:24:35 +02:00
|
|
|
|
scm_car (*scm_loc_load_compiled_extensions)));
|
2011-08-03 12:36:55 +02:00
|
|
|
|
|
|
|
|
|
|
fallback_chars = scm_to_locale_string (fallback);
|
|
|
|
|
|
stat_ret = stat (fallback_chars, &stat_compiled);
|
|
|
|
|
|
free (fallback_chars);
|
|
|
|
|
|
|
|
|
|
|
|
if (stat_ret == 0 && compiled_is_fresh (full_filename, fallback,
|
|
|
|
|
|
&stat_source, &stat_compiled))
|
2009-06-05 10:24:35 +02:00
|
|
|
|
{
|
2011-12-05 15:43:18 +01:00
|
|
|
|
scm_puts (";;; found fresh local cache at ", scm_current_warning_port ());
|
|
|
|
|
|
scm_display (fallback, scm_current_warning_port ());
|
|
|
|
|
|
scm_newline (scm_current_warning_port ());
|
2009-08-28 17:12:15 +02:00
|
|
|
|
return scm_load_compiled_with_vm (fallback);
|
2009-06-05 10:24:35 +02:00
|
|
|
|
}
|
2009-06-05 10:06:39 +02:00
|
|
|
|
}
|
2009-06-05 10:24:35 +02:00
|
|
|
|
|
|
|
|
|
|
/* Otherwise, we bottom out here. */
|
2008-09-02 00:08:26 -07:00
|
|
|
|
{
|
2011-02-13 10:41:44 +01:00
|
|
|
|
SCM freshly_compiled = scm_try_auto_compile (full_filename);
|
2008-09-02 00:08:26 -07:00
|
|
|
|
|
2009-06-05 10:24:35 +02:00
|
|
|
|
if (scm_is_true (freshly_compiled))
|
|
|
|
|
|
return scm_load_compiled_with_vm (freshly_compiled);
|
2008-09-02 00:08:26 -07:00
|
|
|
|
else
|
2009-06-05 10:24:35 +02:00
|
|
|
|
return scm_primitive_load (full_filename);
|
2008-09-02 00:08:26 -07:00
|
|
|
|
}
|
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)
|
|
|
|
|
|
{
|
2009-10-15 01:05:32 +02:00
|
|
|
|
return scm_primitive_load_path (scm_from_locale_string (filename));
|
2001-06-29 23:13:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
really boot primitive-eval from scheme.
* libguile/eval.c (scm_primitive_eval, scm_c_primitive_eval):
(scm_init_eval): Rework so that scm_primitive_eval always calls out to
the primitive-eval variable. The previous definition is the default
value, which is probably overridden by scm_init_eval_in_scheme.
* libguile/init.c (scm_i_init_guile): Move ports and load-path up, so we
can debug when initing eval. Call scm_init_eval_in_scheme. Awesome.
* libguile/load.h:
* libguile/load.c (scm_init_eval_in_scheme): New procedure, loads up
ice-9/eval.scm to replace the primitive-eval definition, if everything
is there and up-to-date.
* libguile/modules.c (scm_module_transformer): Export to Scheme, so it's
there for eval.go.
* module/ice-9/boot-9.scm: No need to define module-transformer.
* module/ice-9/eval.scm (capture-env): Only reference the-root-module if
modules are booted.
(primitive-eval): Inline a definition for identity. Throw a more
standard error for "wrong number of arguments".
* module/ice-9/psyntax.scm (chi-install-global): The macro binding for a
syncase macro is now a pair: the transformer, and the module that was
current when the transformer was installed. The latter is used for
hygiene purposes, replacing the use of procedure-module, which didn't
work with the interpreter's shared-code closures.
(chi-macro): Adapt for the binding being a pair, and get the hygiene
from the cdr.
(eval-local-transformer): Adapt to new form of macro bindings.
* module/ice-9/psyntax-pp.scm: Regenerated.
* .gitignore: Ignore eval.go.stamp.
* module/Makefile.am: Reorder for fastest serial compilation, now that
there are no ordering constraints. I did a number of experiments here
and this seems to be the best; but the bulk of the time is compiling
psyntax-pp.scm with eval.scm. Not so great.
* libguile/vm-engine.c (vm-engine): Throw a more standard error for
"wrong type to apply".
* test-suite/tests/gc.test ("gc"): Remove a hack that shouldn't affect
the new evaluator, and throw in another (gc) for good measure.
* test-suite/tests/goops.test ("defining classes"):
* test-suite/tests/hooks.test (proc1): We can't currently check what the
arity is of a closure made by eval.scm -- or more accurately all
closures have 0 required args and no rest args. So punt for now.
* test-suite/tests/syntax.test ("letrec"): The scheme evaluator can't
check that a variable is unbound, currently; perhaps the full "fixing
letrec" expansion could fix this. But barring that, punt.
2009-12-01 23:54:25 +01:00
|
|
|
|
void
|
|
|
|
|
|
scm_init_eval_in_scheme (void)
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM eval_scm, eval_go;
|
2011-08-03 12:36:55 +02:00
|
|
|
|
struct stat stat_source, stat_compiled;
|
|
|
|
|
|
|
|
|
|
|
|
eval_scm = search_path (*scm_loc_load_path,
|
|
|
|
|
|
scm_from_locale_string ("ice-9/eval.scm"),
|
|
|
|
|
|
SCM_EOL, SCM_BOOL_F, &stat_source);
|
|
|
|
|
|
eval_go = search_path (*scm_loc_load_compiled_path,
|
|
|
|
|
|
scm_from_locale_string ("ice-9/eval.go"),
|
|
|
|
|
|
SCM_EOL, SCM_BOOL_F, &stat_compiled);
|
really boot primitive-eval from scheme.
* libguile/eval.c (scm_primitive_eval, scm_c_primitive_eval):
(scm_init_eval): Rework so that scm_primitive_eval always calls out to
the primitive-eval variable. The previous definition is the default
value, which is probably overridden by scm_init_eval_in_scheme.
* libguile/init.c (scm_i_init_guile): Move ports and load-path up, so we
can debug when initing eval. Call scm_init_eval_in_scheme. Awesome.
* libguile/load.h:
* libguile/load.c (scm_init_eval_in_scheme): New procedure, loads up
ice-9/eval.scm to replace the primitive-eval definition, if everything
is there and up-to-date.
* libguile/modules.c (scm_module_transformer): Export to Scheme, so it's
there for eval.go.
* module/ice-9/boot-9.scm: No need to define module-transformer.
* module/ice-9/eval.scm (capture-env): Only reference the-root-module if
modules are booted.
(primitive-eval): Inline a definition for identity. Throw a more
standard error for "wrong number of arguments".
* module/ice-9/psyntax.scm (chi-install-global): The macro binding for a
syncase macro is now a pair: the transformer, and the module that was
current when the transformer was installed. The latter is used for
hygiene purposes, replacing the use of procedure-module, which didn't
work with the interpreter's shared-code closures.
(chi-macro): Adapt for the binding being a pair, and get the hygiene
from the cdr.
(eval-local-transformer): Adapt to new form of macro bindings.
* module/ice-9/psyntax-pp.scm: Regenerated.
* .gitignore: Ignore eval.go.stamp.
* module/Makefile.am: Reorder for fastest serial compilation, now that
there are no ordering constraints. I did a number of experiments here
and this seems to be the best; but the bulk of the time is compiling
psyntax-pp.scm with eval.scm. Not so great.
* libguile/vm-engine.c (vm-engine): Throw a more standard error for
"wrong type to apply".
* test-suite/tests/gc.test ("gc"): Remove a hack that shouldn't affect
the new evaluator, and throw in another (gc) for good measure.
* test-suite/tests/goops.test ("defining classes"):
* test-suite/tests/hooks.test (proc1): We can't currently check what the
arity is of a closure made by eval.scm -- or more accurately all
closures have 0 required args and no rest args. So punt for now.
* test-suite/tests/syntax.test ("letrec"): The scheme evaluator can't
check that a variable is unbound, currently; perhaps the full "fixing
letrec" expansion could fix this. But barring that, punt.
2009-12-01 23:54:25 +01:00
|
|
|
|
|
|
|
|
|
|
if (scm_is_true (eval_scm) && scm_is_true (eval_go)
|
2011-08-03 12:36:55 +02:00
|
|
|
|
&& compiled_is_fresh (eval_scm, eval_go,
|
|
|
|
|
|
&stat_source, &stat_compiled))
|
really boot primitive-eval from scheme.
* libguile/eval.c (scm_primitive_eval, scm_c_primitive_eval):
(scm_init_eval): Rework so that scm_primitive_eval always calls out to
the primitive-eval variable. The previous definition is the default
value, which is probably overridden by scm_init_eval_in_scheme.
* libguile/init.c (scm_i_init_guile): Move ports and load-path up, so we
can debug when initing eval. Call scm_init_eval_in_scheme. Awesome.
* libguile/load.h:
* libguile/load.c (scm_init_eval_in_scheme): New procedure, loads up
ice-9/eval.scm to replace the primitive-eval definition, if everything
is there and up-to-date.
* libguile/modules.c (scm_module_transformer): Export to Scheme, so it's
there for eval.go.
* module/ice-9/boot-9.scm: No need to define module-transformer.
* module/ice-9/eval.scm (capture-env): Only reference the-root-module if
modules are booted.
(primitive-eval): Inline a definition for identity. Throw a more
standard error for "wrong number of arguments".
* module/ice-9/psyntax.scm (chi-install-global): The macro binding for a
syncase macro is now a pair: the transformer, and the module that was
current when the transformer was installed. The latter is used for
hygiene purposes, replacing the use of procedure-module, which didn't
work with the interpreter's shared-code closures.
(chi-macro): Adapt for the binding being a pair, and get the hygiene
from the cdr.
(eval-local-transformer): Adapt to new form of macro bindings.
* module/ice-9/psyntax-pp.scm: Regenerated.
* .gitignore: Ignore eval.go.stamp.
* module/Makefile.am: Reorder for fastest serial compilation, now that
there are no ordering constraints. I did a number of experiments here
and this seems to be the best; but the bulk of the time is compiling
psyntax-pp.scm with eval.scm. Not so great.
* libguile/vm-engine.c (vm-engine): Throw a more standard error for
"wrong type to apply".
* test-suite/tests/gc.test ("gc"): Remove a hack that shouldn't affect
the new evaluator, and throw in another (gc) for good measure.
* test-suite/tests/goops.test ("defining classes"):
* test-suite/tests/hooks.test (proc1): We can't currently check what the
arity is of a closure made by eval.scm -- or more accurately all
closures have 0 required args and no rest args. So punt for now.
* test-suite/tests/syntax.test ("letrec"): The scheme evaluator can't
check that a variable is unbound, currently; perhaps the full "fixing
letrec" expansion could fix this. But barring that, punt.
2009-12-01 23:54:25 +01:00
|
|
|
|
scm_load_compiled_with_vm (eval_go);
|
2009-12-10 20:26:13 +01:00
|
|
|
|
else
|
|
|
|
|
|
/* if we have no eval.go, we shouldn't load any compiled code at all */
|
|
|
|
|
|
*scm_loc_load_compiled_path = SCM_EOL;
|
really boot primitive-eval from scheme.
* libguile/eval.c (scm_primitive_eval, scm_c_primitive_eval):
(scm_init_eval): Rework so that scm_primitive_eval always calls out to
the primitive-eval variable. The previous definition is the default
value, which is probably overridden by scm_init_eval_in_scheme.
* libguile/init.c (scm_i_init_guile): Move ports and load-path up, so we
can debug when initing eval. Call scm_init_eval_in_scheme. Awesome.
* libguile/load.h:
* libguile/load.c (scm_init_eval_in_scheme): New procedure, loads up
ice-9/eval.scm to replace the primitive-eval definition, if everything
is there and up-to-date.
* libguile/modules.c (scm_module_transformer): Export to Scheme, so it's
there for eval.go.
* module/ice-9/boot-9.scm: No need to define module-transformer.
* module/ice-9/eval.scm (capture-env): Only reference the-root-module if
modules are booted.
(primitive-eval): Inline a definition for identity. Throw a more
standard error for "wrong number of arguments".
* module/ice-9/psyntax.scm (chi-install-global): The macro binding for a
syncase macro is now a pair: the transformer, and the module that was
current when the transformer was installed. The latter is used for
hygiene purposes, replacing the use of procedure-module, which didn't
work with the interpreter's shared-code closures.
(chi-macro): Adapt for the binding being a pair, and get the hygiene
from the cdr.
(eval-local-transformer): Adapt to new form of macro bindings.
* module/ice-9/psyntax-pp.scm: Regenerated.
* .gitignore: Ignore eval.go.stamp.
* module/Makefile.am: Reorder for fastest serial compilation, now that
there are no ordering constraints. I did a number of experiments here
and this seems to be the best; but the bulk of the time is compiling
psyntax-pp.scm with eval.scm. Not so great.
* libguile/vm-engine.c (vm-engine): Throw a more standard error for
"wrong type to apply".
* test-suite/tests/gc.test ("gc"): Remove a hack that shouldn't affect
the new evaluator, and throw in another (gc) for good measure.
* test-suite/tests/goops.test ("defining classes"):
* test-suite/tests/hooks.test (proc1): We can't currently check what the
arity is of a closure made by eval.scm -- or more accurately all
closures have 0 required args and no rest args. So punt for now.
* test-suite/tests/syntax.test ("letrec"): The scheme evaluator can't
check that a variable is unbound, currently; perhaps the full "fixing
letrec" expansion could fix this. But barring that, punt.
2009-12-01 23:54:25 +01: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
|
|
|
|
|
2009-09-18 11:40:03 +02:00
|
|
|
|
SCM_VARIABLE_INIT (sys_host_type, "%host-type",
|
|
|
|
|
|
scm_from_locale_string (HOST_TYPE));
|
|
|
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
}
|
2011-04-14 16:06:40 +02:00
|
|
|
|
#ifdef PACKAGE_PACKAGER
|
|
|
|
|
|
*loc = scm_acons (scm_from_latin1_symbol ("packager"),
|
|
|
|
|
|
scm_from_latin1_string (PACKAGE_PACKAGER),
|
|
|
|
|
|
*loc);
|
|
|
|
|
|
#endif
|
|
|
|
|
|
#ifdef PACKAGE_PACKAGER_VERSION
|
|
|
|
|
|
*loc = scm_acons (scm_from_latin1_symbol ("packager-version"),
|
|
|
|
|
|
scm_from_latin1_string (PACKAGE_PACKAGER_VERSION),
|
|
|
|
|
|
*loc);
|
|
|
|
|
|
#endif
|
|
|
|
|
|
#ifdef PACKAGE_PACKAGER_BUG_REPORTS
|
|
|
|
|
|
*loc = scm_acons (scm_from_latin1_symbol ("packager-bug-reports"),
|
|
|
|
|
|
scm_from_latin1_string (PACKAGE_PACKAGER_BUG_REPORTS),
|
|
|
|
|
|
*loc);
|
|
|
|
|
|
#endif
|
1997-06-23 23:48:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1996-07-25 22:56:11 +00:00
|
|
|
|
void
|
|
|
|
|
|
scm_init_load ()
|
|
|
|
|
|
{
|
2009-12-05 11:30:09 +01:00
|
|
|
|
scm_listofnullstr = 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)));
|
2009-06-02 22:18:02 +02:00
|
|
|
|
scm_loc_load_compiled_path
|
|
|
|
|
|
= SCM_VARIABLE_LOC (scm_c_define ("%load-compiled-path", SCM_EOL));
|
2008-09-02 00:08:26 -07:00
|
|
|
|
scm_loc_load_compiled_extensions
|
|
|
|
|
|
= SCM_VARIABLE_LOC (scm_c_define ("%load-compiled-extensions",
|
|
|
|
|
|
scm_list_1 (scm_from_locale_string (".go"))));
|
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
|
|
|
|
|
2009-06-05 01:20:19 +02:00
|
|
|
|
scm_loc_compile_fallback_path
|
|
|
|
|
|
= SCM_VARIABLE_LOC (scm_c_define ("%compile-fallback-path", SCM_BOOL_F));
|
2011-02-13 10:41:44 +01:00
|
|
|
|
scm_loc_load_should_auto_compile
|
|
|
|
|
|
= SCM_VARIABLE_LOC (scm_c_define ("%load-should-auto-compile", SCM_BOOL_F));
|
2011-04-15 11:27:27 +02:00
|
|
|
|
scm_loc_fresh_auto_compile
|
|
|
|
|
|
= SCM_VARIABLE_LOC (scm_c_define ("%fresh-auto-compile", SCM_BOOL_F));
|
2009-06-05 01:20:19 +02:00
|
|
|
|
|
2012-11-28 18:01:35 -05:00
|
|
|
|
scm_ellipsis = scm_from_latin1_string ("...");
|
|
|
|
|
|
|
2011-11-23 12:21:22 +01:00
|
|
|
|
the_reader = scm_make_fluid_with_default (SCM_BOOL_F);
|
2005-12-14 00:21:11 +00:00
|
|
|
|
scm_c_define("current-reader", the_reader);
|
|
|
|
|
|
|
2010-01-05 18:50:17 +01:00
|
|
|
|
scm_c_define ("load-compiled",
|
|
|
|
|
|
scm_c_make_gsubr ("load-compiled/vm", 1, 0, 0,
|
|
|
|
|
|
scm_load_compiled_with_vm));
|
|
|
|
|
|
|
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
|
|
|
|
|
2010-03-30 10:53:05 +02:00
|
|
|
|
void
|
2011-02-13 10:41:44 +01:00
|
|
|
|
scm_init_load_should_auto_compile ()
|
2010-03-30 10:53:05 +02:00
|
|
|
|
{
|
2011-04-15 11:27:27 +02:00
|
|
|
|
char *auto_compile = getenv ("GUILE_AUTO_COMPILE");
|
|
|
|
|
|
|
|
|
|
|
|
if (auto_compile && strcmp (auto_compile, "0") == 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
*scm_loc_load_should_auto_compile = SCM_BOOL_F;
|
|
|
|
|
|
*scm_loc_fresh_auto_compile = SCM_BOOL_F;
|
|
|
|
|
|
}
|
|
|
|
|
|
/* Allow "freshen" also. */
|
|
|
|
|
|
else if (auto_compile && strncmp (auto_compile, "fresh", 5) == 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
*scm_loc_load_should_auto_compile = SCM_BOOL_T;
|
|
|
|
|
|
*scm_loc_fresh_auto_compile = SCM_BOOL_T;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
*scm_loc_load_should_auto_compile = SCM_BOOL_T;
|
|
|
|
|
|
*scm_loc_fresh_auto_compile = SCM_BOOL_F;
|
|
|
|
|
|
}
|
2010-03-30 10:53:05 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-03-19 19:01:16 +00:00
|
|
|
|
/*
|
|
|
|
|
|
Local Variables:
|
|
|
|
|
|
c-file-style: "gnu"
|
|
|
|
|
|
End:
|
|
|
|
|
|
*/
|