Esempio n. 1
0
        public int FindNonwhitespaceBackward(int fromPos = -1, bool throwErrorOnComplete = true)
        {
            if (m_TextLen == 0)
            {
                return(-1);
            }

            if (fromPos < 0)
            {
                fromPos = m_Pos;
            }

            var pos = Math.Min(Math.Max(fromPos, -1), m_TextLen - 1);

            while (pos > -1)
            {
                if (char.IsWhiteSpace(m_Text[pos]))
                {
                    pos--;
                }
                break;
            }

            if (throwErrorOnComplete && pos < 0)
            {
                throw TypeNameParserCommon.NewError(TypeNameError.InvalidTypeName, this);
            }

            return(pos);
        }
Esempio n. 2
0
        public void SetAssemblyName(int start, int length = -1)
        {
            if (m_AssemblyName != null)
            {
                throw TypeNameParserCommon.NewError(TypeNameError.AssemblyNameAlreadyDefined, m_Text, -1, TypeNameToken.AssemblyName);
            }

            m_AssemblyName          = new TypeNameBlock(m_Text, TypeNameBlockType.AssemblyName, start, length);
            m_AssemblyName.Changed += ScopeChanged;

            ScopeChanged(this, EventArgs.Empty);
        }
Esempio n. 3
0
        public void AddGenericsArgument(TypeNameScope argument)
        {
            if (argument == null || argument.Parent != null || !CanAddGenericsArgument())
            {
                throw TypeNameParserCommon.NewError(TypeNameError.GenericsArgumentsCountExceeded, m_Text, -1, TypeNameToken.Undefined);
            }

            GenericsArguments.Add(argument);
            argument.m_Parent = this;

            ScopeChanged(this, EventArgs.Empty);
        }
Esempio n. 4
0
        public void SetPublicKeyToken(int start, int length = -1)
        {
            if (m_PublicKeyToken != null)
            {
                throw TypeNameParserCommon.NewError(TypeNameError.AssemblyPublicKeyTokenAlreadyDefined, m_Text, -1, TypeNameToken.PublicKeyToken);
            }

            if (AssemblyName == null)
            {
                throw TypeNameParserCommon.NewError(TypeNameError.CannotDefinePublicKeyTokenBeforeAssemblyName, m_Text, -1, TypeNameToken.PublicKeyToken);
            }

            m_PublicKeyToken          = new TypeNameBlock(m_Text, TypeNameBlockType.PublicKeyToken, start, length);
            m_PublicKeyToken.Changed += ScopeChanged;

            ScopeChanged(this, EventArgs.Empty);
        }
Esempio n. 5
0
        public void SetCulture(int start, int length = -1)
        {
            if (m_Culture != null)
            {
                throw TypeNameParserCommon.NewError(TypeNameError.AssemblyCultureAlreadyDefined, m_Text, -1, TypeNameToken.Culture);
            }

            if (AssemblyName == null)
            {
                throw TypeNameParserCommon.NewError(TypeNameError.CannotDefineCultureBeforeAssemblyName, m_Text, -1, TypeNameToken.Culture);
            }

            m_Culture          = new TypeNameBlock(m_Text, TypeNameBlockType.Culture, start, length);
            m_Culture.Changed += ScopeChanged;

            ScopeChanged(this, EventArgs.Empty);
        }
Esempio n. 6
0
        public static TypeNameParseResult Parse(string str, bool debug = false)
        {
            if (String.IsNullOrEmpty(str))
            {
                throw TypeNameParserCommon.NewError(TypeNameError.InvalidTypeName, str, 0, TypeNameToken.Undefined);
            }

            var cacheItem = (ParsedLRUItem)null;

            if (!debug)
            {
                if (!s_ParserCache.TryGetValue(str, out cacheItem))
                {
                    cacheItem = new ParsedLRUItem {
                        Count = 1
                    };
                    s_ParserCache[str] = cacheItem;
                }
                else
                {
                    if (cacheItem.Count < int.MaxValue)
                    {
                        cacheItem.Count++;
                    }

                    if (cacheItem.Scope != null)
                    {
                        var root = (ITypeNameScope)cacheItem.Scope.Clone();
                        return(new TypeNameParseResult(root, new ReadonlyStack <TypeNameParseTrace>(new Stack <TypeNameParseTrace>())));
                    }
                }
            }

            using (var context = new ParseContext(str, debug))
            {
                Parse(context);
                if (!debug && context.Root != null && cacheItem != null && cacheItem.Count > MinimumNonCachedRound)
                {
                    cacheItem.Scope = (ITypeNameScope)context.Root.Clone();
                }

                return(new TypeNameParseResult(context.Root, new ReadonlyStack <TypeNameParseTrace>(context.Trace)));
            }
        }
