]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/my-lily-lexer.hh
* lily/my-lily-parser.cc:
[lilypond.git] / lily / include / my-lily-lexer.hh
1 /*
2   lexer.hh -- declare My_lily_lexer
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #ifndef MY_LILY_LEXER_HH
10 #define MY_LILY_LEXER_HH
11
12 #include "includable-lexer.hh"
13
14 #include "input.hh"
15 #include "lily-proto.hh"
16 #include "flower-proto.hh"
17 #include "array.hh"
18 #include "string.hh"
19 #include "duration.hh"
20 #include "pitch.hh"
21 #include "protected-scm.hh"
22
23 bool busy_parsing ();
24 void kill_lexer ();
25 void set_lexer ();
26
27 class My_lily_lexer : public Includable_lexer 
28 {
29 public:
30   Protected_scm scopes_;
31   Protected_scm encoding_;
32   
33 private:
34   int lookup_keyword (String);
35   int scan_bare_word (String);
36   SCM scan_markup_word (String);
37   int scan_escaped_word (String);
38   int identifier_type (SCM);
39   char escaped_char (char) const;
40
41 public:
42   String main_input_name_;
43   void *lexval;
44   bool main_input_b_;
45   
46   Sources *sources_; 
47
48   /* Scheme hash tables with (oct name acc)  values, and symbol keys.  */
49   Protected_scm chordmodifier_tab_;
50   Protected_scm pitchname_tab_stack_;
51
52   Keyword_table *keytable_;
53   int error_level_;
54   Input last_input_;
55
56   My_lily_lexer (Sources*);
57   My_lily_lexer (My_lily_lexer const&);
58   ~My_lily_lexer ();
59
60   int yylex ();
61
62   void prepare_for_next_token ();
63   int try_special_identifiers (SCM* ,SCM);
64   Input here_input () const;
65   
66   void add_scope (SCM);
67   SCM remove_scope ();
68   
69   void start_main_input ();
70
71   SCM lookup_identifier (String s);
72   void push_chord_state (SCM tab);
73   void push_figuredbass_state ();
74   void push_lyric_state ();
75   void push_initial_state ();
76   void push_markup_state ();
77   void push_note_state (SCM tab);
78   void pop_state ();
79   void LexerError (char const *);
80   void set_encoding (String);
81   SCM encoding () const;
82   void set_identifier (SCM name_string, SCM);
83   bool is_note_state () const;
84   bool is_chord_state () const;
85   bool is_lyric_state () const;
86   bool is_figure_state () const;
87 };
88
89 #endif /* MY_LILY_LEXER_HH */