Пример #1
0
        public static string Parse(Afx.Lexer lexer)
        {
            StringBuilder identifier = new StringBuilder();

            while (true)
            {
                if (lexer.IsAlphaNumeric() ||
                    lexer.IsDot() ||
                    lexer.IsColon() ||
                    lexer.IsMinus() ||
                    lexer.IsUnderscore() ||
                    lexer.IsAt())
                {
                    identifier.Append(lexer.Consume());
                    continue;
                }
                if (lexer.IsEqualSign() ||
                    lexer.IsWhiteSpace() ||
                    lexer.IsClosingBracket() ||
                    lexer.IsForwardSlash())
                {
                    return(identifier.ToString());
                }
                var unexpectedChar = lexer.Consume();
                throw new AfxException($@"Unexpected character ""{unexpectedChar}"" in identifier ""{identifier.ToString()}""");
            }
        }
Пример #2
0
        public static PropParsingResult Parse(Afx.Lexer lexer)
        {
            var identifier = Identifier.Parse(lexer);

            if (lexer.IsEqualSign())
            {
                lexer.Consume();
                if (lexer.IsSingleQuote() || lexer.IsDoubleQuote())
                {
                    return(new PropParsingResult()
                    {
                        Type = AstNodeType.String,
                        Payload = StringLiteral.Parse(lexer),
                        Identifier = identifier
                    });
                }
                if (lexer.IsOpeningBrace())
                {
                    return(new PropParsingResult()
                    {
                        Type = AstNodeType.Expression,
                        Payload = Expression.Parse(lexer),
                        Identifier = identifier
                    });
                }
                throw new AfxException($"Prop-Assignment \"{identifier}\" was not followed by quotes or braces");
            }
            else if (lexer.IsWhiteSpace() || lexer.IsForwardSlash() || lexer.IsClosingBracket())
            {
                return(new PropParsingResult()
                {
                    Type = AstNodeType.Boolean,
                    Payload = true,
                    Identifier = identifier
                });
            }
            else
            {
                throw new AfxException($"Prop identifier \"{identifier}\" is neither assignment nor boolean");
            }
        }
Пример #3
0
        public static NodeParsingResult Parse(Afx.Lexer lexer)
        {
            if (lexer.IsOpeningBracket())
            {
                lexer.Consume();
            }
            var identifier = Identifier.Parse(lexer);

            try
            {
                List <AstNode> attributes = new List <AstNode>();
                AstNode[]      children   = new AstNode[] { };

                if (lexer.IsWhiteSpace())
                {
                    while (lexer.IsWhiteSpace())
                    {
                        lexer.Consume();
                    }
                    while (!lexer.IsForwardSlash() && !lexer.IsClosingBracket())
                    {
                        if (lexer.IsOpeningBrace())
                        {
                            attributes.Add(new AstNode()
                            {
                                Type    = AstNodeType.Spread,
                                Payload = Spread.Parse(lexer)
                            });
                        }
                        else
                        {
                            attributes.Add(new AstNode()
                            {
                                Type    = AstNodeType.Prop,
                                Payload = Prop.Parse(lexer)
                            });
                        }
                        while (lexer.IsWhiteSpace())
                        {
                            lexer.Consume();
                        }
                    }
                }
                if (lexer.IsForwardSlash())
                {
                    lexer.Consume();
                    if (lexer.IsClosingBracket())
                    {
                        lexer.Consume();
                        return(new NodeParsingResult()
                        {
                            Identifier = identifier,
                            Attributes = attributes.ToArray(),
                            Children = children,
                            SelfClosing = true
                        });
                    }
                    else
                    {
                        throw new AfxException($@"Self closing tag ""{identifier}"" missing closing bracket");
                    }
                }

                if (lexer.IsClosingBracket())
                {
                    lexer.Consume();
                }
                else
                {
                    throw new AfxException($@"Tag ""{identifier}"" did not end with closing bracket.");
                }

                children = NodeList.Parse(lexer);

                if (lexer.IsOpeningBracket())
                {
                    lexer.Consume();
                    if (lexer.IsForwardSlash())
                    {
                        lexer.Consume();
                    }
                    else
                    {
                        throw new AfxException($@"Opening-bracket for closing of tag ""{identifier}"" was not followed by slash.");
                    }
                }
                else
                {
                    throw new AfxException($@"Opening-bracket for closing of tag ""{identifier}"" expected.");
                }
                var closingIdentifier = Identifier.Parse(lexer);
                if (closingIdentifier != identifier)
                {
                    throw new AfxException($@"Closing-tag identifier ""{closingIdentifier}"" did not match opening-tag identifier ""{identifier}"".");
                }
                if (lexer.IsClosingBracket())
                {
                    lexer.Consume();
                    return(new NodeParsingResult()
                    {
                        Identifier = identifier,
                        Attributes = attributes.ToArray(),
                        Children = children,
                        SelfClosing = false
                    });
                }
                else
                {
                    throw new AfxException($@"Closing tag ""{identifier}"" did not end with closing-bracket.");
                }
            }
            catch (AfxException e)
            {
                throw new DslException($@"<{identifier}> {e.Message}");
            }
        }