Exemple #1
0
        private string ExtractName(LUFileParser.EntitySectionContext parseTree)
        {
            var entityName = string.Empty;

            if (parseTree.entityDefinition().entityLine().entityName() != null)
            {
                entityName = parseTree.entityDefinition().entityLine().entityName().GetText().Trim();
            }
            else
            {
                Errors.Add(
                    Diagnostic.BuildDiagnostic(
                        message: "Invalid entity line, did you miss entity name after $?",
                        context: parseTree.entityDefinition().entityLine()));
            }

            if (!string.IsNullOrEmpty(entityName) && entityName.IndexOfAny(_invalidCharsInIntentOrEntityName) >= 0)
            {
                Errors.Add(
                    Diagnostic.BuildDiagnostic(
                        message: $"Invalid entity line, entity name {entityName} cannot contain any of the following characters: [<, >, *, %, &, :, \\, $]",
                        context: parseTree.entityDefinition().entityLine()));
                return(null);
            }
            else
            {
                return(entityName);
            }
        }
Exemple #2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="SectionEntity"/> class.
        /// </summary>
        /// <param name="parseTree">The entity context from the parse tree.</param>
        public SectionEntity(LUFileParser.EntitySectionContext parseTree)
        {
            if (parseTree == null)
            {
                throw new ArgumentNullException(nameof(parseTree));
            }

            SectionType          = SectionType.EntitySection;
            Errors               = new List <Error>();
            Name                 = ExtractName(parseTree);
            Type                 = ExtractType(parseTree);
            SynonymsOrPhraseList = ExtractSynonymsOrPhraseList(parseTree);
            string secTypeStr = $"{SectionType}";

            Id = $"{char.ToLowerInvariant(secTypeStr[0]) + secTypeStr.Substring(1)}_{Name}";
            var startPosition = new Position {
                Line = parseTree.Start.Line, Character = parseTree.Start.Column
            };
            var stopPosition = new Position {
                Line = parseTree.Stop.Line, Character = parseTree.Stop.Column + parseTree.Stop.Text.Length
            };

            Range = new Range {
                Start = startPosition, End = stopPosition
            };
        }
Exemple #3
0
        private string ExtractType(LUFileParser.EntitySectionContext parseTree)
        {
            if (parseTree.entityDefinition().entityLine().entityType() != null)
            {
                return(parseTree.entityDefinition().entityLine().entityType().GetText().Trim());
            }
            else
            {
                Errors.Add(
                    Diagnostic.BuildDiagnostic(
                        message: "Invalid entity line, did you miss entity type after $?",
                        context: parseTree.entityDefinition().entityLine()));
            }

            return(null);
        }
Exemple #4
0
        private List <string> ExtractSynonymsOrPhraseList(LUFileParser.EntitySectionContext parseTree)
        {
            var synonymsOrPhraseList = new List <string>();

            if (parseTree.entityDefinition().entityListBody() != null)
            {
                foreach (var errorItemStr in parseTree.entityDefinition().entityListBody().errorString())
                {
                    if (!string.IsNullOrEmpty(errorItemStr.GetText().Trim()))
                    {
                        Errors.Add(
                            Diagnostic.BuildDiagnostic(
                                message: "Invalid list entity line, did you miss '-' at line begin",
                                context: errorItemStr));
                    }
                }

                foreach (var normalItemStr in parseTree.entityDefinition().entityListBody().normalItemString())
                {
                    var itemStr = normalItemStr.GetText().Trim();
                    synonymsOrPhraseList.Add(itemStr.Substring(1).Trim());
                }
            }

            if (!string.IsNullOrEmpty(Type) && Type.IndexOf('=') > -1 && synonymsOrPhraseList.Count == 0)
            {
                var errorMsg = $"no synonyms list found for list entity definition: \"{parseTree.entityDefinition().entityLine().GetText()}\"";
                var error    = Diagnostic.BuildDiagnostic(
                    message: errorMsg,
                    context: parseTree.entityDefinition().entityLine(),
                    severity: Diagnostic.WARN);
                Errors.Add(error);
            }

            return(synonymsOrPhraseList);
        }
 /// <summary>
 /// Visit a parse tree produced by <see cref="LUFileParser.entitySection"/>.
 /// <para>
 /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/>
 /// on <paramref name="context"/>.
 /// </para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 /// <return>The visitor result.</return>
 public virtual Result VisitEntitySection([NotNull] LUFileParser.EntitySectionContext context)
 {
     return(VisitChildren(context));
 }
 /// <summary>
 /// Exit a parse tree produced by <see cref="LUFileParser.entitySection"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitEntitySection([NotNull] LUFileParser.EntitySectionContext context)
 {
 }