]> git.donarmstrong.com Git - lilypond.git/blob - lily/lily-parser-scheme.cc
* The grand 2005-2006 replace.
[lilypond.git] / lily / lily-parser-scheme.cc
1 /*
2   lily-parser-scheme.cc -- implement Lily_parser bindings
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include <unistd.h>
10
11 #include "file-name-map.hh"
12 #include "file-name.hh"
13 #include "file-path.hh"
14 #include "lily-lexer.hh"
15 #include "lily-parser.hh"
16 #include "ly-module.hh"
17 #include "main.hh"
18 #include "program-option.hh"
19 #include "source.hh"
20 #include "warn.hh"
21
22 /* Do not append `!' suffix, since 1st argument is not modified. */
23 LY_DEFINE (ly_set_point_and_click, "ly:set-point-and-click",
24            1, 0, 0, (SCM what),
25            "Deprecated.")
26 {
27   (void) what;
28   warning (_f ("deprecated function called: %s", "ly:set-point-and-click"));
29   return SCM_UNSPECIFIED;
30 }
31
32 LY_DEFINE (ly_parse_file, "ly:parse-file",
33            1, 0, 0, (SCM name),
34            "Parse a single @code{.ly} file.  "
35            "Upon failure, throw @code{ly-file-failed} key.")
36 {
37   SCM_ASSERT_TYPE (scm_is_string (name), name, SCM_ARG1, __FUNCTION__, "string");
38   char const *file = scm_i_string_chars (name);
39   char const *extensions[] = {"ly", "", 0};
40
41   String file_name = global_path.find (file, extensions);
42
43   /* By default, use base name of input file for output file name,
44      write output to cwd; do not use root and directory parts of input
45      file name.  */
46   File_name out_file_name (file_name);
47
48   global_path.append (out_file_name.dir_);
49
50   out_file_name.ext_ = "";
51   out_file_name.root_ = "";
52   out_file_name.dir_ = "";
53
54   /* When running from gui, generate output in .ly source directory.  */
55   if (output_name_global.is_empty ()
56       && ly_get_option (ly_symbol2scm ("gui")) == SCM_BOOL_T)
57     {
58       File_name f (file);
59       f.base_ = "";
60       f.ext_ = "";
61       output_name_global = f.to_string ();
62     }
63
64   if (!output_name_global.is_empty ())
65     {
66       /* Interpret --output=DIR to mean --output=DIR/BASE.  */
67       if (is_dir (output_name_global))
68         {
69           char cwd[PATH_MAX];
70           getcwd (cwd, PATH_MAX);
71
72           if (output_name_global != cwd)
73             {
74               global_path.prepend (cwd);
75               message (_f ("Changing working directory to `%s'",
76                            output_name_global.to_str0 ()));
77               chdir (output_name_global.to_str0 ());
78             }
79           output_name_global = "";
80         }
81       else
82         out_file_name = File_name (output_name_global);
83     }
84
85   String init;
86   if (!init_name_global.is_empty ())
87     init = init_name_global;
88   else
89     init = "init.ly";
90
91   String out_file = out_file_name.to_string ();
92
93   if (init.length () && global_path.find (init).is_empty ())
94     {
95       warning (_f ("can't find init file: `%s'", init));
96       warning (_f ("(search path: `%s')",
97                    global_path.to_string ().to_str0 ()));
98       exit (2);
99     }
100
101   if ((file_name != "-") && global_path.find (file_name).is_empty ())
102     {
103       warning (_f ("can't find file: `%s'", file_name));
104       scm_throw (ly_symbol2scm ("ly-file-failed"),
105                  scm_list_1 (scm_makfrom0str (file_name.to_str0 ())));
106     }
107   else
108     {
109       Sources sources;
110       sources.set_path (&global_path);
111
112       String mapped_fn = map_file_name (file_name);
113       message (_f ("Processing `%s'", mapped_fn.to_str0 ()));
114       progress_indication ("\n");
115
116       Lily_parser *parser = new Lily_parser (&sources);
117
118       parser->parse_file (init, file_name, out_file);
119
120       bool error = parser->error_level_;
121       parser->unprotect ();
122       parser = 0;
123       if (error)
124         /* TODO: pass renamed input file too.  */
125         scm_throw (ly_symbol2scm ("ly-file-failed"),
126                    scm_list_1 (scm_makfrom0str (file_name.to_str0 ())));
127     }
128   return SCM_UNSPECIFIED;
129 }
130
131 LY_DEFINE (ly_parse_string, "ly:parse-string",
132            1, 0, 0, (SCM ly_code),
133            "Parse the string LY_CODE.  "
134            "Upon failure, throw @code{ly-file-failed} key.")
135 {
136   SCM_ASSERT_TYPE (scm_is_string (ly_code), ly_code, SCM_ARG1, __FUNCTION__, "string");
137
138   Sources sources;
139   sources.set_path (&global_path);
140   Lily_parser *parser = new Lily_parser (&sources);
141   parser->parse_string (ly_scm2string (ly_code));
142   parser->unprotect ();
143   parser = 0;
144
145   return SCM_UNSPECIFIED;
146 }
147
148 LY_DEFINE (ly_clone_parser, "ly:clone-parser",
149            1, 0, 0, (SCM parser_smob),
150            "Return a clone of PARSER_SMOB.")
151 {
152   Lily_parser *parser = unsmob_lily_parser (parser_smob);
153   Lily_parser *clone = new Lily_parser (*parser);
154
155   return clone->unprotect ();
156 }
157
158 LY_DEFINE (ly_parser_define, "ly:parser-define!",
159            3, 0, 0, (SCM parser_smob, SCM symbol, SCM val),
160            "Bind SYMBOL to VAL in PARSER_SMOB's module.")
161 {
162   Lily_parser *parser = unsmob_lily_parser (parser_smob);
163   SCM_ASSERT_TYPE (scm_is_symbol (symbol), symbol, SCM_ARG2, __FUNCTION__, "symbol");
164   SCM_ASSERT_TYPE (parser, parser_smob, SCM_ARG2, __FUNCTION__, "parser");
165
166   parser->lexer_->set_identifier (scm_symbol_to_string (symbol), val);
167   return SCM_UNSPECIFIED;
168 }
169
170 LY_DEFINE (ly_parser_lookup, "ly:parser-lookup",
171            2, 0, 0, (SCM parser_smob, SCM symbol),
172            "Lookup @var{symbol} in @var{parser_smob}'s module.  "
173            "Undefined is '().")
174 {
175   Lily_parser *parser = unsmob_lily_parser (parser_smob);
176
177   SCM_ASSERT_TYPE (scm_is_symbol (symbol), symbol, SCM_ARG2, __FUNCTION__, "symbol");
178   SCM_ASSERT_TYPE (parser, parser_smob, SCM_ARG2, __FUNCTION__, "parser");
179
180   SCM val = parser->lexer_->lookup_identifier (ly_scm2string (scm_symbol_to_string (symbol)));
181   if (val != SCM_UNDEFINED)
182     return val;
183   else
184     return SCM_EOL;
185 }
186
187 LY_DEFINE (ly_parser_parse_string, "ly:parser-parse-string",
188            2, 0, 0, (SCM parser_smob, SCM ly_code),
189            "Parse the string LY_CODE with PARSER_SMOB."
190            "Upon failure, throw @code{ly-file-failed} key.")
191 {
192   Lily_parser *parser = unsmob_lily_parser (parser_smob);
193
194   SCM_ASSERT_TYPE (parser, parser_smob, SCM_ARG1, __FUNCTION__, "parser");
195   SCM_ASSERT_TYPE (scm_is_string (ly_code), ly_code, SCM_ARG2, __FUNCTION__, "string");
196
197   parser->parse_string (ly_scm2string (ly_code));
198
199   return SCM_UNSPECIFIED;
200 }
201
202 LY_DEFINE (ly_parser_set_note_names, "ly:parser-set-note-names",
203            2, 0, 0, (SCM parser, SCM names),
204            "Replace current note names in @var{parser}. "
205            "@var{names} is an alist of symbols.  "
206            "This only has effect if the current mode is notes.")
207 {
208   Lily_parser *p = unsmob_lily_parser (parser);
209   SCM_ASSERT_TYPE (p, parser, SCM_ARG1, __FUNCTION__, "Lilypond parser");
210
211   if (p->lexer_->is_note_state ())
212     {
213       p->lexer_->pop_state ();
214       p->lexer_->push_note_state (alist_to_hashq (names));
215     }
216
217   return SCM_UNSPECIFIED;
218 }
219
220 LY_DEFINE (ly_parser_output_name, "ly:parser-output-name",
221            1, 0, 0, (SCM parser),
222            "Return the base name of the output file.")
223 {
224   Lily_parser *p = unsmob_lily_parser (parser);
225   SCM_ASSERT_TYPE (p, parser, SCM_ARG1, __FUNCTION__, "Lilypond parser");
226
227   return scm_makfrom0str (p->output_basename_.to_str0 ());
228 }
229