Esempio n. 7
0
        public ITypeNameScope StartScope()
        {
            var parentScope = m_Stack.Peek();

            if (!parentScope.CanAddGenericsArgument())
            {
                throw TypeNameParserCommon.NewError(TypeNameError.InvalidGenericsArgumentStart, m_Text, m_Pos, m_Token);
            }

            var scope = new TypeNameScope(m_Id++, m_Text);

            parentScope.AddGenericsArgument(scope);

            m_Stack.Push(scope);

            m_CurrentScope = scope;
            m_InRoot       = false;

            return(scope);
        }
Esempio n. 8
0
        private static int ParseGenericsArgsCount(ParseContext context)
        {
            var start = TypeNameParserCommon.LastIndexOf('`', context.Text, context.CurrentPos - 1);

            if (start < 0)
            {
                throw TypeNameParserCommon.NewError(TypeNameError.InvalidGenericsCount, context);
            }

            var len = context.CurrentPos - start - 1;

            if (len > MaxAllowedGenericsCountCharLength)
            {
                throw TypeNameParserCommon.NewError(TypeNameError.InvalidGenericsCount, context);
            }

            if (int.TryParse(context.Text.Substring(start + 1, len), out int result))
            {
                return(result);
            }

            throw TypeNameParserCommon.NewError(TypeNameError.InvalidGenericsCount, context);
        }
Esempio n. 9
0
 public TypeNameException CreateError(TypeNameError error)
 {
     return(TypeNameParserCommon.NewError(error, this));
 }
