]> git.donarmstrong.com Git - lilypond.git/blob - lily/includable-lexer.cc
Add grammar to Notation Reference
[lilypond.git] / lily / includable-lexer.cc
1 /*
2   includable-lexer.cc -- implement Includable_lexer
3
4   source file of the LilyPond music typesetter
5
6   (c) 1997--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "includable-lexer.hh"
10
11 #include <sstream>
12 using namespace std;
13
14 #include "config.hh"
15
16 #include "file-name.hh"
17 #include "file-path.hh"
18 #include "international.hh"
19 #include "main.hh"
20 #include "source-file.hh"
21 #include "sources.hh"
22 #include "warn.hh"
23
24 #ifndef YY_BUF_SIZE
25 #define YY_BUF_SIZE 16384
26 #endif
27
28 #ifndef YY_START
29 #define YY_START                                \
30   ((yy_start - 1) / 2)
31 #define YYSTATE YY_START
32 #endif
33
34 /* Flex >= 2.5.29 has include stack; but we don't use that yet.  */
35 #if !HAVE_FLEXLEXER_YY_CURRENT_BUFFER
36 #define yy_current_buffer                                               \
37   (yy_buffer_stack != 0 ? yy_buffer_stack[yy_buffer_stack_top] : 0)
38 #endif
39
40 extern bool relative_includes;
41
42 Includable_lexer::Includable_lexer ()
43 {
44 #if HAVE_FLEXLEXER_YY_CURRENT_BUFFER
45   yy_current_buffer = 0;
46 #endif
47 }
48
49 /** Set the new input file to NAME, remember old file.  */
50 void
51 Includable_lexer::new_input (string name, Sources *sources)
52 {
53   string current_dir = dir_name (main_input_name_);
54   if (relative_includes)
55     current_dir = include_stack_.size () ? dir_name (include_stack_.back ()->name_string ()) : "";
56
57   Source_file *file = sources->get_file (name, current_dir);
58   if (!file)
59     {
60       string msg = _f ("cannot find file: `%s'", name);
61       msg += "\n";
62       msg += _f ("(search path: `%s')",
63                  (current_dir.length () ? (current_dir + PATHSEP) : "") + sources->path_->to_string ().c_str ());
64       LexerError (msg.c_str ());
65       return;
66     }
67   file_name_strings_.push_back (file->name_string ());
68
69   char_count_stack_.push_back (0);
70   if (yy_current_buffer)
71     state_stack_.push_back (yy_current_buffer);
72
73   if (be_verbose_global)
74     progress_indication (string ("[") + file->name_string ());
75
76   include_stack_.push_back (file);
77
78   /* Ugh. We'd want to create a buffer from the bytes directly.
79
80   Whoops.  The size argument to yy_create_buffer is not the
81   filelength but a BUFFERSIZE.  Maybe this is why reading stdin fucks up.  */
82   yy_switch_to_buffer (yy_create_buffer (file->get_istream (), YY_BUF_SIZE));
83 }
84
85 void
86 Includable_lexer::new_input (string name, string data, Sources *sources)
87 {
88   Source_file *file = new Source_file (name, data);
89   sources->add (file);
90   file_name_strings_.push_back (name);
91
92   char_count_stack_.push_back (0);
93   if (yy_current_buffer)
94     state_stack_.push_back (yy_current_buffer);
95
96   if (be_verbose_global)
97     progress_indication (string ("[") + name);
98   include_stack_.push_back (file);
99
100   yy_switch_to_buffer (yy_create_buffer (file->get_istream (), YY_BUF_SIZE));
101 }
102
103 /** pop the inputstack.  conceptually this is a destructor, but it
104     does not destruct the Source_file that Includable_lexer::new_input
105     creates.  */
106 bool
107 Includable_lexer::close_input ()
108 {
109   include_stack_.pop_back ();
110   char_count_stack_.pop_back ();
111   if (be_verbose_global)
112     progress_indication ("]");
113   yy_delete_buffer (yy_current_buffer);
114 #if HAVE_FLEXLEXER_YY_CURRENT_BUFFER
115   yy_current_buffer = 0;
116 #endif
117   if (state_stack_.empty ())
118     {
119 #if HAVE_FLEXLEXER_YY_CURRENT_BUFFER
120       yy_current_buffer = 0;
121 #endif
122       return false;
123     }
124   yy_switch_to_buffer (state_stack_.back ());
125   state_stack_.pop_back ();
126   return true;
127 }
128
129 char const *
130 Includable_lexer::here_str0 () const
131 {
132   if (include_stack_.empty ())
133     return 0;
134   return include_stack_.back ()->c_str () + char_count_stack_.back ();
135 }
136
137 Includable_lexer::~Includable_lexer ()
138 {
139   while (!include_stack_.empty ())
140     close_input ();
141 }
142
143 Source_file *
144 Includable_lexer::get_source_file () const
145 {
146   if (include_stack_.empty ())
147     return 0;
148   return include_stack_.back ();
149 }