2024-03-11 19:33:02 +08:00
|
|
|
|
using Canon.Core.GrammarParser;
|
|
|
|
|
|
|
|
|
|
namespace Canon.Core.LexicalParser;
|
2024-03-09 21:16:44 +08:00
|
|
|
|
|
|
|
|
|
using Enums;
|
|
|
|
|
|
2024-03-13 16:19:07 +08:00
|
|
|
|
using System.Text;
|
|
|
|
|
|
2024-03-10 11:14:52 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 词法记号基类
|
|
|
|
|
/// </summary>
|
2024-03-09 21:16:44 +08:00
|
|
|
|
public abstract class SemanticToken
|
|
|
|
|
{
|
|
|
|
|
public abstract SemanticTokenType TokenType { get; }
|
|
|
|
|
|
2024-03-10 11:14:52 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 记号出现的行号
|
|
|
|
|
/// </summary>
|
2024-03-09 21:16:44 +08:00
|
|
|
|
public required uint LinePos { get; init; }
|
|
|
|
|
|
2024-03-10 11:14:52 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 记号出现的列号
|
|
|
|
|
/// </summary>
|
2024-03-09 21:16:44 +08:00
|
|
|
|
public required uint CharacterPos { get; init; }
|
|
|
|
|
|
2024-03-10 11:14:52 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 记号的字面值
|
|
|
|
|
/// </summary>
|
2024-03-09 21:16:44 +08:00
|
|
|
|
public required string LiteralValue { get; init; }
|
2024-03-11 19:33:02 +08:00
|
|
|
|
|
|
|
|
|
public static implicit operator Terminator(SemanticToken token)
|
|
|
|
|
{
|
|
|
|
|
switch (token.TokenType)
|
|
|
|
|
{
|
|
|
|
|
case SemanticTokenType.Character:
|
|
|
|
|
return Terminator.CharacterTerminator;
|
|
|
|
|
case SemanticTokenType.Identifier:
|
|
|
|
|
return Terminator.IdentifierTerminator;
|
|
|
|
|
case SemanticTokenType.Number:
|
|
|
|
|
return Terminator.NumberTerminator;
|
|
|
|
|
case SemanticTokenType.End:
|
|
|
|
|
return Terminator.EndTerminator;
|
|
|
|
|
case SemanticTokenType.Delimiter:
|
|
|
|
|
return new Terminator(((DelimiterSemanticToken)token).DelimiterType);
|
|
|
|
|
case SemanticTokenType.Keyword:
|
|
|
|
|
return new Terminator(((KeywordSemanticToken)token).KeywordType);
|
|
|
|
|
case SemanticTokenType.Operator:
|
|
|
|
|
return new Terminator(((OperatorSemanticToken)token).OperatorType);
|
|
|
|
|
default:
|
|
|
|
|
throw new ArgumentException("Unknown token type");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 栈底符号单例对象
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static EndSemanticToken End => new()
|
|
|
|
|
{
|
|
|
|
|
LinePos = 0, CharacterPos = 0, LiteralValue = string.Empty
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public override string ToString() => LiteralValue;
|
2024-03-09 21:16:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-03-10 11:14:52 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 字符类型记号
|
|
|
|
|
/// </summary>
|
2024-03-09 21:16:44 +08:00
|
|
|
|
public class CharacterSemanticToken : SemanticToken
|
|
|
|
|
{
|
|
|
|
|
public override SemanticTokenType TokenType => SemanticTokenType.Character;
|
|
|
|
|
|
2024-03-10 11:14:52 +08:00
|
|
|
|
public static bool TryParse(uint linePos, uint characterPos, LinkedListNode<char> now,
|
|
|
|
|
out CharacterSemanticToken? token)
|
2024-03-09 21:16:44 +08:00
|
|
|
|
{
|
|
|
|
|
token = null;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-10 11:14:52 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 分隔符类型记号
|
|
|
|
|
/// </summary>
|
2024-03-09 21:16:44 +08:00
|
|
|
|
public class DelimiterSemanticToken : SemanticToken
|
|
|
|
|
{
|
|
|
|
|
public override SemanticTokenType TokenType => SemanticTokenType.Delimiter;
|
|
|
|
|
|
|
|
|
|
public required DelimiterType DelimiterType { get; init; }
|
|
|
|
|
|
|
|
|
|
public static bool TryParse(uint linePos, uint characterPos, LinkedListNode<char> now,
|
|
|
|
|
out DelimiterSemanticToken? token)
|
|
|
|
|
{
|
2024-03-09 21:44:37 +08:00
|
|
|
|
Dictionary<char, DelimiterType> delimiterMap = new()
|
2024-03-09 21:16:44 +08:00
|
|
|
|
{
|
2024-03-09 21:44:37 +08:00
|
|
|
|
{ ',', DelimiterType.Comma },
|
|
|
|
|
{ '.', DelimiterType.Period },
|
|
|
|
|
{ ':', DelimiterType.Colon },
|
|
|
|
|
{ ';', DelimiterType.Semicolon },
|
|
|
|
|
{ '(', DelimiterType.LeftParenthesis },
|
|
|
|
|
{ ')', DelimiterType.RightParenthesis },
|
|
|
|
|
{ '[', DelimiterType.LeftSquareBracket },
|
2024-03-10 11:14:52 +08:00
|
|
|
|
{ ']', DelimiterType.RightSquareBracket },
|
|
|
|
|
{ '\'', DelimiterType.SingleQuotation },
|
|
|
|
|
{ '\"', DelimiterType.DoubleQuotation }
|
2024-03-09 21:44:37 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (!delimiterMap.TryGetValue(now.Value, out DelimiterType value))
|
|
|
|
|
{
|
|
|
|
|
token = null;
|
|
|
|
|
return false;
|
2024-03-09 21:16:44 +08:00
|
|
|
|
}
|
2024-03-09 21:44:37 +08:00
|
|
|
|
|
|
|
|
|
token = new DelimiterSemanticToken
|
|
|
|
|
{
|
|
|
|
|
LinePos = linePos,
|
|
|
|
|
CharacterPos = characterPos,
|
|
|
|
|
LiteralValue = new string([now.Value]),
|
|
|
|
|
DelimiterType = value
|
|
|
|
|
};
|
|
|
|
|
return true;
|
2024-03-09 21:16:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-10 11:14:52 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 关键字类型记号
|
|
|
|
|
/// </summary>
|
2024-03-09 21:16:44 +08:00
|
|
|
|
public class KeywordSemanticToken : SemanticToken
|
|
|
|
|
{
|
|
|
|
|
public override SemanticTokenType TokenType => SemanticTokenType.Keyword;
|
|
|
|
|
|
|
|
|
|
public required KeywordType KeywordType { get; init; }
|
|
|
|
|
|
2024-03-15 12:00:47 +08:00
|
|
|
|
public static readonly Dictionary<string, KeywordType> KeywordTypes = new Dictionary<string, KeywordType>(StringComparer.OrdinalIgnoreCase)
|
|
|
|
|
{
|
|
|
|
|
{ "program", KeywordType.Program },
|
|
|
|
|
{ "const", KeywordType.Const },
|
|
|
|
|
{ "var", KeywordType.Var },
|
|
|
|
|
{ "procedure", KeywordType.Procedure },
|
|
|
|
|
{ "function", KeywordType.Function },
|
|
|
|
|
{ "begin", KeywordType.Begin },
|
|
|
|
|
{ "end", KeywordType.End },
|
|
|
|
|
{ "array", KeywordType.Array },
|
|
|
|
|
{ "of", KeywordType.Of },
|
|
|
|
|
{ "if", KeywordType.If },
|
|
|
|
|
{ "then", KeywordType.Then },
|
|
|
|
|
{ "else", KeywordType.Else },
|
|
|
|
|
{ "for", KeywordType.For },
|
|
|
|
|
{ "to", KeywordType.To },
|
|
|
|
|
{ "do", KeywordType.Do },
|
|
|
|
|
{ "integer", KeywordType.Integer },
|
|
|
|
|
{ "real", KeywordType.Real },
|
|
|
|
|
{ "boolean", KeywordType.Boolean },
|
|
|
|
|
{ "character", KeywordType.Character },
|
|
|
|
|
{ "div", KeywordType.Divide }, // 注意: Pascal 使用 'div' 而不是 '/'
|
|
|
|
|
{ "not", KeywordType.Not },
|
|
|
|
|
{ "mod", KeywordType.Mod },
|
|
|
|
|
{ "and", KeywordType.And },
|
|
|
|
|
{ "or", KeywordType.Or }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public static KeywordType GetKeywordTypeByKeyword(string keyword)
|
|
|
|
|
{
|
|
|
|
|
if (KeywordTypes.TryGetValue(keyword, out var keywordType))
|
|
|
|
|
{
|
|
|
|
|
return keywordType;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException($"Unknown keyword: {keyword}");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-09 21:16:44 +08:00
|
|
|
|
public static bool TryParse(uint linePos, uint characterPos, LinkedListNode<char> now,
|
|
|
|
|
out KeywordSemanticToken? token)
|
|
|
|
|
{
|
|
|
|
|
string buffer = new([now.Value]);
|
|
|
|
|
|
|
|
|
|
if (now.Next is null)
|
|
|
|
|
{
|
2024-03-10 11:14:52 +08:00
|
|
|
|
// 没有比两个字符更短的关键字
|
2024-03-09 21:16:44 +08:00
|
|
|
|
token = null;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
now = now.Next;
|
|
|
|
|
buffer += now.Value;
|
|
|
|
|
|
|
|
|
|
switch (buffer)
|
|
|
|
|
{
|
|
|
|
|
case "do":
|
|
|
|
|
token = new KeywordSemanticToken
|
|
|
|
|
{
|
|
|
|
|
LinePos = linePos,
|
|
|
|
|
CharacterPos = characterPos,
|
|
|
|
|
LiteralValue = "do",
|
|
|
|
|
KeywordType = KeywordType.Do
|
|
|
|
|
};
|
|
|
|
|
return true;
|
|
|
|
|
case "Of":
|
|
|
|
|
token = new KeywordSemanticToken
|
|
|
|
|
{
|
|
|
|
|
LinePos = linePos,
|
|
|
|
|
CharacterPos = characterPos,
|
|
|
|
|
LiteralValue = "of",
|
|
|
|
|
KeywordType = KeywordType.Of
|
|
|
|
|
};
|
|
|
|
|
return true;
|
|
|
|
|
case "If":
|
|
|
|
|
token = new KeywordSemanticToken
|
|
|
|
|
{
|
|
|
|
|
LinePos = linePos,
|
|
|
|
|
CharacterPos = characterPos,
|
|
|
|
|
LiteralValue = "if",
|
|
|
|
|
KeywordType = KeywordType.If
|
|
|
|
|
};
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
token = null;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-10 11:14:52 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 操作数类型记号
|
|
|
|
|
/// </summary>
|
2024-03-09 21:16:44 +08:00
|
|
|
|
public class OperatorSemanticToken : SemanticToken
|
|
|
|
|
{
|
|
|
|
|
public override SemanticTokenType TokenType => SemanticTokenType.Operator;
|
|
|
|
|
|
2024-03-10 11:14:52 +08:00
|
|
|
|
public required OperatorType OperatorType { get; init; }
|
|
|
|
|
|
2024-03-09 21:16:44 +08:00
|
|
|
|
public static bool TryParse(uint linePos, uint characterPos, LinkedListNode<char> now,
|
|
|
|
|
out OperatorSemanticToken? token)
|
|
|
|
|
{
|
|
|
|
|
token = null;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-10 11:14:52 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数值类型记号
|
|
|
|
|
/// </summary>
|
2024-03-09 21:16:44 +08:00
|
|
|
|
public class NumberSemanticToken : SemanticToken
|
|
|
|
|
{
|
|
|
|
|
public override SemanticTokenType TokenType => SemanticTokenType.Number;
|
|
|
|
|
|
2024-03-13 16:19:07 +08:00
|
|
|
|
public required NumberType NumberType { get; init; }
|
|
|
|
|
public double Value { get; private init; }
|
|
|
|
|
|
2024-03-09 21:16:44 +08:00
|
|
|
|
public static bool TryParse(uint linePos, uint characterPos, LinkedListNode<char> now,
|
|
|
|
|
out NumberSemanticToken? token)
|
|
|
|
|
{
|
2024-03-13 16:19:07 +08:00
|
|
|
|
StringBuilder buffer = new();
|
|
|
|
|
|
|
|
|
|
bool hasDecimalPoint = false;
|
|
|
|
|
bool hasExponent = false;
|
2024-03-13 17:05:07 +08:00
|
|
|
|
bool hasMinusSign = false;
|
2024-03-13 16:19:07 +08:00
|
|
|
|
|
2024-03-13 17:05:07 +08:00
|
|
|
|
while (now != null && (char.IsDigit(now.Value) || now.Value == '.' || now.Value == 'e' || now.Value == 'E' || now.Value == '-' || now.Value == '+'))
|
2024-03-13 16:19:07 +08:00
|
|
|
|
{
|
|
|
|
|
if (now.Value == '.')
|
|
|
|
|
{
|
|
|
|
|
if (hasDecimalPoint)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
hasDecimalPoint = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (now.Value == 'e' || now.Value == 'E')
|
|
|
|
|
{
|
|
|
|
|
if (hasExponent)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
hasExponent = true;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-13 17:05:07 +08:00
|
|
|
|
if (now.Value == '-' || now.Value == '+')
|
|
|
|
|
{
|
|
|
|
|
if (hasMinusSign)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
hasMinusSign = true;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-13 16:19:07 +08:00
|
|
|
|
buffer.Append(now.Value);
|
|
|
|
|
now = now.Next;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (double.TryParse(buffer.ToString(), out double value))
|
|
|
|
|
{
|
|
|
|
|
token = new NumberSemanticToken
|
|
|
|
|
{
|
|
|
|
|
LinePos = linePos,
|
|
|
|
|
CharacterPos = characterPos,
|
|
|
|
|
LiteralValue = buffer.ToString(),
|
|
|
|
|
Value = value,
|
|
|
|
|
NumberType = hasDecimalPoint || hasExponent ? NumberType.Real : NumberType.Integer
|
|
|
|
|
};
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-09 21:16:44 +08:00
|
|
|
|
token = null;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-10 11:14:52 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 标识符类型记号
|
|
|
|
|
/// </summary>
|
2024-03-09 21:16:44 +08:00
|
|
|
|
public class IdentifierSemanticToken : SemanticToken
|
|
|
|
|
{
|
|
|
|
|
public override SemanticTokenType TokenType => SemanticTokenType.Identifier;
|
|
|
|
|
|
|
|
|
|
public static bool TryParse(uint linePos, uint characterPos, LinkedListNode<char> now,
|
|
|
|
|
out IdentifierSemanticToken? token)
|
|
|
|
|
{
|
|
|
|
|
token = null;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-03-11 19:33:02 +08:00
|
|
|
|
|
|
|
|
|
public class EndSemanticToken : SemanticToken
|
|
|
|
|
{
|
|
|
|
|
public override SemanticTokenType TokenType => SemanticTokenType.End;
|
|
|
|
|
}
|
2024-03-15 12:00:47 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 错误类型记号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ErrorSemanticToken : SemanticToken
|
|
|
|
|
{
|
|
|
|
|
public override SemanticTokenType TokenType => SemanticTokenType.Error;
|
|
|
|
|
|
|
|
|
|
public static bool TryParse(uint linePos, uint characterPos, LinkedListNode<char> now,
|
|
|
|
|
out IdentifierSemanticToken? token)
|
|
|
|
|
{
|
|
|
|
|
token = null;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|