2009-08-17 23:39:56 +02:00
|
|
|
|
/* Copyright (C) 1995,1996,1998,1999,2000,2001, 2004, 2006, 2008, 2009 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"
|
|
|
|
|
|
#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
|
|
|
|
|
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>
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
#endif /* HAVE_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
|
|
|
|
|
|
|
|
|
|
|
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;
|
Add full Unicode capability to ports and the default reader
Ports are given two additional properties: a character encoding and
a conversion failure strategy. These properties have getters and setters.
The new properties are used to convert any locale text to/from the
internal representation of strings.
If unspecified, ports use a default value. The default value of these
properties is held in a fluid. The default character encoding can be
modified by calling setlocale.
ISO-8859-1 is treated specially. Since it is a native encoding of
strings, it can be processed more quickly. Source code is assumed to be
ISO-8859-1 unless otherwise specified. The encoding of a source code
file can be given as 'coding: XXXXX' in a magic comment at the top of a
file.
The C functions that deal with encoding often use a null pointer
as shorthand for the native Latin-1 encoding, for efficiency's sake.
* test-suite/tests/encoding-iso88591.test: new tests
* test-suite/tests/encoding-iso88597.test: new tests
* test-suite/tests/encoding-utf8.test: new tests
* test-suite/tests/encoding-escapes.test: new tests
* test-suite/tests/numbers.test: declare 'binary' encoding
* test-suite/tests/ports.test: declare 'binary' encoding
* test-suite/tests/r6rs-ports.test: declare 'binary' encoding
* module/system/base/compile.scm (compile-file): use source-code
file's self-declared encoding when compiling files
* libguile/strports.c: store string ports in locale encoding
(scm_strport_to_locale_u8vector, scm_call_with_output_locale_u8vector)
(scm_open_input_locale_u8vector, scm_get_output_locale_u8vector):
new functions
* libguile/strings.h: new declaration for scm_i_string_contains_char
* libguile/strings.c (scm_i_string_contains_char): new function
(scm_from_stringn, scm_to_stringn): use NULL for Latin-1
(scm_from_locale_stringn, scm_to_locale_stringn): respect character
encoding of input and output ports
* libguile/read.h: declaration for scm_scan_for_encoding
* libguile/read.c:
(read_token): now takes scheme string instead of C string/length
(read_complete_token): new function
(scm_read_sexp, scm_read_number, scm_read_mixed_case_symbol)
(scm_read_number_and_radix, scm_read_quote, scm_read_semicolon_comment)
(scm_read_srfi4_vector, scm_read_bytevector, scm_read_guile_bit_vector)
(scm_read_scsh_block_comment, scm_read_commented_expression)
(scm_read_extended_symbol, scm_read_sharp_extension, scm_read_shart)
(scm_read_expression): use scm_t_wchar for char type, use read_complete_token
(scm_scan_for_encoding): new function to find a file's character encoding
(scm_file_encoding): new function to find a port's character encoding
* libguile/rdelim.c: don't unpack strings
* libguile/print.h: declaration for modified function
scm_i_charprint
* libguile/print.c: use locale when printing characters and
strings
(scm_i_charprint): input parameter is now scm_t_wchar
(scm_simple_format): don't unpack strings
* libguile/posix.h: new declaration for scm_setbinary.
* libguile/posix.c (scm_setlocale): set default and stdio port
encodings based on the locale's character encoding
(scm_setbinary): new function
* libguile/ports.h (scm_t_port): add encoding and failed
conversion handler to port type. Declarations for new or modified
functions scm_getc, scm_unget_byte, scm_ungetc,
scm_i_get_port_encoding, scm_i_set_port_encoding_x,
scm_port_encoding, scm_set_port_encoding_x,
scm_i_get_conversion_strategy, scm_i_set_conversion_strategy_x,
scm_port_conversion_strategy, scm_set_port_conversion_strategy_x.
* libguile/ports.c: assign the current ports to zero on startup so
we can see if they've been set.
(scm_current_input_port, scm_current_output_port,
scm_current_error_port): return #f if the port is not yet
initialized
(scm_new_port_table_entry): set up a new port's encoding and
illegal sequence handler based on the thread's current defaults
(scm_i_remove_port): free port encoding name when port is removed
(scm_i_mode_bits_n): now takes a scheme string instead of a c
string and length. All callers changed.
(SCM_MBCHAR_BUF_SIZE): new const
(scm_getc): new function, since the scm_getc in inline.h is now
scm_get_byte_or_eof. This pulls one codepoint from a port.
(scm_lfwrite_substr, scm_lfwrite_str): now uses port's encoding
(scm_unget_byte): new function, incorportaing the low-level functionality
of scm_ungetc
(scm_ungetc): uses scm_unget_byte
* libguile/numbers.h (scm_t_wchar): compilation order problem with
scm_t_wchar being use in functions in multiple headers. Forward
declare scm_t_wchar.
* libguile/load.c (scm_primitive_load): scan for file encoding at
top of file and use it to set the load port's encoding
* libguile/inline.h (scm_get_byte_or_eof): new function
incorporating most of the functionality of scm_getc.
* libguile/fports.c (fport_fill_input): now returns scm_t_wchar
* libguile/chars.h (scm_t_wchar): avoid compilation order problem
with declaration of scm_t_wchar
2009-08-25 07:54:37 -07:00
|
|
|
|
char *encoding;
|
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);
|
Add full Unicode capability to ports and the default reader
Ports are given two additional properties: a character encoding and
a conversion failure strategy. These properties have getters and setters.
The new properties are used to convert any locale text to/from the
internal representation of strings.
If unspecified, ports use a default value. The default value of these
properties is held in a fluid. The default character encoding can be
modified by calling setlocale.
ISO-8859-1 is treated specially. Since it is a native encoding of
strings, it can be processed more quickly. Source code is assumed to be
ISO-8859-1 unless otherwise specified. The encoding of a source code
file can be given as 'coding: XXXXX' in a magic comment at the top of a
file.
The C functions that deal with encoding often use a null pointer
as shorthand for the native Latin-1 encoding, for efficiency's sake.
* test-suite/tests/encoding-iso88591.test: new tests
* test-suite/tests/encoding-iso88597.test: new tests
* test-suite/tests/encoding-utf8.test: new tests
* test-suite/tests/encoding-escapes.test: new tests
* test-suite/tests/numbers.test: declare 'binary' encoding
* test-suite/tests/ports.test: declare 'binary' encoding
* test-suite/tests/r6rs-ports.test: declare 'binary' encoding
* module/system/base/compile.scm (compile-file): use source-code
file's self-declared encoding when compiling files
* libguile/strports.c: store string ports in locale encoding
(scm_strport_to_locale_u8vector, scm_call_with_output_locale_u8vector)
(scm_open_input_locale_u8vector, scm_get_output_locale_u8vector):
new functions
* libguile/strings.h: new declaration for scm_i_string_contains_char
* libguile/strings.c (scm_i_string_contains_char): new function
(scm_from_stringn, scm_to_stringn): use NULL for Latin-1
(scm_from_locale_stringn, scm_to_locale_stringn): respect character
encoding of input and output ports
* libguile/read.h: declaration for scm_scan_for_encoding
* libguile/read.c:
(read_token): now takes scheme string instead of C string/length
(read_complete_token): new function
(scm_read_sexp, scm_read_number, scm_read_mixed_case_symbol)
(scm_read_number_and_radix, scm_read_quote, scm_read_semicolon_comment)
(scm_read_srfi4_vector, scm_read_bytevector, scm_read_guile_bit_vector)
(scm_read_scsh_block_comment, scm_read_commented_expression)
(scm_read_extended_symbol, scm_read_sharp_extension, scm_read_shart)
(scm_read_expression): use scm_t_wchar for char type, use read_complete_token
(scm_scan_for_encoding): new function to find a file's character encoding
(scm_file_encoding): new function to find a port's character encoding
* libguile/rdelim.c: don't unpack strings
* libguile/print.h: declaration for modified function
scm_i_charprint
* libguile/print.c: use locale when printing characters and
strings
(scm_i_charprint): input parameter is now scm_t_wchar
(scm_simple_format): don't unpack strings
* libguile/posix.h: new declaration for scm_setbinary.
* libguile/posix.c (scm_setlocale): set default and stdio port
encodings based on the locale's character encoding
(scm_setbinary): new function
* libguile/ports.h (scm_t_port): add encoding and failed
conversion handler to port type. Declarations for new or modified
functions scm_getc, scm_unget_byte, scm_ungetc,
scm_i_get_port_encoding, scm_i_set_port_encoding_x,
scm_port_encoding, scm_set_port_encoding_x,
scm_i_get_conversion_strategy, scm_i_set_conversion_strategy_x,
scm_port_conversion_strategy, scm_set_port_conversion_strategy_x.
* libguile/ports.c: assign the current ports to zero on startup so
we can see if they've been set.
(scm_current_input_port, scm_current_output_port,
scm_current_error_port): return #f if the port is not yet
initialized
(scm_new_port_table_entry): set up a new port's encoding and
illegal sequence handler based on the thread's current defaults
(scm_i_remove_port): free port encoding name when port is removed
(scm_i_mode_bits_n): now takes a scheme string instead of a c
string and length. All callers changed.
(SCM_MBCHAR_BUF_SIZE): new const
(scm_getc): new function, since the scm_getc in inline.h is now
scm_get_byte_or_eof. This pulls one codepoint from a port.
(scm_lfwrite_substr, scm_lfwrite_str): now uses port's encoding
(scm_unget_byte): new function, incorportaing the low-level functionality
of scm_ungetc
(scm_ungetc): uses scm_unget_byte
* libguile/numbers.h (scm_t_wchar): compilation order problem with
scm_t_wchar being use in functions in multiple headers. Forward
declare scm_t_wchar.
* libguile/load.c (scm_primitive_load): scan for file encoding at
top of file and use it to set the load port's encoding
* libguile/inline.h (scm_get_byte_or_eof): new function
incorporating most of the functionality of scm_getc.
* libguile/fports.c (fport_fill_input): now returns scm_t_wchar
* libguile/chars.h (scm_t_wchar): avoid compilation order problem
with declaration of scm_t_wchar
2009-08-25 07:54:37 -07:00
|
|
|
|
encoding = scm_scan_for_encoding (port);
|
|
|
|
|
|
if (encoding)
|
|
|
|
|
|
{
|
|
|
|
|
|
scm_i_set_port_encoding_x (port, encoding);
|
|
|
|
|
|
free (encoding);
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
/* The file has no encoding declaraed. We'll presume Latin-1. */
|
|
|
|
|
|
scm_i_set_port_encoding_x (port, NULL);
|
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);
|
2005-12-14 00:21:11 +00:00
|
|
|
|
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;
|
|
|
|
|
|
|
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. */
|
|
|
|
|
|
static SCM *scm_loc_load_should_autocompile;
|
1997-10-25 06:53:11 +00:00
|
|
|
|
|
2009-06-05 01:20:19 +02:00
|
|
|
|
/* The fallback path for autocompilation */
|
|
|
|
|
|
static SCM *scm_loc_compile_fallback_path;
|
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;
|
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
|
|
|
|
|
|
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));
|
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
|
2009-06-05 10:06:39 +02:00
|
|
|
|
cpath = scm_cons (scm_from_locale_string (SCM_CCACHE_DIR), cpath);
|
|
|
|
|
|
|
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 */
|
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)
|
|
|
|
|
|
path = scm_parse_path (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)
|
|
|
|
|
|
cpath = scm_parse_path (scm_from_locale_string (env), cpath);
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
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. */
|
2008-09-02 00:08:26 -07:00
|
|
|
|
SCM_DEFINE (scm_search_path, "search-path", 2, 2, 0,
|
|
|
|
|
|
(SCM path, SCM filename, SCM extensions, SCM require_exts),
|
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;
|
|
|
|
|
|
|
2008-09-02 00:08:26 -07:00
|
|
|
|
if (SCM_UNBNDP (require_exts))
|
|
|
|
|
|
require_exts = SCM_BOOL_F;
|
|
|
|
|
|
|
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
|
|
|
|
{
|
2008-09-02 00:08:26 -07:00
|
|
|
|
SCM res = filename;
|
|
|
|
|
|
if (scm_is_true (require_exts) &&
|
|
|
|
|
|
!scm_c_string_has_an_ext (filename_chars, filename_len,
|
|
|
|
|
|
extensions))
|
|
|
|
|
|
res = SCM_BOOL_F;
|
|
|
|
|
|
|
2006-01-29 00:23:28 +00:00
|
|
|
|
scm_dynwind_end ();
|
2008-09-02 00:08:26 -07:00
|
|
|
|
return res;
|
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... */
|
|
|
|
|
|
scm_dynwind_end ();
|
|
|
|
|
|
return SCM_BOOL_F;
|
|
|
|
|
|
}
|
1999-09-03 07:54:06 +00:00
|
|
|
|
/* 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);
|
2008-09-02 00:08:26 -07:00
|
|
|
|
return scm_search_path (path, filename, exts, SCM_UNDEFINED);
|
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
|
|
|
|
|
|
|
|
|
|
|
2009-06-03 09:24:35 +02:00
|
|
|
|
static int
|
2009-06-05 10:51:21 +02:00
|
|
|
|
compiled_is_fresh (SCM full_filename, SCM compiled_filename)
|
2009-06-03 09:24:35 +02:00
|
|
|
|
{
|
|
|
|
|
|
char *source, *compiled;
|
|
|
|
|
|
struct stat stat_source, stat_compiled;
|
|
|
|
|
|
int res;
|
|
|
|
|
|
|
|
|
|
|
|
source = scm_to_locale_string (full_filename);
|
|
|
|
|
|
compiled = scm_to_locale_string (compiled_filename);
|
|
|
|
|
|
|
|
|
|
|
|
if (stat (source, &stat_source) == 0
|
|
|
|
|
|
&& stat (compiled, &stat_compiled) == 0
|
2009-06-05 10:51:21 +02:00
|
|
|
|
&& stat_source.st_mtime == stat_compiled.st_mtime)
|
2009-06-03 09:24:35 +02:00
|
|
|
|
{
|
|
|
|
|
|
res = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
scm_puts (";;; note: source file ", scm_current_error_port ());
|
|
|
|
|
|
scm_puts (source, scm_current_error_port ());
|
2009-06-03 23:20:44 +02:00
|
|
|
|
scm_puts ("\n;;; newer than compiled ", scm_current_error_port ());
|
2009-06-03 09:24:35 +02:00
|
|
|
|
scm_puts (compiled, scm_current_error_port ());
|
|
|
|
|
|
scm_puts ("\n", scm_current_error_port ());
|
|
|
|
|
|
res = 0;
|
|
|
|
|
|
}
|
2009-06-05 10:06:39 +02:00
|
|
|
|
|
2009-06-03 09:24:35 +02:00
|
|
|
|
free (source);
|
|
|
|
|
|
free (compiled);
|
|
|
|
|
|
return res;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static SCM
|
2009-06-03 18:22:39 +02:00
|
|
|
|
do_try_autocompile (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");
|
2009-06-05 10:24:35 +02:00
|
|
|
|
compile_file = scm_module_variable
|
|
|
|
|
|
(comp_mod, scm_from_locale_symbol ("compile-file"));
|
2009-06-03 18:22:39 +02:00
|
|
|
|
|
2009-06-05 10:06:39 +02:00
|
|
|
|
if (scm_is_true (compile_file))
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM res = scm_call_1 (scm_variable_ref (compile_file), source);
|
|
|
|
|
|
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 ());
|
|
|
|
|
|
scm_puts ("\n;;; is part of the compiler; skipping autocompilation\n",
|
|
|
|
|
|
scm_current_error_port ());
|
|
|
|
|
|
return SCM_BOOL_F;
|
|
|
|
|
|
}
|
2009-06-03 18:22:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static SCM
|
|
|
|
|
|
autocompile_catch_handler (void *data, SCM tag, SCM throw_args)
|
|
|
|
|
|
{
|
2009-06-05 10:06:39 +02:00
|
|
|
|
SCM source = PTR2SCM (data);
|
2009-06-03 18:22:39 +02:00
|
|
|
|
scm_puts (";;; WARNING: compilation of ", scm_current_error_port ());
|
2009-06-05 10:06:39 +02:00
|
|
|
|
scm_display (source, scm_current_error_port ());
|
2009-06-03 23:20:44 +02:00
|
|
|
|
scm_puts (" failed:\n", scm_current_error_port ());
|
2009-06-03 18:22:39 +02:00
|
|
|
|
scm_puts (";;; key ", scm_current_error_port ());
|
|
|
|
|
|
scm_write (tag, scm_current_error_port ());
|
|
|
|
|
|
scm_puts (", throw args ", scm_current_error_port ());
|
|
|
|
|
|
scm_write (throw_args, scm_current_error_port ());
|
|
|
|
|
|
scm_newline (scm_current_error_port ());
|
2009-06-03 09:24:35 +02:00
|
|
|
|
return SCM_BOOL_F;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2009-08-18 11:05:17 +02:00
|
|
|
|
SCM_DEFINE (scm_sys_warn_autocompilation_enabled, "%warn-autocompilation-enabled", 0, 0, 0,
|
|
|
|
|
|
(void), "")
|
2009-08-28 01:16:49 +02:00
|
|
|
|
#define FUNC_NAME s_scm_sys_warn_autocompilation_enabled
|
2009-06-03 18:22:39 +02:00
|
|
|
|
{
|
|
|
|
|
|
static int message_shown = 0;
|
|
|
|
|
|
|
|
|
|
|
|
if (!message_shown)
|
|
|
|
|
|
{
|
|
|
|
|
|
scm_puts (";;; note: autocompilation is enabled, set GUILE_AUTO_COMPILE=0\n"
|
2009-06-03 23:20:44 +02:00
|
|
|
|
";;; or pass the --no-autocompile argument to disable.\n",
|
2009-06-03 18:22:39 +02:00
|
|
|
|
scm_current_error_port ());
|
|
|
|
|
|
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
|
|
|
|
|
|
scm_try_autocompile (SCM source)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (scm_is_false (*scm_loc_load_should_autocompile))
|
|
|
|
|
|
return SCM_BOOL_F;
|
|
|
|
|
|
|
|
|
|
|
|
scm_sys_warn_autocompilation_enabled ();
|
2009-06-03 18:22:39 +02:00
|
|
|
|
return scm_c_catch (SCM_BOOL_T,
|
|
|
|
|
|
do_try_autocompile,
|
2009-06-05 10:06:39 +02:00
|
|
|
|
SCM2PTR (source),
|
2009-06-03 18:22:39 +02:00
|
|
|
|
autocompile_catch_handler,
|
2009-06-05 10:06:39 +02:00
|
|
|
|
SCM2PTR (source),
|
2009-06-03 18:22:39 +02:00
|
|
|
|
NULL, NULL);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2009-06-03 09:48:16 +02:00
|
|
|
|
SCM_DEFINE (scm_primitive_load_path, "primitive-load-path", 1, 1, 0,
|
|
|
|
|
|
(SCM filename, SCM exception_on_not_found),
|
2001-03-12 07:08:46 +00:00
|
|
|
|
"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"
|
2009-06-03 09:48:16 +02:00
|
|
|
|
"an error is signalled, unless the optional argument\n"
|
|
|
|
|
|
"@var{exception_on_not_found} is @code{#f}, in which case\n"
|
|
|
|
|
|
"@code{#f} is returned instead.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_primitive_load_path
|
1996-09-05 16:51:22 +00:00
|
|
|
|
{
|
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;
|
1996-10-28 23:05:37 +00:00
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
full_filename = scm_sys_search_load_path (filename);
|
2009-06-02 22:18:02 +02:00
|
|
|
|
compiled_filename = scm_search_path (*scm_loc_load_compiled_path,
|
2008-09-02 00:08:26 -07:00
|
|
|
|
filename,
|
|
|
|
|
|
*scm_loc_load_compiled_extensions,
|
|
|
|
|
|
SCM_BOOL_T);
|
2009-06-05 10:06:39 +02: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)
|
|
|
|
|
|
&& 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
|
|
|
|
{
|
2009-06-05 10:06:39 +02:00
|
|
|
|
SCM fallback = scm_string_append
|
|
|
|
|
|
(scm_list_3 (*scm_loc_compile_fallback_path,
|
|
|
|
|
|
full_filename,
|
|
|
|
|
|
scm_car (*scm_loc_load_compiled_extensions)));
|
|
|
|
|
|
if (scm_is_true (scm_stat (fallback, SCM_BOOL_F)))
|
2009-06-05 10:24:35 +02:00
|
|
|
|
{
|
|
|
|
|
|
compiled_filename = fallback;
|
|
|
|
|
|
compiled_is_fallback = 1;
|
|
|
|
|
|
}
|
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
|
|
|
|
{
|
|
|
|
|
|
if (scm_is_true (exception_on_not_found))
|
|
|
|
|
|
SCM_MISC_ERROR ("Unable to find file ~S in load path",
|
|
|
|
|
|
scm_list_1 (filename));
|
|
|
|
|
|
else
|
|
|
|
|
|
return SCM_BOOL_F;
|
|
|
|
|
|
}
|
2008-09-02 00:08:26 -07:00
|
|
|
|
|
2009-06-03 09:24:35 +02:00
|
|
|
|
if (scm_is_false (full_filename)
|
|
|
|
|
|
|| (scm_is_true (compiled_filename)
|
2009-06-05 10:51:21 +02:00
|
|
|
|
&& compiled_is_fresh (full_filename, compiled_filename)))
|
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)
|
|
|
|
|
|
&& scm_is_pair (*scm_loc_load_compiled_extensions)
|
|
|
|
|
|
&& scm_is_string (scm_car (*scm_loc_load_compiled_extensions)))
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM fallback = scm_string_append
|
|
|
|
|
|
(scm_list_3 (*scm_loc_compile_fallback_path,
|
|
|
|
|
|
full_filename,
|
|
|
|
|
|
scm_car (*scm_loc_load_compiled_extensions)));
|
|
|
|
|
|
if (scm_is_true (scm_stat (fallback, SCM_BOOL_F))
|
2009-06-05 10:51:21 +02:00
|
|
|
|
&& compiled_is_fresh (full_filename, fallback))
|
2009-06-05 10:24:35 +02:00
|
|
|
|
{
|
|
|
|
|
|
scm_puts (";;; found fresh local cache at ", scm_current_error_port ());
|
|
|
|
|
|
scm_display (fallback, scm_current_error_port ());
|
|
|
|
|
|
scm_newline (scm_current_error_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
|
|
|
|
{
|
2009-06-05 10:24:35 +02:00
|
|
|
|
SCM freshly_compiled = scm_try_autocompile (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-06-03 09:48:16 +02:00
|
|
|
|
return scm_primitive_load_path (scm_from_locale_string (filename),
|
|
|
|
|
|
SCM_BOOL_T);
|
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
|
|
|
|
|
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);
|
|
|
|
|
|
}
|
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)));
|
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));
|
|
|
|
|
|
|
2009-06-03 18:22:39 +02:00
|
|
|
|
scm_loc_load_should_autocompile
|
|
|
|
|
|
= SCM_VARIABLE_LOC (scm_c_define ("%load-should-autocompile", SCM_BOOL_F));
|
|
|
|
|
|
|
2005-12-14 00:21:11 +00:00
|
|
|
|
the_reader = scm_make_fluid ();
|
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
|
|
|
|
scm_fluid_set_x (the_reader, SCM_BOOL_F);
|
2005-12-14 00:21:11 +00:00
|
|
|
|
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:
|
|
|
|
|
|
*/
|