aboutsummaryrefslogtreecommitdiff
path: root/src/experimental/parser.cpp
blob: 71c3c5573cee08deefc0b25ec0a16b47de5673e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
/*
 * Copyright (C) 2007-2019 Xagasoft, All rights reserved.
 *
 * This file is part of the libbu++ library and is released under the
 * terms of the license contained in the file LICENSE.
 */

#include "bu/parser.h"
#include "bu/lexer.h"

#include "bu/sio.h"
using namespace Bu;

Bu::Parser::Parser()
{
}

Bu::Parser::~Parser()
{
}

void Bu::Parser::pushLexer( Lexer *pLex )
{
    sLexer.push( pLex );
}

void Bu::Parser::popLexer()
{
    delete sLexer.peekPop();
}

Lexer::Token *Bu::Parser::popToken()
{
    return sToken.peekPop();
}

void Bu::Parser::pushToken( Lexer::Token *pTok )
{
    sToken.push( pTok );
}

void Bu::Parser::parse()
{
    int iCurNt = iRootNonTerminal;
    Lexer::Token *ptCur = sLexer.peek()->nextToken();
    sio << "Token(a): " << sLexer.peek()->tokenToString( *ptCur ) << sio.nl;
    selectProduction( iCurNt, ptCur );
    
    while( !sState.isEmpty() )
    {
        switch( (*sState.peek()).eType )
        {
            case State::typeTerminal:
                sio << "terminal: " << ptCur->iToken << " == "
                    << (*sState.peek()).iIndex << sio.nl;
                if( ptCur->iToken == (*sState.peek()).iIndex )
                {
                    advanceState();
                    delete ptCur;
                    ptCur = sLexer.peek()->nextToken();
                    sio << "Token(b): " << sLexer.peek()->tokenToString( *ptCur ) << sio.nl;
                }
                else
                {
                    throw Bu::ExceptionBase("Error parsing code.");
                }
                break;

            case State::typeTerminalPush:
                sio << "terminalpush: " << ptCur->iToken << " == "
                    << (*sState.peek()).iIndex << sio.nl;
                if( ptCur->iToken == (*sState.peek()).iIndex )
                {
                    advanceState();
                    sToken.push( ptCur );

                    ptCur = sLexer.peek()->nextToken();
                    sio << "Token(c): " << sLexer.peek()->tokenToString( *ptCur ) << sio.nl;
                }
                else
                {
                    throw Bu::ExceptionBase("Error parsing code.");
                }
                break;

            case State::typeNonTerminal:
                sio << "nonterminal: " << ptCur->iToken << " --> "
                    << (*sState.peek()).iIndex << sio.nl;
                {
                    int iNt = (*sState.peek()).iIndex;
                    sio << "Current state: " << *sState.peek() << sio.nl;
                    if( !selectProduction( iNt, ptCur ) )
                    {
                        throw Bu::ExceptionBase("Error parsing code.");
                    }
                }
                break;

            case State::typeReduction:
                sio << "reduction" << sio.nl;
                aReduction[(*sState.peek()).iIndex]( *this );
                advanceState();
                break;
        }
    }   
}

bool Bu::Parser::selectProduction( int iNt, Lexer::Token *ptCur )
{
    NonTerminal &nt = aNonTerminal[iNt];
    int j = 0;
    for( NonTerminal::ProductionList::iterator i = nt.lProduction.begin();
         i; i++,j++ )
    {
        if( (*i).isEmpty() )
            continue;
        sio << "-->(Attempting production " << iNt << ":" << j << ": "
            << (*i).first() << ")" << sio.nl;
        if( (*i).first().eType == State::typeTerminal ||
            (*i).first().eType == State::typeTerminalPush )
        {
            if( (*i).first().iIndex == ptCur->iToken )
            {
                sState.push( (*i).begin() );
                sio.incIndent();
                sio << "Pushing production " << j << " from nt " << iNt
                    << sio.nl;
                return true;
            }
        }
        else if( (*i).first().eType == State::typeNonTerminal )
        {
            sState.push( (*i).begin() );
            sio.incIndent();
            sio << "Pushing production " << j << " from nt " << iNt
                << " as test." << sio.nl;
            if( !selectProduction( (*i).first().iIndex, ptCur ) )
            {
                sio.decIndent();
                sState.pop();
                sio << "Production " << j << " from nt " << iNt
                    << " didn't work out." << sio.nl;
            }
            else
            {
                return true;
            }
        }
    }
    if( nt.bCanSkip )
    {
        sio << "Nothing matches, skipping non-terminal." << sio.nl;
        advanceState();
        return true;
    }
    sio << "-->(Found nothing)" << sio.nl;
    return false;
}

