Esempio n. 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()}""");
            }
        }
Esempio n. 2
0
        public static string Parse(Afx.Lexer lexer)
        {
            var contents   = new StringBuilder();
            var braceCount = 0;

            if (lexer.IsOpeningBrace())
            {
                lexer.Consume();
            }
            else
            {
                throw new AfxException("Expression without braces");
            }
            while (true)
            {
                if (lexer.IsEnd())
                {
                    throw new AfxException("Unfinished Expression \"" + contents.ToString() + "\"");
                }
                if (lexer.IsOpeningBrace())
                {
                    braceCount++;
                }
                if (lexer.IsClosingBrace())
                {
                    if (braceCount == 0)
                    {
                        lexer.Consume();
                        return(contents.ToString());
                    }
                    braceCount--;
                }
                contents.Append(lexer.Consume());
            }
        }
Esempio n. 3
0
        public static AstNode Parse(Afx.Lexer lexer)
        {
            if (lexer.IsOpeningBrace() && lexer.Peek(4) == "{...")
            {
                lexer.Consume();
                lexer.Consume();
                lexer.Consume();
                lexer.Consume();
            }
            else
            {
                throw new AfxException("Spread without braces");
            }
            string contents   = string.Empty;
            int    braceCount = 0;

            while (true)
            {
                if (lexer.IsEnd())
                {
                    throw new AfxException("Unifinished Spread");
                }
                if (lexer.IsOpeningBrace())
                {
                    braceCount++;
                }
                if (lexer.IsClosingBrace())
                {
                    if (braceCount == 0)
                    {
                        lexer.Consume();
                        return(new AstNode()
                        {
                            Type = AstNodeType.Expression,
                            Payload = contents
                        });
                    }
                    braceCount--;
                }
                contents += lexer.Consume();
            }
        }
Esempio n. 4
0
        public static string Parse(Afx.Lexer lexer)
        {
            char openingQuoteSign;
            char closingQuoteSign;
            var  contents      = new StringBuilder();
            var  willBeEscaped = false;

            if (lexer.IsSingleQuote() || lexer.IsDoubleQuote())
            {
                openingQuoteSign = lexer.Consume();
            }
            else
            {
                throw new AfxException("Unquoted String literal");
            }
            while (true)
            {
                if (lexer.IsEnd())
                {
                    throw new AfxException($"Unfinished string literal \"{contents.ToString()}\"");
                }
                if (lexer.IsBackSlash() && !willBeEscaped)
                {
                    willBeEscaped = true;
                    lexer.Consume();
                    continue;
                }
                if (lexer.IsSingleQuote() || lexer.IsDoubleQuote())
                {
                    closingQuoteSign = lexer.Consume();
                    if (!willBeEscaped && openingQuoteSign == closingQuoteSign)
                    {
                        return(contents.ToString());
                    }
                    contents.Append(closingQuoteSign);
                    willBeEscaped = false;
                    continue;
                }
                contents.Append(lexer.Consume());
                willBeEscaped = false;
            }
        }
Esempio n. 5
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");
            }
        }
Esempio n. 6
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}");
            }
        }
Esempio n. 7
0
        public static AstNode[] Parse(Afx.Lexer lexer)
        {
            var currentText = new StringBuilder();
            var contents    = new List <AstNode>();

            while (!lexer.IsEnd())
            {
                if (lexer.IsOpeningBracket())
                {
                    lexer.Consume();
                    if (lexer.IsForwardSlash())
                    {
                        lexer.Rewind();
                        if (currentText.Length > 0)
                        {
                            contents.Add(new AstNode()
                            {
                                Type    = AstNodeType.Text,
                                Payload = currentText.ToString()
                            });
                        }
                        return(contents.ToArray());
                    }
                    else
                    {
                        lexer.Rewind();
                        if (currentText.Length > 0)
                        {
                            contents.Add(new AstNode()
                            {
                                Type    = AstNodeType.Text,
                                Payload = currentText.ToString()
                            });
                        }
                        contents.Add(new AstNode()
                        {
                            Type    = AstNodeType.Node,
                            Payload = Node.Parse(lexer)
                        });
                        currentText.Clear();
                        continue;
                    }
                }
                if (lexer.IsOpeningBrace())
                {
                    if (currentText.Length > 0)
                    {
                        contents.Add(new AstNode()
                        {
                            Type    = AstNodeType.Text,
                            Payload = currentText.ToString()
                        });
                    }
                    contents.Add(new AstNode()
                    {
                        Type    = AstNodeType.Expression,
                        Payload = Expression.Parse(lexer)
                    });
                    currentText.Clear();
                    continue;
                }
                currentText.Append(lexer.Consume());
            }
            if (lexer.IsEnd() && currentText.Length > 0)
            {
                contents.Add(new AstNode()
                {
                    Type    = AstNodeType.Text,
                    Payload = currentText.ToString()
                });
            }
            return(contents.ToArray());
        }