Thread Kleine Sprache parsen (16 answers)
Opened by KCobain at 2011-11-08 16:43

topeg
 2011-11-09 17:31
#154069 #154069
User since
2006-07-10
2611 Artikel
BenutzerIn

user image
Hier eine ganz kleine simple Sprache:
(man könnte sie als Funktionales Assembler bezeichnen ;-) )
more (55.9kb):
Code (perl): (dl )
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
#!/usr/bin/perl
use strict;
use warnings;

# eine kleine simple Programmiersprache
# Schleifen nur über goto!
# syntax:
#   BEFEHL Option Option ...
# Die Anzahl der Optionen sind vordefiniert und fest!
# eine Option kann ein Befehl sein, oder ein Block
#
# Blöcke werten über {...} definiert
# benannte Blöcke NAME{...}
# können mit "goto" angesprungen werden
# bei einem Block wird das Ergebnis des letzten Befehls zurück geliefert
#
# Zeichenketten sind Zahlen oder alles innerhalb von "" oder '' oder ``
# Die jeweiligen Marker dürfen nicht im String vorkommen!
#
# selbstdefinierte Funktionen sind nicht implementiert.
#
# Variablen sind Global.

########################################################################
########################################################################

# Beispiel:
my $prgstr=<<'EOC';
set "test" 0
set "test2" "5*5^5"
set "bla" 5
loop{
  if lt var "test" 5
  {
    set "test" add var "test" 1
    set "bla" mul var "bla" 5
    goto "loop"
  }
}
say var "test2"
print "ERGEBNIS: "
say var "bla"
EOC

########################################################################
########################################################################

my $command_now=[];
my $tree=[];
my %vars=();
my %marks=();
my %commands=();

# Kommandos bestehen aus eineam array mit
# - anzahl der parameter und ob sie automatsich interpreteirt werden sollen
#   wenn die parameter nicht interpretiert werden sollen,
#   werden die "Sprungmarken" übergeben
# - dem auszuführenden Befehl
# - einer Beschreibung
%commands=(
  'exit'  => [[],      sub{ exit(); },                      'Alles beenden'],
  'print' => [[1],     sub{ print $_[1]; },                 'Text ausgeben'],
  'say'   => [[1],     sub{ print "$_[1]\n"; },             'Text ausgeben mit \n'],
  'set'   => [[1,1],   sub{ $vars{$_[1]}=$_[2];return 1 }, 'Variable setzen'],
  'var'   => [[1],     sub{
                            return $vars{$_[1]} if($vars{$_[1]});
                            $vars{$_[1]}=0;
                            return 0;
                          },                                'Variable lesen'],

  'add'   => [[1,1],   sub{ return $_[1]+$_[2]},            'addiere zwei zahlen'],
  'sup'   => [[1,1],   sub{ return $_[1]-$_[2]},            'suptrahiere zwei zahlen'],
  'mul'   => [[1,1],   sub{ return $_[1]*$_[2]},            'multipliziere zwei zahlen'],
  'div'   => [[1,1],   sub{ return $_[1]/$_[2]},            'dividiere zwei zahlen'],

  'gt'    => [[1,1],   sub{ return $_[1] >  $_[2]},         'a > b'],
  'lt'    => [[1,1],   sub{ return $_[1] <  $_[2]},         'a < b'],
  'eq'    => [[1,1],   sub{ return $_[1] == $_[2]},         'a = b'],

  'app'   => [[1,1],   sub{
                            if($vars{$_[1]})
                            { $vars{$_[1]}.=$_[2]; }
                            else
                            { $vars{$_[1]}=$_[2]; }
                            return 1;
                          },                                'an variable anhängen'],

  'length'=> [[1],     sub{ return length($_[1]) },         'length string'],
  'cmp'   => [[1,1],   sub{ return $_[1] eq $_[2]},         'String a == b'],

  'goto'  => [[1],       sub{
                              if(exists($marks{$_[1]}))
                              {
                                @$command_now=@{$marks{$_[1]}};
                                runn();
                                return 1;
                              }
                              print "WARN(".join(',',@{$_[0]})."): mark: $_[1] not exists!\n";
                              return 0;
                            },                            'zu Marke springen'],

  'ifi'   => [[1,0,0], sub{
                            if($_[1])
                            {
                              @$command_now=@{$_[2]};
                              return runn();
                            }
                            @$command_now=@{$_[3]};
                            return runn();
                    },                                    'if Bedingung mit drei Parametern'],
  'if'    => [[1,0],   sub{
                            if($_[1])
                            {
                              @$command_now=@{$_[2]};
                              return runn();
                            }
                            return 0;
                          },                              'if Bedingung mit zwei Parametern'],
  'help'  => [[],      sub{
                            for my $name (sort(keys(%commands)))
                            { print "$name ".join(' ',map{'<CMD>'}@{$commands{$name}[0]})."\t=>\t$commands{$name}[2]\n"; }
                            return 1;
                          }, 'diese Hilfe']
  );