void Bu::Parser::advanceState()
{
    if( sState.isEmpty() )
        return;

    sState.peek()++;
    if( !sState.peek() )
    {
        sio.decIndent();
        sState.pop();
        sio << "State advanced, End of production." << sio.nl;
        advanceState();
        return;
    }
    sio << "State advanced, now: " << *(sState.peek()) << sio.nl;
}

void Bu::Parser::setRootNonTerminal( int iRoot )
{
    iRootNonTerminal = iRoot;
}

void Bu::Parser::setRootNonTerminal( const Bu::String &sRoot )
{
    setRootNonTerminal( hNonTerminalName.get( sRoot ) );
}

int Bu::Parser::addNonTerminal( const Bu::String &sName, NonTerminal &nt )
{
    int iId = aNonTerminal.getSize();
    aNonTerminal.append( nt );
    hNonTerminalName.insert( sName, iId );
    sio << "nt '" << sName << "' = " << iId << sio.nl;
    return iId;
}

int Bu::Parser::addNonTerminal( const Bu::String &sName )
{
    int iId = aNonTerminal.getSize();
    aNonTerminal.append( NonTerminal() );
    hNonTerminalName.insert( sName, iId );
    sio << "nt '" << sName << "' = " << iId << sio.nl;
    return iId;
}

void Bu::Parser::setNonTerminal( const Bu::String &sName, NonTerminal &nt )
{
    aNonTerminal[hNonTerminalName.get(sName)] = nt;
}

int Bu::Parser::getNonTerminalId( const Bu::String &sName )
{
    return hNonTerminalName.get( sName );
}

bool Bu::Parser::hasNonTerminal( const Bu::String &sName )
{
    return hNonTerminalName.has( sName );
}

int Bu::Parser::addReduction( const Bu::String &sName, const Reduction &r )
{
    int iId = aReduction.getSize();
    aReduction.append( r );
    hReductionName.insert( sName, iId );
    return iId;
}

int Bu::Parser::addReduction( const Bu::String &sName )
{
    int iId = aReduction.getSize();
    aReduction.append( Reduction() );
    hReductionName.insert( sName, iId );
    return iId;
}

void Bu::Parser::setReduction( const Bu::String &sName, const Reduction &r )
{
    aReduction[hReductionName.get(sName)] = r;
}

int Bu::Parser::getReductionId( const Bu::String &sName )
{
    return hReductionName.get( sName );
}

bool Bu::Parser::hasReduction( const Bu::String &sName )
{
    return hReductionName.has( sName );
}

//
// Bu::Parser::State
//

Bu::Parser::State::State( Bu::Parser::State::Type eType, int iIndex ) :
    eType( eType ),
    iIndex( iIndex )
{
}

Bu::Parser::State::~State()
{
}

//
// Bu::Parser::NonTerminal
//

Bu::Parser::NonTerminal::NonTerminal() :
    bCanSkip( false )
{
}

Bu::Parser::NonTerminal::~NonTerminal()
{
}

void Bu::Parser::NonTerminal::addProduction( Production p )
{
    lProduction.append( p );
}

void Bu::Parser::NonTerminal::setCanSkip()
{
    bCanSkip = true;
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &f, Bu::Parser::State::Type t )
{
    switch( t )
    {
        case Bu::Parser::State::typeTerminal:
            return f << "typeTerminal";

        case Bu::Parser::State::typeTerminalPush:
            return f << "typeTerminalPush";

        case Bu::Parser::State::typeNonTerminal:
            return f << "typeNonTerminal";

        case Bu::Parser::State::typeReduction:
            return f << "typeReduction";
    }
    return f << "***error***";
}

Bu::Formatter &Bu::operator<<( Bu::Formatter &f, const Bu::Parser::State &s )
{
    return f << "{" << s.eType << ": " << s.iIndex << "}";
}