* scripts/lilypond-book.py (option_definitions): typo
[lilypond.git] / lily / parse-scm.cc
blob3204dec58a3216116ec4d4cf2648272eeff6383d
1 #include <stdio.h>
3 #include "lily-guile.hh"
4 #include "parse-scm.hh"
5 #include "string.hh"
6 #include "source-file.hh"
8 /*
9 Pass string to scm parser, evaluate one expression.
10 Return result value and #chars read.
12 Thanks to Gary Houston <ghouston@freewire.co.uk>
14 Need guile-1.3.4 (>1.3 anyway) for ftell on str ports -- jcn
16 SCM
17 internal_ly_parse_scm (Parse_start * ps)
19 Source_file* sf =ps->start_location_.source_file_;
20 SCM port = sf->get_port();
22 int off = ps->start_location_.defined_str0_ - sf->to_str0();
24 scm_seek (port, scm_long2num (off), scm_long2num (SEEK_SET));
25 SCM from = scm_ftell (port);
27 SCM form;
28 SCM answer = SCM_UNSPECIFIED;
30 /* Read expression from port */
31 if (!SCM_EOF_OBJECT_P (form = scm_read (port)))
32 answer = scm_primitive_eval (form);
35 After parsing
37 (begin (foo 1 2))
39 all seems fine, but after parsing
41 (foo 1 2)
43 read_buf has been advanced to read_pos - 1,
44 so that scm_ftell returns 1, instead of #parsed chars
48 urg: reset read_buf for scm_ftell
49 shouldn't scm_read () do this for us?
51 scm_fill_input (port);
52 SCM to = scm_ftell (port);
53 ps->nchars = gh_scm2int (to) - gh_scm2int (from);
55 /* Don't close the port here; if we re-enter this function via a
56 continuation, then the next time we enter it, we'll get an error.
57 It's a string port anyway, so there's no advantage to closing it
58 early.
60 scm_close_port (port);
63 return answer;
67 SCM
68 catch_protected_parse_body (void *p)
70 Parse_start *ps = (Parse_start*) p;
71 return internal_ly_parse_scm (ps);
74 SCM
75 parse_handler (void * data, SCM tag, SCM args)
77 Parse_start* ps = (Parse_start*) data;
79 ps->start_location_.error (_("GUILE signaled an error for the expression beginning here"));
81 if (scm_ilength (args) > 2)
82 scm_display_error_message (gh_cadr (args), gh_caddr(args), scm_current_error_port());
85 The following is a kludge; we should probably search for
86 [a-z][0-9] (a note), and start before that.
88 ps->nchars = 1;
90 return SCM_UNDEFINED;
94 Do some magical incantations: if not, lily will exit on the first
95 GUILE error, leaving no location trace.
99 #if GUILE_MINOR_VERSION < 7
100 #define READ_ERROR "misc-error"
101 #else
102 #define READ_ERROR "read-error"
103 #endif
106 protected_ly_parse_scm (Parse_start *ps)
108 return scm_internal_catch (ly_symbol2scm (READ_ERROR),
109 &catch_protected_parse_body,
110 (void*)ps,
111 &parse_handler, (void*)ps);
114 bool parse_protect_global = true;
117 Try parsing. If failure, then return SCM_UNDEFINED.
120 ly_parse_scm (char const* s, int *n, Input i)
123 Parse_start ps ;
124 ps.str = s;
125 ps.start_location_ = i;
127 SCM ans = parse_protect_global ? protected_ly_parse_scm (&ps)
128 : internal_ly_parse_scm (&ps);
129 *n = ps.nchars;
131 return ans;