Esempio n. 10
0
        private static void Parse(ParseContext context)
        {
            while (context.Next())
            {
                switch (context.Token)
                {
                case TypeNameToken.TypeNameStart:
                {
                    context.EatWhitespace(throwErrorOnComplete: false);
                    context.CurrentScope.SetName(context.CurrentPos, -1);

                    if (!context.IsValidTypeNameChar(true))
                    {
                        throw context.DefaultError();
                    }

                    context.Previous();
                    context.Token = TypeNameToken.TypeName;
                }
                break;

                case TypeNameToken.TypeName:
                {
                    var ch = context.CurrentChar.Value;

                    if (ch == '`')
                    {
                        context.Previous();
                        context.Token = TypeNameToken.GenericsCountStart;
                    }
                    else if (ch == '[')
                    {
                        context.Previous();
                        context.Token = TypeNameToken.ArrayStart;
                    }
                    else if (ch == ',' || ch == ']' || char.IsWhiteSpace(ch))
                    {
                        context.CurrentScope.Name.End = context.CurrentPos;

                        context.Previous();
                        context.Token = TypeNameToken.TypeNameEnd;
                    }
                    else
                    {
                        if (!context.IsValidTypeNameChar())
                        {
                            throw context.DefaultError();
                        }

                        if (context.AtLast)
                        {
                            context.CurrentScope.Name.End = context.CurrentPos + 1;
                        }
                    }
                }
                break;

                case TypeNameToken.TypeNameEnd:
                {
                    context.EatWhitespace(throwErrorOnComplete: false);

                    if (context.CurrentPos > context.TextLength - 1)
                    {
                        continue;
                    }

                    switch (context.CurrentChar)
                    {
                    case ',':
                    {
                        context.Previous();
                        context.Token = TypeNameToken.AssemblyNameStart;

                        if (context.CurrentScope.IsGenericArgument && !context.CurrentScope.InNameBlock)
                        {
                            context.Token = TypeNameToken.GenericsArgumentEnd;
                        }
                    }
                    break;

                    case ']':
                    {
                        if (!context.CurrentScope.IsGenericArgument)
                        {
                            throw context.DefaultError();
                        }

                        context.Previous();
                        context.Token = TypeNameToken.GenericsArgumentEnd;

                        if (context.CurrentScope.InNameBlock)
                        {
                            context.Token = TypeNameToken.GenericsArgBlockClose;
                        }
                    }
                    break;

                    case '[':
                    {
                        if (!context.CurrentScope.IsGenericType || context.CurrentScope.HasGenericsArgument)
                        {
                            throw context.DefaultError();
                        }

                        context.CurrentScope.Name.End = context.CurrentPos;

                        context.Previous();
                        context.Token = TypeNameToken.GenericsStart;
                    }
                    break;

                    default:
                    {
                        if (!context.IsWhitespace())
                        {
                            throw context.DefaultError();
                        }
                    }
                    break;
                    }
                }
                break;

                case TypeNameToken.ArrayStart:
                {
                    if (context.CurrentChar != '[')
                    {
                        throw context.DefaultError();
                    }

                    context.CurrentScope.IsArray = true;
                    context.Token = TypeNameToken.Array;
                }
                break;

                case TypeNameToken.Array:
                {
                    if (context.CurrentChar == ']')
                    {
                        context.Previous();
                        context.Token = TypeNameToken.ArrayEnd;
                    }
                    else if (context.CurrentChar != ',')
                    {
                        throw context.DefaultError();
                    }
                }
                break;

                case TypeNameToken.ArrayEnd:
                {
                    if (context.CurrentChar != ']' || !context.CurrentScope.IsArray)
                    {
                        throw context.DefaultError();
                    }

                    context.CurrentScope.Name.End = context.CurrentPos + 1;
                    context.Token = TypeNameToken.TypeName;
                }
                break;

                case TypeNameToken.GenericsCountStart:
                {
                    if (context.CurrentChar != '`')
                    {
                        throw context.DefaultError();
                    }

                    context.Token = TypeNameToken.GenericsCount;
                }
                break;

                case TypeNameToken.GenericsCount:
                {
                    if (context.CurrentChar < '0' || context.CurrentChar > '9')
                    {
                        context.Previous();
                        context.Token = TypeNameToken.GenericsCountEnd;
                    }
                    else if (context.AtLast)
                    {
                        context.CurrentScope.Name.End = context.CurrentPos + 1;
                    }
                }
                break;

                case TypeNameToken.GenericsCountEnd:
                {
                    if (context.CurrentChar != '[')
                    {
                        var genericsBase = (context.CurrentChar == ',') &&
                                           context.CurrentScope.IsRoot &&
                                           !context.CurrentScope.IsGenericType &&
                                           !context.CurrentScope.HasGenericsArgument;

                        if (!genericsBase)
                        {
                            throw context.DefaultError();
                        }
                    }

                    context.CurrentScope.Name.End = context.CurrentPos;

                    var genericsArgsCount = ParseGenericsArgsCount(context);

                    context.CurrentScope.Name.End = context.CurrentPos;
                    context.CurrentScope.ExpectedGenericsArgsCount = genericsArgsCount;

                    context.Previous();
                    context.Token = TypeNameToken.TypeNameEnd;
                }
                break;

                case TypeNameToken.GenericsStart:
                {
                    if (context.CurrentChar != '[')
                    {
                        throw context.DefaultError();
                    }

                    context.CurrentScope.GenericsBlockDepth++;
                    context.Token = TypeNameToken.Generics;
                }
                break;

                case TypeNameToken.Generics:
                {
                    context.EatWhitespace();

                    switch (context.CurrentChar)
                    {
                    case ',':
                        if (!context.CurrentScope.HasGenericsArgument)
                        {
                            throw TypeNameParserCommon.NewError(TypeNameError.InvalidGenericsArgument, context);
                        }

                        context.Token = TypeNameToken.GenericsArgumentStart;
                        break;

                    case '[':
                        if (context.CurrentScope.HasGenericsArgument)
                        {
                            throw TypeNameParserCommon.NewError(TypeNameError.InvalidGenericsArgument, context);
                        }

                        context.Previous();
                        context.Token = TypeNameToken.GenericsArgumentStart;
                        break;

                    case ']':
                        context.Previous();
                        context.Token = TypeNameToken.GenericsEnd;
                        break;

                    default:
                        context.Previous();
                        context.Token = TypeNameToken.GenericsArgumentStart;
                        break;
                    }
                }
                break;

                case TypeNameToken.GenericsEnd:
                {
                    if (context.CurrentChar != ']')
                    {
                        throw context.DefaultError();
                    }

                    context.CurrentScope.GenericsBlockDepth--;

                    if (context.Stack.Count == 0)
                    {
                        throw context.DefaultError();
                    }

                    if (context.InRoot || context.CurrentScope.InNameBlock)
                    {
                        context.Token = TypeNameToken.TypeNameEnd;
                    }
                    else
                    {
                        context.EndScope();
                        context.Token = TypeNameToken.Generics;
                    }
                }
                break;

                case TypeNameToken.GenericsArgBlockOpen:
                {
                    if (context.CurrentChar != '[' || context.CurrentScope.InNameBlock)
                    {
                        throw context.DefaultError();
                    }

                    context.CurrentScope.NameBlockDepth++;

                    context.Token = TypeNameToken.TypeNameStart;
                }
                break;

                case TypeNameToken.GenericsArgBlockClose:
                {
                    if (context.CurrentChar != ']' || !context.CurrentScope.InNameBlock)
                    {
                        throw context.DefaultError();
                    }

                    context.CurrentScope.NameBlockDepth--;

                    context.Token = TypeNameToken.GenericsArgumentEnd;
                }
                break;

                case TypeNameToken.GenericsArgumentStart:
                {
                    context.EatWhitespace();

                    if (context.CurrentChar == ']')
                    {
                        context.Previous();
                        context.Token = TypeNameToken.GenericsEnd;

                        continue;
                    }

                    context.StartScope();

                    context.Token = TypeNameToken.TypeNameStart;
                    if (context.CurrentChar == '[')
                    {
                        context.Token = TypeNameToken.GenericsArgBlockOpen;
                    }

                    context.Previous();
                }
                break;

                case TypeNameToken.GenericsArgumentEnd:
                {
                    if (context.Stack.Count < 2)
                    {
                        throw context.DefaultError();
                    }

                    context.EatWhitespace();

                    if (!(context.CurrentChar == ',' || context.CurrentChar == ']'))
                    {
                        throw context.DefaultError();
                    }

                    context.EndScope();
                    context.Token = TypeNameToken.Generics;

                    context.Previous();
                }
                break;

                case TypeNameToken.AssemblyNameStart:
                {
                    if (context.CurrentChar != ',')
                    {
                        throw context.DefaultError();
                    }

                    context.Token = TypeNameToken.AssemblyName;
                }
                break;

                case TypeNameToken.AssemblyPropertyStart:
                {
                    context.EatWhitespace();

                    if (!context.IsWhitespace())
                    {
                        switch (context.CurrentChar)
                        {
                        case 'v':
                        case 'V':
                            context.Token = TypeNameToken.Version;
                            break;

                        case 'c':
                        case 'C':
                            context.Token = TypeNameToken.Culture;
                            break;

                        case 'p':
                        case 'P':
                            context.Token = TypeNameToken.PublicKeyToken;
                            break;

                        default:
                            throw context.DefaultError();
                        }

                        context.Previous();
                    }
                }
                break;

                case TypeNameToken.Version:
                case TypeNameToken.Culture:
                case TypeNameToken.PublicKeyToken:
                {
                    if (context.CurrentScope == null || context.CurrentScope.AssemblyName == null)
                    {
                        switch (context.Token)
                        {
                        case TypeNameToken.Version:
                            throw context.CreateError(TypeNameError.CannotDefineVersionBeforeAssemblyName);

                        case TypeNameToken.Culture:
                            throw context.CreateError(TypeNameError.CannotDefineCultureBeforeAssemblyName);

                        case TypeNameToken.PublicKeyToken:
                            throw context.CreateError(TypeNameError.CannotDefinePublicKeyTokenBeforeAssemblyName);
                        }
                    }

                    var tokenStr       = context.TokenAsString;
                    var propertySample = TypeNameParserCommon.GetAssemblyPropertySampleText(context.Token);

                    var invalidToken = (context.CurrentPos > (context.TextLength - propertySample.Length) ||
                                        !TypeNameParserCommon.Equals(context.Text, tokenStr, context.CurrentPos));

                    if (invalidToken)
                    {
                        throw context.DefaultError();
                    }

                    switch (context.Token)
                    {
                    case TypeNameToken.Version:
                        context.Token = TypeNameToken.VersionValueStart;
                        break;

                    case TypeNameToken.Culture:
                        context.Token = TypeNameToken.CultureValueStart;
                        break;

                    case TypeNameToken.PublicKeyToken:
                        context.Token = TypeNameToken.PublicKeyTokenValueStart;
                        break;
                    }

                    context.Next(tokenStr.Length - 1);
                }
                break;

                case TypeNameToken.VersionValueStart:
                case TypeNameToken.CultureValueStart:
                case TypeNameToken.PublicKeyTokenValueStart:
                {
                    context.EatWhitespace();

                    if (context.CurrentChar != '=')
                    {
                        throw context.DefaultError();
                    }

                    switch (context.Token)
                    {
                    case TypeNameToken.VersionValueStart:
                        context.Token = TypeNameToken.VersionValue;
                        break;

                    case TypeNameToken.CultureValueStart:
                        context.Token = TypeNameToken.CultureValue;
                        break;

                    case TypeNameToken.PublicKeyTokenValueStart:
                        context.Token = TypeNameToken.PublicKeyTokenValue;
                        break;
                    }
                }
                break;

                case TypeNameToken.AssemblyName:
                case TypeNameToken.VersionValue:
                case TypeNameToken.CultureValue:
                case TypeNameToken.PublicKeyTokenValue:
                {
                    var isLastChar = false;

                    if (context.IsValidChar())
                    {
                        isLastChar = (context.AtLast);
                        if (!isLastChar)
                        {
                            continue;
                        }
                    }

                    var ch = context.CurrentChar.Value;

                    if (!(ch == ']' || ch == ',' || (isLastChar && (context.Stack.Count == 1))))
                    {
                        throw context.DefaultError();
                    }

                    var startPos = TypeNameParserCommon.LastIndexOf(context.Token == TypeNameToken.AssemblyName ? ',' : '=',
                                                                    context.Text, context.CurrentPos - 1) + 1;

                    startPos = context.FindNonwhitespace(startPos, !context.InRoot);
                    var endPos = (context.FindNonwhitespaceBackward(context.CurrentPos - 1, !context.InRoot) + 1) + (isLastChar ? 1 : 0);

                    switch (context.Token)
                    {
                    case TypeNameToken.AssemblyName:
                        context.CurrentScope.SetAssemblyName(startPos, endPos);
                        break;

                    case TypeNameToken.VersionValue:
                        context.CurrentScope.SetVersion(startPos, endPos);
                        break;

                    case TypeNameToken.CultureValue:
                        context.CurrentScope.SetCulture(startPos, endPos);
                        break;

                    case TypeNameToken.PublicKeyTokenValue:
                        context.CurrentScope.SetPublicKeyToken(startPos, endPos);
                        break;
                    }

                    if (ch == ',')
                    {
                        context.Token = TypeNameToken.AssemblyPropertyStart;
                    }
                    else if (ch == ']')
                    {
                        context.Previous();
                        context.Token = TypeNameToken.TypeNameEnd;
                    }
                }
                break;
                }
            }
        }