Get ragel working again while the direct-to-backend code is being written.
[external/ragel.git] / ragel / xmlcodegen.cpp
1 /*
2  *  Copyright 2005-2007 Adrian Thurston <thurston@complang.org>
3  */
4
5 /*  This file is part of Ragel.
6  *
7  *  Ragel is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  * 
12  *  Ragel is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  * 
17  *  You should have received a copy of the GNU General Public License
18  *  along with Ragel; if not, write to the Free Software
19  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
20  */
21
22
23 #include "ragel.h"
24 #include "xmlcodegen.h"
25 #include "xmlparse.h"
26 #include "parsedata.h"
27 #include "fsmgraph.h"
28 #include "gendata.h"
29 #include <string.h>
30
31 using namespace std;
32
33 XMLCodeGen::XMLCodeGen( char *fsmName, ParseData *pd, FsmAp *fsm, 
34                 std::ostream &out, XmlParser &xmlParser )
35 :
36         fsmName(fsmName),
37         pd(pd),
38         fsm(fsm),
39         out(out),
40         xmlParser(xmlParser),
41         nextActionTableId(0)
42 {
43 }
44
45
46 void XMLCodeGen::writeActionList()
47 {
48         /* Determine which actions to write. */
49         int nextActionId = 0;
50         for ( ActionList::Iter act = pd->actionList; act.lte(); act++ ) {
51                 if ( act->numRefs() > 0 || act->numCondRefs > 0 )
52                         act->actionId = nextActionId++;
53         }
54
55         /* Write the list. */
56         out << "    <action_list length=\"" << nextActionId << "\">\n";
57         for ( ActionList::Iter act = pd->actionList; act.lte(); act++ ) {
58                 if ( act->actionId >= 0 )
59                         writeAction( act );
60         }
61         out << "    </action_list>\n";
62 }
63
64 void XMLCodeGen::writeActionTableList()
65 {
66         /* Must first order the action tables based on their id. */
67         int numTables = nextActionTableId;
68         RedActionTable **tables = new RedActionTable*[numTables];
69         for ( ActionTableMap::Iter at = actionTableMap; at.lte(); at++ )
70                 tables[at->id] = at;
71
72         out << "    <action_table_list length=\"" << numTables << "\">\n";
73         for ( int t = 0; t < numTables; t++ ) {
74                 out << "      <action_table id=\"" << t << "\" length=\"" << 
75                                 tables[t]->key.length() << "\">";
76                 for ( ActionTable::Iter atel = tables[t]->key; atel.lte(); atel++ ) {
77                         out << atel->value->actionId;
78                         if ( ! atel.last() )
79                                 out << " ";
80                 }
81                 out << "</action_table>\n";
82         }
83         out << "    </action_table_list>\n";
84
85         delete[] tables;
86 }
87
88 void XMLCodeGen::reduceActionTables()
89 {
90         /* Reduce the actions tables to a set. */
91         for ( StateList::Iter st = fsm->stateList; st.lte(); st++ ) {
92                 RedActionTable *actionTable = 0;
93
94                 /* Reduce To State Actions. */
95                 if ( st->toStateActionTable.length() > 0 ) {
96                         if ( actionTableMap.insert( st->toStateActionTable, &actionTable ) )
97                                 actionTable->id = nextActionTableId++;
98                 }
99
100                 /* Reduce From State Actions. */
101                 if ( st->fromStateActionTable.length() > 0 ) {
102                         if ( actionTableMap.insert( st->fromStateActionTable, &actionTable ) )
103                                 actionTable->id = nextActionTableId++;
104                 }
105
106                 /* Reduce EOF actions. */
107                 if ( st->eofActionTable.length() > 0 ) {
108                         if ( actionTableMap.insert( st->eofActionTable, &actionTable ) )
109                                 actionTable->id = nextActionTableId++;
110                 }
111
112                 /* Loop the transitions and reduce their actions. */
113                 for ( TransList::Iter trans = st->outList; trans.lte(); trans++ ) {
114                         if ( trans->actionTable.length() > 0 ) {
115                                 if ( actionTableMap.insert( trans->actionTable, &actionTable ) )
116                                         actionTable->id = nextActionTableId++;
117                         }
118                 }
119         }
120 }
121
122 void XMLCodeGen::appendTrans( TransListVect &outList, Key lowKey, 
123                 Key highKey, TransAp *trans )
124 {
125         if ( trans->toState != 0 || trans->actionTable.length() > 0 )
126                 outList.append( TransEl( lowKey, highKey, trans ) );
127 }
128
129 void XMLCodeGen::writeKey( Key key )
130 {
131         if ( keyOps->isSigned )
132                 out << key.getVal();
133         else
134                 out << (unsigned long) key.getVal();
135 }
136
137 void XMLCodeGen::writeTrans( Key lowKey, Key highKey, TransAp *trans )
138 {
139         /* First reduce the action. */
140         RedActionTable *actionTable = 0;
141         if ( trans->actionTable.length() > 0 )
142                 actionTable = actionTableMap.find( trans->actionTable );
143
144         /* Write the transition. */
145         out << "        <t>";
146         writeKey( lowKey );
147         out << " ";
148         writeKey( highKey );
149
150         if ( trans->toState != 0 )
151                 out << " " << trans->toState->alg.stateNum;
152         else
153                 out << " x";
154
155         if ( actionTable != 0 )
156                 out << " " << actionTable->id;
157         else
158                 out << " x";
159         out << "</t>\n";
160 }
161
162 void XMLCodeGen::writeTransList( StateAp *state )
163 {
164         TransListVect outList;
165
166         /* If there is only are no ranges the task is simple. */
167         if ( state->outList.length() > 0 ) {
168                 /* Loop each source range. */
169                 for ( TransList::Iter trans = state->outList; trans.lte(); trans++ ) {
170                         /* Reduce the transition. If it reduced to anything then add it. */
171                         appendTrans( outList, trans->lowKey, trans->highKey, trans );
172                 }
173         }
174
175         out << "      <trans_list length=\"" << outList.length() << "\">\n";
176         for ( TransListVect::Iter tvi = outList; tvi.lte(); tvi++ )
177                 writeTrans( tvi->lowKey, tvi->highKey, tvi->value );
178         out << "      </trans_list>\n";
179 }
180
181 void XMLCodeGen::writeEofTrans( StateAp *state )
182 {
183         RedActionTable *eofActions = 0;
184         if ( state->eofActionTable.length() > 0 )
185                 eofActions = actionTableMap.find( state->eofActionTable );
186         
187         /* The <eof_t> is used when there is an eof target, otherwise the eof
188          * action goes into state actions. */
189         if ( state->eofTarget != 0 ) {
190                 out << "      <eof_t>" << state->eofTarget->alg.stateNum;
191
192                 if ( eofActions != 0 )
193                         out << " " << eofActions->id;
194                 else
195                         out << " x"; 
196
197                 out << "</eof_t>" << endl;
198         }
199 }
200
201 void XMLCodeGen::writeText( InlineItem *item )
202 {
203         if ( item->prev == 0 || item->prev->type != InlineItem::Text )
204                 out << "<text>";
205         xmlEscapeHost( out, item->data, strlen(item->data) );
206         if ( item->next == 0 || item->next->type != InlineItem::Text )
207                 out << "</text>";
208 }
209
210 void XMLCodeGen::writeGoto( InlineItem *item )
211 {
212         if ( pd->generatingSectionSubset )
213                 out << "<goto>-1</goto>";
214         else {
215                 EntryMapEl *targ = fsm->entryPoints.find( item->nameTarg->id );
216                 out << "<goto>" << targ->value->alg.stateNum << "</goto>";
217         }
218 }
219
220 void XMLCodeGen::writeCall( InlineItem *item )
221 {
222         if ( pd->generatingSectionSubset )
223                 out << "<call>-1</call>";
224         else {
225                 EntryMapEl *targ = fsm->entryPoints.find( item->nameTarg->id );
226                 out << "<call>" << targ->value->alg.stateNum << "</call>";
227         }
228 }
229
230 void XMLCodeGen::writeNext( InlineItem *item )
231 {
232         if ( pd->generatingSectionSubset )
233                 out << "<next>-1</next>";
234         else {
235                 EntryMapEl *targ = fsm->entryPoints.find( item->nameTarg->id );
236                 out << "<next>" << targ->value->alg.stateNum << "</next>";
237         }
238 }
239
240 void XMLCodeGen::writeGotoExpr( InlineItem *item )
241 {
242         out << "<goto_expr>";
243         writeInlineList( item->children );
244         out << "</goto_expr>";
245 }
246
247 void XMLCodeGen::writeCallExpr( InlineItem *item )
248 {
249         out << "<call_expr>";
250         writeInlineList( item->children );
251         out << "</call_expr>";
252 }
253
254 void XMLCodeGen::writeNextExpr( InlineItem *item )
255 {
256         out << "<next_expr>";
257         writeInlineList( item->children );
258         out << "</next_expr>";
259 }
260
261 void XMLCodeGen::writeEntry( InlineItem *item )
262 {
263         if ( pd->generatingSectionSubset )
264                 out << "<entry>-1</entry>";
265         else {
266                 EntryMapEl *targ = fsm->entryPoints.find( item->nameTarg->id );
267                 out << "<entry>" << targ->value->alg.stateNum << "</entry>";
268         }
269 }
270
271 void XMLCodeGen::writeActionExec( InlineItem *item )
272 {
273         out << "<exec>";
274         writeInlineList( item->children );
275         out << "</exec>";
276 }
277
278 void XMLCodeGen::writeLmOnLast( InlineItem *item )
279 {
280         out << "<set_tokend>1</set_tokend>";
281
282         if ( item->longestMatchPart->action != 0 ) {
283                 out << "<sub_action>";
284                 writeInlineList( item->longestMatchPart->action->inlineList );
285                 out << "</sub_action>";
286         }
287 }
288
289 void XMLCodeGen::writeLmOnNext( InlineItem *item )
290 {
291         out << "<set_tokend>0</set_tokend>";
292         out << "<hold></hold>";
293
294         if ( item->longestMatchPart->action != 0 ) {
295                 out << "<sub_action>";
296                 writeInlineList( item->longestMatchPart->action->inlineList );
297                 out << "</sub_action>";
298         }
299 }
300
301 void XMLCodeGen::writeLmOnLagBehind( InlineItem *item )
302 {
303         out << "<exec><get_tokend></get_tokend></exec>";
304
305         if ( item->longestMatchPart->action != 0 ) {
306                 out << "<sub_action>";
307                 writeInlineList( item->longestMatchPart->action->inlineList );
308                 out << "</sub_action>";
309         }
310 }
311
312 void XMLCodeGen::writeLmSwitch( InlineItem *item )
313 {
314         LongestMatch *longestMatch = item->longestMatch;
315         out << "<lm_switch>\n";
316
317         /* We can't put the <exec> here because we may need to handle the error
318          * case and in that case p should not be changed. Instead use a default
319          * label in the switch to adjust p when user actions are not set. An id of
320          * -1 indicates the default. */
321
322         if ( longestMatch->lmSwitchHandlesError ) {
323                 /* If the switch handles error then we should have also forced the
324                  * error state. */
325                 assert( fsm->errState != 0 );
326
327                 out << "        <sub_action id=\"0\">";
328                 out << "<goto>" << fsm->errState->alg.stateNum << "</goto>";
329                 out << "</sub_action>\n";
330         }
331         
332         bool needDefault = false;
333         for ( LmPartList::Iter lmi = *longestMatch->longestMatchList; lmi.lte(); lmi++ ) {
334                 if ( lmi->inLmSelect ) {
335                         if ( lmi->action == 0 )
336                                 needDefault = true;
337                         else {
338                                 /* Open the action. Write it with the context that sets up _p 
339                                  * when doing control flow changes from inside the machine. */
340                                 out << "        <sub_action id=\"" << lmi->longestMatchId << "\">";
341                                 out << "<exec><get_tokend></get_tokend></exec>";
342                                 writeInlineList( lmi->action->inlineList );
343                                 out << "</sub_action>\n";
344                         }
345                 }
346         }
347
348         if ( needDefault ) {
349                 out << "        <sub_action id=\"-1\"><exec><get_tokend>"
350                                 "</get_tokend></exec></sub_action>\n";
351         }
352
353         out << "    </lm_switch>";
354 }
355
356 void XMLCodeGen::writeInlineList( InlineList *inlineList )
357 {
358         for ( InlineList::Iter item = *inlineList; item.lte(); item++ ) {
359                 switch ( item->type ) {
360                 case InlineItem::Text:
361                         writeText( item );
362                         break;
363                 case InlineItem::Goto:
364                         writeGoto( item );
365                         break;
366                 case InlineItem::GotoExpr:
367                         writeGotoExpr( item );
368                         break;
369                 case InlineItem::Call:
370                         writeCall( item );
371                         break;
372                 case InlineItem::CallExpr:
373                         writeCallExpr( item );
374                         break;
375                 case InlineItem::Next:
376                         writeNext( item );
377                         break;
378                 case InlineItem::NextExpr:
379                         writeNextExpr( item );
380                         break;
381                 case InlineItem::Break:
382                         out << "<break></break>";
383                         break;
384                 case InlineItem::Ret: 
385                         out << "<ret></ret>";
386                         break;
387                 case InlineItem::PChar:
388                         out << "<pchar></pchar>";
389                         break;
390                 case InlineItem::Char: 
391                         out << "<char></char>";
392                         break;
393                 case InlineItem::Curs: 
394                         out << "<curs></curs>";
395                         break;
396                 case InlineItem::Targs: 
397                         out << "<targs></targs>";
398                         break;
399                 case InlineItem::Entry:
400                         writeEntry( item );
401                         break;
402
403                 case InlineItem::Hold:
404                         out << "<hold></hold>";
405                         break;
406                 case InlineItem::Exec:
407                         writeActionExec( item );
408                         break;
409
410                 case InlineItem::LmSetActId:
411                         out << "<set_act>" << 
412                                         item->longestMatchPart->longestMatchId << 
413                                         "</set_act>";
414                         break;
415                 case InlineItem::LmSetTokEnd:
416                         out << "<set_tokend>1</set_tokend>";
417                         break;
418
419                 case InlineItem::LmOnLast:
420                         writeLmOnLast( item );
421                         break;
422                 case InlineItem::LmOnNext:
423                         writeLmOnNext( item );
424                         break;
425                 case InlineItem::LmOnLagBehind:
426                         writeLmOnLagBehind( item );
427                         break;
428                 case InlineItem::LmSwitch: 
429                         writeLmSwitch( item );
430                         break;
431
432                 case InlineItem::LmInitAct:
433                         out << "<init_act></init_act>";
434                         break;
435                 case InlineItem::LmInitTokStart:
436                         out << "<init_tokstart></init_tokstart>";
437                         break;
438                 case InlineItem::LmSetTokStart:
439                         out << "<set_tokstart></set_tokstart>";
440                         break;
441                 }
442         }
443 }
444
445 void XMLCodeGen::makeKey( GenInlineList *outList, Key key )
446 {
447 }
448
449 void XMLCodeGen::makeText( GenInlineList *outList, InlineItem *item )
450 {
451         GenInlineItem *inlineItem = new GenInlineItem( GenInputLoc(), GenInlineItem::Text );
452         inlineItem->data = item->data;
453
454         outList->append( inlineItem );
455 }
456
457 void XMLCodeGen::makeGoto( GenInlineList *outList, InlineItem *item )
458 {
459         long targetState;
460         if ( pd->generatingSectionSubset )
461                 targetState = -1;
462         else {
463                 EntryMapEl *targ = fsm->entryPoints.find( item->nameTarg->id );
464                 targetState = targ->value->alg.stateNum;
465         }
466
467         /* Make the item. */
468         GenInlineItem *inlineItem = new GenInlineItem( GenInputLoc(), GenInlineItem::Goto );
469         inlineItem->targId = targetState;
470         outList->append( inlineItem );
471 }
472
473 void XMLCodeGen::makeGotoExpr( GenInlineList *outList, InlineItem *item )
474 {
475         /* Fill the sub list. */
476         GenInlineList *subList = new GenInlineList;
477         makeGenInlineList( subList, item->children );
478
479         /* Make the item. */
480         GenInlineItem *inlineItem = new GenInlineItem( GenInputLoc(), GenInlineItem::GotoExpr );
481         inlineItem->children = subList;
482         outList->append( inlineItem );
483 }
484
485 void XMLCodeGen::makeCall( GenInlineList *outList, InlineItem *item )
486 {
487         long targetState;
488         if ( pd->generatingSectionSubset )
489                 targetState = -1;
490         else {
491                 EntryMapEl *targ = fsm->entryPoints.find( item->nameTarg->id );
492                 targetState = targ->value->alg.stateNum;
493         }
494
495         GenInlineItem *inlineItem = new GenInlineItem( GenInputLoc(), GenInlineItem::Call );
496         inlineItem->targId = targetState;
497         outList->append( inlineItem );
498 }
499
500 void XMLCodeGen::makeCallExpr( GenInlineList *outList, InlineItem *item )
501 {
502         /* Fill the sub list. */
503         GenInlineList *subList = new GenInlineList;
504         makeGenInlineList( subList, item->children );
505
506         /* Make the item. */
507         GenInlineItem *inlineItem = new GenInlineItem( GenInputLoc(), GenInlineItem::CallExpr );
508         inlineItem->children = subList;
509         outList->append( inlineItem );
510 }
511
512 void XMLCodeGen::makeNext( GenInlineList *outList, InlineItem *item )
513 {
514         long targetState;
515         if ( pd->generatingSectionSubset )
516                 targetState = -1;
517         else {
518                 EntryMapEl *targ = fsm->entryPoints.find( item->nameTarg->id );
519                 targetState = targ->value->alg.stateNum;
520         }
521
522         GenInlineItem *inlineItem = new GenInlineItem( GenInputLoc(), GenInlineItem::Next );
523         inlineItem->targId = targetState;
524 }
525
526 void XMLCodeGen::makeNextExpr( GenInlineList *outList, InlineItem *item )
527 {
528         /* Fill the sub list. */
529         GenInlineList *subList = new GenInlineList;
530         makeGenInlineList( subList, item->children );
531
532         /* Make the item. */
533         GenInlineItem *inlineItem = new GenInlineItem( GenInputLoc(), GenInlineItem::NextExpr );
534         inlineItem->children = subList;
535         outList->append( inlineItem );
536 }
537
538 void XMLCodeGen::makeEntry( GenInlineList *outList, InlineItem *item )
539 {
540         long entryState;
541         if ( pd->generatingSectionSubset )
542                 entryState = -1;
543         else {
544                 EntryMapEl *targ = fsm->entryPoints.find( item->nameTarg->id );
545                 entryState = targ->value->alg.stateNum;
546         }
547
548         GenInlineItem *inlineItem = new GenInlineItem( GenInputLoc(), GenInlineItem::Entry );
549         inlineItem->targId = entryState;
550 }
551
552 void XMLCodeGen::makeLmOnLast( GenInlineList *outList, InlineItem *item )
553 {
554 }
555
556 void XMLCodeGen::makeLmOnNext( GenInlineList *outList, InlineItem *item )
557 {
558 }
559
560 void XMLCodeGen::makeLmOnLagBehind( GenInlineList *outList, InlineItem *item )
561 {
562 }
563
564 void XMLCodeGen::makeActionExec( GenInlineList *outList, InlineItem *item )
565 {
566 }
567
568 void XMLCodeGen::makeLmSwitch( GenInlineList *outList, InlineItem *item )
569 {
570 }
571
572 void XMLCodeGen::makeGenInlineList( GenInlineList *outList, InlineList *inList )
573 {
574         for ( InlineList::Iter item = *inList; item.lte(); item++ ) {
575                 switch ( item->type ) {
576                 case InlineItem::Text:
577                         makeText( outList, item );
578                         break;
579                 case InlineItem::Goto:
580                         makeGoto( outList, item );
581                         break;
582                 case InlineItem::GotoExpr:
583                         makeGotoExpr( outList, item );
584                         break;
585                 case InlineItem::Call:
586                         makeCall( outList, item );
587                         break;
588                 case InlineItem::CallExpr:
589                         makeCallExpr( outList, item );
590                         break;
591                 case InlineItem::Next:
592                         makeNext( outList, item );
593                         break;
594                 case InlineItem::NextExpr:
595                         makeNextExpr( outList, item );
596                         break;
597                 case InlineItem::Break:
598                         out << "<break></break>";
599                         break;
600                 case InlineItem::Ret: 
601                         out << "<ret></ret>";
602                         break;
603                 case InlineItem::PChar:
604                         out << "<pchar></pchar>";
605                         break;
606                 case InlineItem::Char: 
607                         out << "<char></char>";
608                         break;
609                 case InlineItem::Curs: 
610                         out << "<curs></curs>";
611                         break;
612                 case InlineItem::Targs: 
613                         out << "<targs></targs>";
614                         break;
615                 case InlineItem::Entry:
616                         makeEntry( outList, item );
617                         break;
618
619                 case InlineItem::Hold:
620                         out << "<hold></hold>";
621                         break;
622                 case InlineItem::Exec:
623                         makeActionExec( outList, item );
624                         break;
625
626                 case InlineItem::LmSetActId:
627                         out << "<set_act>" << 
628                                         item->longestMatchPart->longestMatchId << 
629                                         "</set_act>";
630                         break;
631                 case InlineItem::LmSetTokEnd:
632                         out << "<set_tokend>1</set_tokend>";
633                         break;
634
635                 case InlineItem::LmOnLast:
636                         makeLmOnLast( outList, item );
637                         break;
638                 case InlineItem::LmOnNext:
639                         makeLmOnNext( outList, item );
640                         break;
641                 case InlineItem::LmOnLagBehind:
642                         makeLmOnLagBehind( outList, item );
643                         break;
644                 case InlineItem::LmSwitch: 
645                         makeLmSwitch( outList, item );
646                         break;
647
648                 case InlineItem::LmInitAct:
649                         out << "<init_act></init_act>";
650                         break;
651                 case InlineItem::LmInitTokStart:
652                         out << "<init_tokstart></init_tokstart>";
653                         break;
654                 case InlineItem::LmSetTokStart:
655                         out << "<set_tokstart></set_tokstart>";
656                         break;
657                 }
658         }
659 }
660
661
662 void XMLCodeGen::writeAction( Action *action )
663 {
664         out << "      <action id=\"" << action->actionId << "\"";
665         if ( action->name != 0 ) 
666                 out << " name=\"" << action->name << "\"";
667         out << " line=\"" << action->loc.line << "\" col=\"" << action->loc.col << "\">";
668         writeInlineList( action->inlineList );
669         out << "</action>\n";
670 }
671
672 void xmlEscapeHost( std::ostream &out, char *data, long len )
673 {
674         char *end = data + len;
675         while ( data != end ) {
676                 switch ( *data ) {
677                 case '<': out << "&lt;"; break;
678                 case '>': out << "&gt;"; break;
679                 case '&': out << "&amp;"; break;
680                 default: out << *data; break;
681                 }
682                 data += 1;
683         }
684 }
685
686 void XMLCodeGen::writeStateActions( StateAp *state )
687 {
688         RedActionTable *toStateActions = 0;
689         if ( state->toStateActionTable.length() > 0 )
690                 toStateActions = actionTableMap.find( state->toStateActionTable );
691
692         RedActionTable *fromStateActions = 0;
693         if ( state->fromStateActionTable.length() > 0 )
694                 fromStateActions = actionTableMap.find( state->fromStateActionTable );
695
696         /* EOF actions go out here only if the state has no eof target. If it has
697          * an eof target then an eof transition will be used instead. */
698         RedActionTable *eofActions = 0;
699         if ( state->eofTarget == 0 && state->eofActionTable.length() > 0 )
700                 eofActions = actionTableMap.find( state->eofActionTable );
701         
702         if ( toStateActions != 0 || fromStateActions != 0 || eofActions != 0 ) {
703                 out << "      <state_actions>";
704                 if ( toStateActions != 0 )
705                         out << toStateActions->id;
706                 else
707                         out << "x";
708
709                 if ( fromStateActions != 0 )
710                         out << " " << fromStateActions->id;
711                 else
712                         out << " x";
713
714                 if ( eofActions != 0 )
715                         out << " " << eofActions->id;
716                 else
717                         out << " x";
718
719                 out << "</state_actions>\n";
720         }
721 }
722
723 void XMLCodeGen::writeStateConditions( StateAp *state )
724 {
725         if ( state->stateCondList.length() > 0 ) {
726                 out << "      <cond_list length=\"" << state->stateCondList.length() << "\">\n";
727                 for ( StateCondList::Iter scdi = state->stateCondList; scdi.lte(); scdi++ ) {
728                         out << "        <c>";
729                         writeKey( scdi->lowKey );
730                         out << " ";
731                         writeKey( scdi->highKey );
732                         out << " ";
733                         out << scdi->condSpace->condSpaceId;
734                         out << "</c>\n";
735                 }
736                 out << "      </cond_list>\n";
737         }
738 }
739
740 void XMLCodeGen::writeStateList()
741 {
742         /* Write the list of states. */
743         out << "    <state_list length=\"" << fsm->stateList.length() << "\">\n";
744         for ( StateList::Iter st = fsm->stateList; st.lte(); st++ ) {
745                 out << "      <state id=\"" << st->alg.stateNum << "\"";
746                 if ( st->isFinState() )
747                         out << " final=\"t\"";
748                 out << ">\n";
749
750                 writeStateActions( st );
751                 writeEofTrans( st );
752                 writeStateConditions( st );
753                 writeTransList( st );
754
755                 out << "      </state>\n";
756
757                 if ( !st.last() )
758                         out << "\n";
759         }
760         out << "    </state_list>\n";
761 }
762
763 bool XMLCodeGen::writeNameInst( NameInst *nameInst )
764 {
765         bool written = false;
766         if ( nameInst->parent != 0 )
767                 written = writeNameInst( nameInst->parent );
768         
769         if ( nameInst->name != 0 ) {
770                 if ( written )
771                         out << '_';
772                 out << nameInst->name;
773                 written = true;
774         }
775
776         return written;
777 }
778
779 void XMLCodeGen::writeEntryPoints()
780 {
781         /* List of entry points other than start state. */
782         if ( fsm->entryPoints.length() > 0 || pd->lmRequiresErrorState ) {
783                 out << "    <entry_points";
784                 if ( pd->lmRequiresErrorState )
785                         out << " error=\"t\"";
786                 out << ">\n";
787                 for ( EntryMap::Iter en = fsm->entryPoints; en.lte(); en++ ) {
788                         /* Get the name instantiation from nameIndex. */
789                         NameInst *nameInst = pd->nameIndex[en->key];
790                         StateAp *state = en->value;
791                         out << "      <entry name=\"";
792                         writeNameInst( nameInst );
793                         out << "\">" << state->alg.stateNum << "</entry>\n";
794                 }
795                 out << "    </entry_points>\n";
796         }
797 }
798
799 void XMLCodeGen::writeMachine()
800 {
801         /* Open the machine. */
802         out << "  <machine>\n"; 
803         
804         /* Action tables. */
805         reduceActionTables();
806
807         writeActionList();
808         writeActionTableList();
809         writeConditions();
810
811         /* Start state. */
812         out << "    <start_state>" << fsm->startState->alg.stateNum << 
813                         "</start_state>\n";
814         
815         /* Error state. */
816         if ( fsm->errState != 0 ) {
817                 out << "    <error_state>" << fsm->errState->alg.stateNum << 
818                         "</error_state>\n";
819         }
820
821         writeEntryPoints();
822         writeStateList();
823
824         out << "  </machine>\n";
825 }
826
827
828 void XMLCodeGen::writeConditions()
829 {
830         if ( condData->condSpaceMap.length() > 0 ) {
831                 long nextCondSpaceId = 0;
832                 for ( CondSpaceMap::Iter cs = condData->condSpaceMap; cs.lte(); cs++ )
833                         cs->condSpaceId = nextCondSpaceId++;
834
835                 out << "    <cond_space_list length=\"" << condData->condSpaceMap.length() << "\">\n";
836                 for ( CondSpaceMap::Iter cs = condData->condSpaceMap; cs.lte(); cs++ ) {
837                         out << "      <cond_space id=\"" << cs->condSpaceId << 
838                                 "\" length=\"" << cs->condSet.length() << "\">";
839                         writeKey( cs->baseKey );
840                         for ( CondSet::Iter csi = cs->condSet; csi.lte(); csi++ )
841                                 out << " " << (*csi)->actionId;
842                         out << "</cond_space>\n";
843                 }
844                 out << "    </cond_space_list>\n";
845         }
846 }
847
848 void XMLCodeGen::writeExports()
849 {
850         if ( pd->exportList.length() > 0 ) {
851                 out << "  <exports>\n";
852                 for ( ExportList::Iter exp = pd->exportList; exp.lte(); exp++ ) {
853                         out << "    <ex name=\"" << exp->name << "\">";
854                         writeKey( exp->key );
855                         out << "</ex>\n";
856                 }
857                 out << "  </exports>\n";
858         }
859 }
860
861 void XMLCodeGen::writeXML()
862 {
863         /* Open the definition. */
864         out << "<ragel_def name=\"" << fsmName << "\">\n";
865
866         /* Alphabet type. */
867         out << "  <alphtype>" << keyOps->alphType->internalName << "</alphtype>\n";
868         
869         /* Getkey expression. */
870         if ( pd->getKeyExpr != 0 ) {
871                 out << "  <getkey>";
872                 writeInlineList( pd->getKeyExpr );
873                 out << "</getkey>\n";
874         }
875
876         /* Access expression. */
877         if ( pd->accessExpr != 0 ) {
878                 out << "  <access>";
879                 writeInlineList( pd->accessExpr );
880                 out << "</access>\n";
881         }
882
883         /* PrePush expression. */
884         if ( pd->prePushExpr != 0 ) {
885                 out << "  <prepush>";
886                 writeInlineList( pd->prePushExpr );
887                 out << "</prepush>\n";
888         }
889
890         /* PostPop expression. */
891         if ( pd->postPopExpr != 0 ) {
892                 out << "  <postpop>";
893                 writeInlineList( pd->postPopExpr );
894                 out << "</postpop>\n";
895         }
896
897         /*
898          * Variable expressions.
899          */
900
901         if ( pd->pExpr != 0 ) {
902                 out << "  <p_expr>";
903                 writeInlineList( pd->pExpr );
904                 out << "</p_expr>\n";
905         }
906         
907         if ( pd->peExpr != 0 ) {
908                 out << "  <pe_expr>";
909                 writeInlineList( pd->peExpr );
910                 out << "</pe_expr>\n";
911         }
912
913         if ( pd->eofExpr != 0 ) {
914                 out << "  <eof_expr>";
915                 writeInlineList( pd->eofExpr );
916                 out << "</eof_expr>\n";
917         }
918         
919         if ( pd->csExpr != 0 ) {
920                 out << "  <cs_expr>";
921                 writeInlineList( pd->csExpr );
922                 out << "</cs_expr>\n";
923         }
924         
925         if ( pd->topExpr != 0 ) {
926                 out << "  <top_expr>";
927                 writeInlineList( pd->topExpr );
928                 out << "</top_expr>\n";
929         }
930         
931         if ( pd->stackExpr != 0 ) {
932                 out << "  <stack_expr>";
933                 writeInlineList( pd->stackExpr );
934                 out << "</stack_expr>\n";
935         }
936         
937         if ( pd->actExpr != 0 ) {
938                 out << "  <act_expr>";
939                 writeInlineList( pd->actExpr );
940                 out << "</act_expr>\n";
941         }
942         
943         if ( pd->tokstartExpr != 0 ) {
944                 out << "  <tokstart_expr>";
945                 writeInlineList( pd->tokstartExpr );
946                 out << "</tokstart_expr>\n";
947         }
948         
949         if ( pd->tokendExpr != 0 ) {
950                 out << "  <tokend_expr>";
951                 writeInlineList( pd->tokendExpr );
952                 out << "</tokend_expr>\n";
953         }
954         
955         if ( pd->dataExpr != 0 ) {
956                 out << "  <data_expr>";
957                 writeInlineList( pd->dataExpr );
958                 out << "</data_expr>\n";
959         }
960         
961         writeExports();
962         
963         writeMachine();
964
965         out <<
966                 "</ragel_def>\n";
967 }
968
969 void XMLCodeGen::makeBackend()
970 {
971         /* Open the definition. */
972         xmlParser.open_ragel_def( fsmName );
973
974         /* Alphabet type. */
975         xmlParser.cgd->setAlphType( keyOps->alphType->internalName );
976         
977         /* Getkey expression. */
978         if ( pd->getKeyExpr != 0 ) {
979                 out << "  <getkey>";
980                 writeInlineList( pd->getKeyExpr );
981                 out << "</getkey>\n";
982         }
983
984         /* Access expression. */
985         if ( pd->accessExpr != 0 ) {
986                 out << "  <access>";
987                 writeInlineList( pd->accessExpr );
988                 out << "</access>\n";
989         }
990
991         /* PrePush expression. */
992         if ( pd->prePushExpr != 0 ) {
993                 out << "  <prepush>";
994                 writeInlineList( pd->prePushExpr );
995                 out << "</prepush>\n";
996         }
997
998         /* PostPop expression. */
999         if ( pd->postPopExpr != 0 ) {
1000                 out << "  <postpop>";
1001                 writeInlineList( pd->postPopExpr );
1002                 out << "</postpop>\n";
1003         }
1004
1005         /*
1006          * Variable expressions.
1007          */
1008
1009         if ( pd->pExpr != 0 ) {
1010                 out << "  <p_expr>";
1011                 writeInlineList( pd->pExpr );
1012                 out << "</p_expr>\n";
1013         }
1014         
1015         if ( pd->peExpr != 0 ) {
1016                 out << "  <pe_expr>";
1017                 writeInlineList( pd->peExpr );
1018                 out << "</pe_expr>\n";
1019         }
1020
1021         if ( pd->eofExpr != 0 ) {
1022                 out << "  <eof_expr>";
1023                 writeInlineList( pd->eofExpr );
1024                 out << "</eof_expr>\n";
1025         }
1026         
1027         if ( pd->csExpr != 0 ) {
1028                 out << "  <cs_expr>";
1029                 writeInlineList( pd->csExpr );
1030                 out << "</cs_expr>\n";
1031         }
1032         
1033         if ( pd->topExpr != 0 ) {
1034                 out << "  <top_expr>";
1035                 writeInlineList( pd->topExpr );
1036                 out << "</top_expr>\n";
1037         }
1038         
1039         if ( pd->stackExpr != 0 ) {
1040                 out << "  <stack_expr>";
1041                 writeInlineList( pd->stackExpr );
1042                 out << "</stack_expr>\n";
1043         }
1044         
1045         if ( pd->actExpr != 0 ) {
1046                 out << "  <act_expr>";
1047                 writeInlineList( pd->actExpr );
1048                 out << "</act_expr>\n";
1049         }
1050         
1051         if ( pd->tokstartExpr != 0 ) {
1052                 out << "  <tokstart_expr>";
1053                 writeInlineList( pd->tokstartExpr );
1054                 out << "</tokstart_expr>\n";
1055         }
1056         
1057         if ( pd->tokendExpr != 0 ) {
1058                 out << "  <tokend_expr>";
1059                 writeInlineList( pd->tokendExpr );
1060                 out << "</tokend_expr>\n";
1061         }
1062         
1063         if ( pd->dataExpr != 0 ) {
1064                 out << "  <data_expr>";
1065                 writeInlineList( pd->dataExpr );
1066                 out << "</data_expr>\n";
1067         }
1068         
1069         writeExports();
1070         
1071         writeMachine();
1072
1073         out <<
1074                 "</ragel_def>\n";
1075 }
1076
1077