]> git.donarmstrong.com Git - lilypond.git/blob - lib/includable-lexer.cc
release: 0.0.77.jcn1
[lilypond.git] / lib / includable-lexer.cc
1 /*
2   includable-lexer.cc -- implement Includable_lexer
3
4   source file of the LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8 #include "includable-lexer.hh"
9 #include "source-file.hh"
10 #include "source.hh"
11
12 #ifndef YY_BUF_SIZE
13 #define YY_BUF_SIZE 16384
14 #endif
15
16 Includable_lexer::Includable_lexer()
17 {
18     yy_current_buffer = 0;
19 }
20
21 /** set the  new input to s, remember old file.
22 */
23 void
24 Includable_lexer::new_input(String s, Sources  * global_sources)
25 {
26     Source_file * sl = global_sources->get_file_l(s);
27     if (!sl) {
28         LexerError("Can't find file `" + s+ "'");
29         return; 
30     }
31
32     
33     char_count_stack_.push(0);
34     if (yy_current_buffer) 
35         state_stack_.push(yy_current_buffer);
36     cout << "[" << s<<flush;
37     include_stack_.push(sl);    
38     
39     /*
40       ugh. We'd want to create a buffer from the bytes directly.
41
42       Whoops. The size argument to yy_create_buffer is not the
43       filelength but a BUFFERSIZE. Maybe this is why reading stdin fucks up.
44       
45       Maybe this is also the reason why LilyPond sometimes crashed
46       mysteriously in yy_create_buffer() with a libc-malloc error
47
48       */
49     yy_switch_to_buffer(yy_create_buffer( sl->istream_l(), YY_BUF_SIZE )); 
50 }
51
52 /** pop the inputstack.  conceptually this is a destructor, but it
53   does not destruct the Source_file that Includable_lexer::new_input creates.  */
54 bool
55 Includable_lexer::close_input()
56 {
57     include_stack_.pop();
58     char_count_stack_.pop();
59     cout << "]"<<flush;
60     yy_delete_buffer(yy_current_buffer );
61     yy_current_buffer = 0;
62     if (state_stack_.empty()) {
63         return false;
64     }else {
65         yy_switch_to_buffer(state_stack_.pop());
66         return true;
67     }    
68 }
69
70 char const*
71 Includable_lexer::here_ch_C()
72 {
73     if (include_stack_.empty())
74         return 0;
75     return include_stack_.top()->ch_C() + char_count_stack_.top();
76 }
77
78 Includable_lexer::~Includable_lexer()
79 {
80     while (!include_stack_.empty()) {
81         close_input();
82     };
83 }
84 /** 
85   Since we don't create the buffer state from the bytes directly, we
86   don't know about the location of the lexer. Add this as a
87   YY_USER_ACTION */
88 void
89 Includable_lexer::add_lexed_char(int count)
90 {
91     char_count_stack_.top() += count;
92 }
93
94 Source_file*
95 Includable_lexer::source_file_l()const
96 {
97     if (include_stack_.empty())
98         return 0;
99     else
100         return include_stack_.top();
101 }