Add a command line parsing procedure
This commit is contained in:
10
Rakefile
10
Rakefile
@@ -44,10 +44,12 @@ end
|
|||||||
.partition { |f| f.end_with? '.elna' }
|
.partition { |f| f.end_with? '.elna' }
|
||||||
|
|
||||||
File.open t.name, 'w' do |output|
|
File.open t.name, 'w' do |output|
|
||||||
puts
|
compiler_command = compiler + sources
|
||||||
puts(compiler * ' ')
|
|
||||||
|
|
||||||
Open3.popen2(*compiler) do |cl_in, cl_out|
|
puts
|
||||||
|
puts(compiler_command * ' ')
|
||||||
|
|
||||||
|
Open3.popen2(*compiler_command) do |cl_in, cl_out|
|
||||||
cl_in.write File.read(*sources)
|
cl_in.write File.read(*sources)
|
||||||
cl_in.close
|
cl_in.close
|
||||||
|
|
||||||
@@ -104,7 +106,7 @@ task :backport do
|
|||||||
source
|
source
|
||||||
.gsub(/^(var|type|const|begin)/) { |match| match.upcase }
|
.gsub(/^(var|type|const|begin)/) { |match| match.upcase }
|
||||||
.gsub(/^[[:alnum:]]* ?module/) { |match| match.upcase }
|
.gsub(/^[[:alnum:]]* ?module/) { |match| match.upcase }
|
||||||
.gsub(/\b(record|nil|or)\b/) { |match| match.upcase }
|
.gsub(/\b(record|nil|or|false|true)\b/) { |match| match.upcase }
|
||||||
.gsub(/proc\(/, 'PROCEDURE(')
|
.gsub(/proc\(/, 'PROCEDURE(')
|
||||||
.gsub(/ & /, ' AND ')
|
.gsub(/ & /, ' AND ')
|
||||||
.gsub(/ -> /, ': ')
|
.gsub(/ -> /, ': ')
|
||||||
|
15
source/CommandLineInterface.def
Normal file
15
source/CommandLineInterface.def
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
DEFINITION MODULE CommandLineInterface;
|
||||||
|
|
||||||
|
FROM Common IMPORT ShortString;
|
||||||
|
|
||||||
|
TYPE
|
||||||
|
CommandLine = RECORD
|
||||||
|
input: ShortString;
|
||||||
|
lex: BOOLEAN;
|
||||||
|
parse: BOOLEAN
|
||||||
|
END;
|
||||||
|
PCommandLine = POINTER TO CommandLine;
|
||||||
|
|
||||||
|
PROCEDURE parse_command_line(): PCommandLine;
|
||||||
|
|
||||||
|
END CommandLineInterface.
|
75
source/CommandLineInterface.elna
Normal file
75
source/CommandLineInterface.elna
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
implementation module CommandLineInterface;
|
||||||
|
|
||||||
|
from SYSTEM import ADR, TSIZE;
|
||||||
|
|
||||||
|
from Args import GetArg, Narg;
|
||||||
|
from FIO import WriteString, WriteChar, WriteLine, StdErr;
|
||||||
|
from Storage import ALLOCATE;
|
||||||
|
from Strings import CompareStr, Length;
|
||||||
|
from MemUtils import MemZero;
|
||||||
|
|
||||||
|
from Common import ShortString;
|
||||||
|
|
||||||
|
proc parse_command_line() -> PCommandLine;
|
||||||
|
var
|
||||||
|
parameter: ShortString;
|
||||||
|
i: CARDINAL;
|
||||||
|
result: PCommandLine;
|
||||||
|
parsed: BOOLEAN;
|
||||||
|
begin
|
||||||
|
i := 1;
|
||||||
|
ALLOCATE(result, TSIZE(CommandLine));
|
||||||
|
result^.lex := false;
|
||||||
|
result^.parse := false;
|
||||||
|
MemZero(ADR(result^.input), 256);
|
||||||
|
|
||||||
|
while (i < Narg()) & (result <> nil) do
|
||||||
|
parsed := GetArg(parameter, i);
|
||||||
|
parsed := false;
|
||||||
|
|
||||||
|
if CompareStr(parameter, '--lex') = 0 then
|
||||||
|
parsed := true;
|
||||||
|
result^.lex := true
|
||||||
|
end;
|
||||||
|
if CompareStr(parameter, '--parse') = 0 then
|
||||||
|
parsed := true;
|
||||||
|
result^.parse := true
|
||||||
|
end;
|
||||||
|
if parameter[0] <> '-' then
|
||||||
|
parsed := true;
|
||||||
|
|
||||||
|
if Length(result^.input) > 0 then
|
||||||
|
WriteString(StdErr, 'Fatal error: only one source file can be compiled at once. First given "');
|
||||||
|
WriteString(StdErr, result^.input);
|
||||||
|
WriteString(StdErr, '", then "');
|
||||||
|
WriteString(StdErr, parameter);
|
||||||
|
WriteString(StdErr, '".');
|
||||||
|
WriteLine(StdErr);
|
||||||
|
result := nil
|
||||||
|
end;
|
||||||
|
if result <> nil then
|
||||||
|
result^.input := parameter
|
||||||
|
end
|
||||||
|
end;
|
||||||
|
if parsed = false then
|
||||||
|
WriteString(StdErr, 'Fatal error: unknown command line options: ');
|
||||||
|
|
||||||
|
WriteString(StdErr, parameter);
|
||||||
|
WriteChar(StdErr, '.');
|
||||||
|
WriteLine(StdErr);
|
||||||
|
|
||||||
|
result := nil
|
||||||
|
end;
|
||||||
|
|
||||||
|
i := i + 1
|
||||||
|
end;
|
||||||
|
if (result <> nil) & (Length(result^.input) = 0) then
|
||||||
|
WriteString(StdErr, 'Fatal error: no input files.');
|
||||||
|
WriteLine(StdErr);
|
||||||
|
result := nil
|
||||||
|
end;
|
||||||
|
|
||||||
|
return result
|
||||||
|
end;
|
||||||
|
|
||||||
|
end CommandLineInterface.
|
6
source/Common.def
Normal file
6
source/Common.def
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
DEFINITION MODULE Common;
|
||||||
|
|
||||||
|
TYPE
|
||||||
|
ShortString = ARRAY[0..255] OF CHAR;
|
||||||
|
|
||||||
|
END Common.
|
3
source/Common.elna
Normal file
3
source/Common.elna
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
implementation module Common;
|
||||||
|
|
||||||
|
end Common.
|
@@ -5,11 +5,15 @@ from SYSTEM import ADR;
|
|||||||
|
|
||||||
from Lexer import Lexer, lexer_destroy, lexer_initialize;
|
from Lexer import Lexer, lexer_destroy, lexer_initialize;
|
||||||
from Transpiler import transpile;
|
from Transpiler import transpile;
|
||||||
|
from CommandLineInterface import PCommandLine, parse_command_line;
|
||||||
|
|
||||||
var
|
var
|
||||||
lexer: Lexer;
|
lexer: Lexer;
|
||||||
|
command_line: PCommandLine;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
command_line := parse_command_line();
|
||||||
|
|
||||||
lexer_initialize(ADR(lexer), StdIn);
|
lexer_initialize(ADR(lexer), StdIn);
|
||||||
|
|
||||||
transpile(ADR(lexer));
|
transpile(ADR(lexer));
|
||||||
|
@@ -217,7 +217,7 @@ var
|
|||||||
index: CARDINAL;
|
index: CARDINAL;
|
||||||
begin
|
begin
|
||||||
index := 0;
|
index := 0;
|
||||||
result := TRUE;
|
result := true;
|
||||||
|
|
||||||
while (index < Length(Keyword)) & (TokenStart <> TokenEnd) & result DO
|
while (index < Length(Keyword)) & (TokenStart <> TokenEnd) & result DO
|
||||||
result := (Keyword[index] = TokenStart^) or (Lower(Keyword[index]) = TokenStart^);
|
result := (Keyword[index] = TokenStart^) or (Lower(Keyword[index]) = TokenStart^);
|
||||||
@@ -409,11 +409,11 @@ begin
|
|||||||
end;
|
end;
|
||||||
if compare_keyword('TRUE', lexer^.Start, lexer^.Current) then
|
if compare_keyword('TRUE', lexer^.Start, lexer^.Current) then
|
||||||
token^.kind := lexerKindBoolean;
|
token^.kind := lexerKindBoolean;
|
||||||
token^.booleanKind := TRUE
|
token^.booleanKind := true
|
||||||
end;
|
end;
|
||||||
if compare_keyword('FALSE', lexer^.Start, lexer^.Current) then
|
if compare_keyword('FALSE', lexer^.Start, lexer^.Current) then
|
||||||
token^.kind := lexerKindBoolean;
|
token^.kind := lexerKindBoolean;
|
||||||
token^.booleanKind := FALSE
|
token^.booleanKind := false
|
||||||
end
|
end
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
3
source/Parser.def
Normal file
3
source/Parser.def
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
DEFINITION MODULE Parser;
|
||||||
|
|
||||||
|
END Parser.
|
3
source/Parser.elna
Normal file
3
source/Parser.elna
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
module Parser;
|
||||||
|
|
||||||
|
end Parser.
|
@@ -441,6 +441,14 @@ begin
|
|||||||
WriteString('NIL ');
|
WriteString('NIL ');
|
||||||
written_bytes := 1
|
written_bytes := 1
|
||||||
end;
|
end;
|
||||||
|
if (token.kind = lexerKindBoolean) & token.booleanKind then
|
||||||
|
WriteString('TRUE ');
|
||||||
|
written_bytes := 1
|
||||||
|
end;
|
||||||
|
if (token.kind = lexerKindBoolean) & (~token.booleanKind) then
|
||||||
|
WriteString('FALSE ');
|
||||||
|
written_bytes := 1
|
||||||
|
end;
|
||||||
if token.kind = lexerKindOr then
|
if token.kind = lexerKindOr then
|
||||||
WriteString('OR ');
|
WriteString('OR ');
|
||||||
written_bytes := 1
|
written_bytes := 1
|
||||||
|
Reference in New Issue
Block a user