[EXaml] Add Copy Right
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / EXaml / Block / GatherTypesBlock.cs
1 /*
2  * Copyright(c) 2021 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17 using System;
18 using System.Collections.Generic;
19 using System.Reflection;
20 using System.Text;
21
22 namespace Tizen.NUI.EXaml
23 {
24     internal class GatherTypesBlock : Action
25     {
26         public GatherTypesBlock(Action parent)
27         {
28             this.parent = parent;
29         }
30
31         private Action parent;
32
33         public Action DealChar(char c)
34         {
35             switch (c)
36             {
37                 case ' ':
38                 case '\n':
39                 case '\r':
40                     break;
41
42                 case '(':
43                     childOp = new GetValueListAction(')', this);
44                     return childOp;
45
46                 case '>':
47                     parent?.OnActive();
48                     return parent;
49             }
50
51             return this;
52         }
53
54         private GetValueListAction childOp;
55
56         public void Init()
57         {
58             childOp = null;
59         }
60
61         public void OnActive()
62         {
63             LoadEXaml.Operations.Add(GatherType(childOp.ValueList));
64             childOp = null;
65         }
66
67         private GatherType GatherType(List<object> valueList)
68         {
69             int assemblyIndex = int.Parse(valueList[0] as string);
70             string typeName = valueList[valueList.Count - 1] as string;
71
72             if (valueList.Count > 2)
73             {
74                 List<int> genericTypeIndexs = new List<int>();
75                 var genericTypeIndexList = valueList[1] as List<object>;
76                 foreach (var index in genericTypeIndexList)
77                 {
78                     genericTypeIndexs.Add((int)index);
79                 }
80
81                 return new GatherType(assemblyIndex, typeName, genericTypeIndexs);
82             }
83             else
84             {
85                 return new GatherType(assemblyIndex, typeName);
86             }
87         }
88     }
89 }