]> git.tdb.fi Git - libs/gl.git/blob - source/glsl/parser.h
Redesign loading of GLSL sources
[libs/gl.git] / source / glsl / parser.h
1 #ifndef MSP_GL_SL_PARSER_H_
2 #define MSP_GL_SL_PARSER_H_
3
4 #include <set>
5 #include <string>
6 #include <msp/io/base.h>
7 #include "preprocessor.h"
8 #include "syntax.h"
9 #include "tokenizer.h"
10
11 namespace Msp {
12 namespace GL {
13 namespace SL {
14
15 class ModuleCache;
16
17 class Parser
18 {
19 private:
20         ModuleCache *mod_cache;
21         std::string source;
22         int base_index;
23         int source_index;
24         Tokenizer tokenizer;
25         Preprocessor preprocessor;
26         bool allow_stage_change;
27         Module *module;
28         Stage *cur_stage;
29         std::set<std::string> declared_types;
30         std::vector<std::string> errors;
31
32 public:
33         Parser(ModuleCache *);
34
35         void parse(Module &, const std::string &, const std::string &, int);
36         void parse(Module &, IO::Base &, const std::string &, int);
37
38 private:
39         void parse_source(const std::string &, int);
40         void set_required_version(const Version &);
41         void source_reference(unsigned, const std::string &);
42         void stage_change(Stage::Type);
43         void line_change(int, unsigned);
44
45         std::string expect_type();
46         std::string expect_identifier();
47         int expect_integer();
48         bool check(const std::string &);
49
50         static bool is_interface_qualifier(const std::string &);
51         static bool is_sampling_qualifier(const std::string &);
52         static bool is_interpolation_qualifier(const std::string &);
53         static bool is_precision_qualifier(const std::string &);
54         static bool is_qualifier(const std::string &);
55         bool is_type(const std::string &);
56         bool is_identifier(const std::string &);
57
58         void preprocess();
59         void preprocess_version();
60         void preprocess_pragma();
61         void preprocess_pragma_msp();
62         void preprocess_stage();
63
64         template<typename T>
65         RefPtr<T> create_node();
66         template<typename T>
67         RefPtr<T> parse_with_recovery(RefPtr<T> (Parser::*)());
68         RefPtr<Statement> parse_global_declaration();
69         RefPtr<Statement> parse_statement();
70         RefPtr<Import> parse_import();
71         RefPtr<Precision> parse_precision();
72         RefPtr<Layout> parse_layout();
73         template<typename T>
74         void parse_block(Block &, bool, RefPtr<T> (Parser::*)());
75         RefPtr<Expression> parse_expression(const Operator * = 0);
76         RefPtr<Literal> parse_literal();
77         RefPtr<BinaryExpression> parse_binary(const RefPtr<Expression> &, const Operator &);
78         RefPtr<TernaryExpression> parse_ternary(const RefPtr<Expression> &, const Operator &);
79         RefPtr<FunctionCall> parse_function_call(const VariableReference &);
80         RefPtr<TypeDeclaration> parse_type_declaration();
81         RefPtr<BasicTypeDeclaration> parse_basic_type_declaration();
82         RefPtr<ImageTypeDeclaration> parse_image_type_declaration();
83         RefPtr<StructDeclaration> parse_struct_declaration();
84         RefPtr<VariableDeclaration> parse_variable_declaration();
85         RefPtr<VariableDeclaration> parse_variable_declaration_with_layout();
86         RefPtr<FunctionDeclaration> parse_function_declaration();
87         RefPtr<InterfaceBlock> parse_interface_block();
88         RefPtr<Conditional> parse_conditional();
89         RefPtr<Iteration> parse_for();
90         RefPtr<Iteration> parse_while();
91         RefPtr<Passthrough> parse_passthrough();
92         RefPtr<Return> parse_return();
93 };
94
95 } // namespace SL
96 } // namespace GL
97 } // namespace Msp
98
99 #endif