]> git.donarmstrong.com Git - lilypond.git/blob - lily/includable-lexer.cc
Web-ja: update introduction
[lilypond.git] / lily / includable-lexer.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1997--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "includable-lexer.hh"
21
22 #include <sstream>
23 using namespace std;
24
25 #include "config.hh"
26
27 #include "file-name.hh"
28 #include "file-path.hh"
29 #include "international.hh"
30 #include "main.hh"
31 #include "source-file.hh"
32 #include "sources.hh"
33 #include "warn.hh"
34
35 #ifndef YY_BUF_SIZE
36 #define YY_BUF_SIZE 16384
37 #endif
38
39 #ifndef YY_START
40 #define YY_START                                \
41   ((yy_start - 1) / 2)
42 #define YYSTATE YY_START
43 #endif
44
45 /* Flex >= 2.5.29 has include stack; but we don't use that yet.  */
46 #if !HAVE_FLEXLEXER_YY_CURRENT_BUFFER
47 #define yy_current_buffer                                               \
48   (yy_buffer_stack != 0 ? yy_buffer_stack[yy_buffer_stack_top] : 0)
49 #endif
50
51 extern bool relative_includes;
52
53 Includable_lexer::Includable_lexer ()
54 {
55 #if HAVE_FLEXLEXER_YY_CURRENT_BUFFER
56   yy_current_buffer = 0;
57 #endif
58 }
59
60 /** Set the new input file to NAME, remember old file.  */
61 void
62 Includable_lexer::new_input (const string &name, Sources *sources)
63 {
64   string current_dir = dir_name (main_input_name_);
65   if (relative_includes)
66     current_dir = include_stack_.size () ? dir_name (include_stack_.back ()->name_string ()) : "";
67
68   Source_file *file = sources->get_file (name, current_dir);
69   if (!file)
70     {
71       string msg = _f ("cannot find file: `%s'", name);
72       msg += "\n";
73       msg += _f ("(search path: `%s')",
74                  (current_dir.length () ? (current_dir + PATHSEP) : "") + sources->path_->to_string ().c_str ());
75       LexerError (msg.c_str ());
76       return;
77     }
78   file_name_strings_.push_back (file->name_string ());
79
80   char_count_stack_.push_back (0);
81   if (yy_current_buffer)
82     state_stack_.push_back (yy_current_buffer);
83
84   debug_output (string (state_stack_.size (), ' ') // indentation!
85                 + string ("[") + file->name_string ());
86
87   include_stack_.push_back (file);
88
89   /* Ugh. We'd want to create a buffer from the bytes directly.
90
91   Whoops.  The size argument to yy_create_buffer is not the
92   filelength but a BUFFERSIZE.  Maybe this is why reading stdin fucks up.  */
93   yy_switch_to_buffer (yy_create_buffer (file->get_istream (), YY_BUF_SIZE));
94 }
95
96 void
97 Includable_lexer::new_input (const string &name, string data, Sources *sources)
98 {
99   Source_file *file = new Source_file (name, data);
100   sources->add (file);
101   file_name_strings_.push_back (name);
102
103   char_count_stack_.push_back (0);
104   if (yy_current_buffer)
105     state_stack_.push_back (yy_current_buffer);
106
107   debug_output (string (state_stack_.size (), ' ') // indentation!
108                 + string ("[") + name);
109   include_stack_.push_back (file);
110
111   yy_switch_to_buffer (yy_create_buffer (file->get_istream (), YY_BUF_SIZE));
112 }
113
114 /** pop the inputstack.  conceptually this is a destructor, but it
115     does not destruct the Source_file that Includable_lexer::new_input
116     creates.  */
117 bool
118 Includable_lexer::close_input ()
119 {
120   include_stack_.pop_back ();
121   char_count_stack_.pop_back ();
122   debug_output ("]", false);
123   yy_delete_buffer (yy_current_buffer);
124 #if HAVE_FLEXLEXER_YY_CURRENT_BUFFER
125   yy_current_buffer = 0;
126 #endif
127   if (state_stack_.empty ())
128     {
129 #if HAVE_FLEXLEXER_YY_CURRENT_BUFFER
130       yy_current_buffer = 0;
131 #endif
132       return false;
133     }
134   yy_switch_to_buffer (state_stack_.back ());
135   state_stack_.pop_back ();
136   return true;
137 }
138
139 char const *
140 Includable_lexer::here_str0 () const
141 {
142   if (include_stack_.empty ())
143     return 0;
144   return include_stack_.back ()->c_str () + char_count_stack_.back ();
145 }
146
147 Includable_lexer::~Includable_lexer ()
148 {
149   while (!include_stack_.empty ())
150     close_input ();
151 }
152
153 Source_file *
154 Includable_lexer::get_source_file () const
155 {
156   if (include_stack_.empty ())
157     return 0;
158   return include_stack_.back ();
159 }