$tree=start_parse($prgstr);
$command_now=[];
runn();

########################################################################
########################################################################
########################################################################

sub start_parse
{
  my $lines=shift;
  my @commands=();
  while(length($lines) > 0)
  {
    my @add=parse(\$lines);
    if(@add==0 && length($lines) > 0)
    {
      die("ERROR PARSE String \"$lines\" \n");
    }
    push(@commands, @add);
  }
  return ['blk','',\@commands];
}

sub parse
{
  my $lines=shift;
  $$lines=~s#^\s+##s;

  if($$lines=~s#^(\w+)?{##s)
  {
    my @cmds=();
    my $name=$1 || '';
    my $runn=1;
    while(length($$lines) > 0 && $runn)
    {
      push(@cmds,parse($lines));
      $runn=0 if($$lines=~s#^}##s);
    }
    return ['blk',$name,\@cmds];
  }

  if($$lines=~s#^([a-z]+)##s)
  {
    my $cmd=$1;
    if(exists($commands{$cmd}))
    {
      my @opts;
      while(@{$commands{$cmd}->[0]}>@opts && length($$lines)>0)
      { push(@opts,parse($lines)); }
      return ['cmd',$cmd,\@opts];
    }

    die "Parse ERROR! unknown command $cmd\n";
  }

  if(
      $$lines=~s#^"([^"]*)"##s ||
      $$lines=~s#^'([^']*)'##s ||
      $$lines=~s#^`([^`]*)`##s ||
      $$lines=~s#^(\d+(?:\.\d+)?)##s
    )
  { return ['var',$1,[]]; }

  return ();
}

sub runn
{
  my @path=@$command_now;

  my $elm=$tree;
  $elm=$elm->[$_] for(@path);

  my $ret='';
  if(@$elm)
  {
    my $type=$elm->[0];
    if($type eq 'cmd')
    {
      my $code=$commands{$elm->[1]}->[1];
      my @opts=@{$elm->[2]};
      for my $pp (0..$#opts)
      {
        if($commands{$elm->[1]}->[0]->[$pp])
        {
          @$command_now=(@path,2,$pp);
          $opts[$pp]=runn();
        }
        else
        { $opts[$pp]=[@path,2,$pp]; }
      }
      @$command_now=(@path,2);
      $ret=$code->([@path],@opts);
    }
    elsif($type eq 'var')
    { $ret=$elm->[1]; }
    elsif($type eq 'blk')
    {
      if($elm->[1])
      { $marks{$elm->[1]}=[@path]; }
      for my $p (0..$#{$elm->[2]})
      {
        @$command_now=(@path,2,$p);
        $ret=runn();
      }
    }
  }
  else
  { print "ERROR runn tree elm(".join(',',@path).")\n"; }
  return $ret;
}


Das war mal eine Spielerei von mir.
Es gäbe noch einiges was man daran besser machen könnte. :-)
- mehr/bessere Fehlermeldungen
- entfernen der Rekursionen
- mehr Funktionen
- echte Schleifen
- etc.

View full thread Kleine Sprache parsen