2 includable-lexer.cc -- implement Includable_lexer
4 source file of the LilyPond music typesetter
6 (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
8 #include "includable-lexer.hh"
9 #include "source-file.hh"
13 #define YY_BUF_SIZE 16384
16 Includable_lexer::Includable_lexer()
18 yy_current_buffer
= 0;
21 /** set the new input to s, remember old file.
24 Includable_lexer::new_input(String s
, Sources
* global_sources
)
26 Source_file
* sl
= global_sources
->get_file_l(s
);
29 LexerError("Can't find file `" + s
+ "'");
34 char_count_stack_
.push(0);
35 if (yy_current_buffer
)
36 state_stack_
.push(yy_current_buffer
);
37 cout
<< "[" << s
<<flush
;
38 include_stack_
.push(sl
);
41 ugh. We'd want to create a buffer from the bytes directly.
43 Whoops. The size argument to yy_create_buffer is not the
44 filelength but a BUFFERSIZE. Maybe this is why reading stdin fucks up.
46 Maybe this is also the reason why LilyPond sometimes crashed
47 mysteriously in yy_create_buffer() with a libc-malloc error
50 yy_switch_to_buffer(yy_create_buffer( sl
->istream_l(), YY_BUF_SIZE
));
53 /** pop the inputstack. conceptually this is a destructor, but it
54 does not destruct the Source_file that Includable_lexer::new_input creates. */
56 Includable_lexer::close_input()
59 char_count_stack_
.pop();
61 yy_delete_buffer(yy_current_buffer
);
62 yy_current_buffer
= 0;
63 if (state_stack_
.empty())
68 yy_switch_to_buffer(state_stack_
.pop());
74 Includable_lexer::here_ch_C()
76 if (include_stack_
.empty())
78 return include_stack_
.top()->ch_C() + char_count_stack_
.top();
81 Includable_lexer::~Includable_lexer()
83 while (!include_stack_
.empty())
89 Since we don't create the buffer state from the bytes directly, we
90 don't know about the location of the lexer. Add this as a
93 Includable_lexer::add_lexed_char(int count
)
95 char_count_stack_
.top() += count
;
99 Includable_lexer::source_file_l()const
101 if (include_stack_
.empty())
104 return include_stack_
.top();