Merge remote-tracking branch 'origin/master' into tizen
[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(GlobalDataList globalDataList, Action parent)
27         {
28             this.parent = parent;
29             this.globalDataList = globalDataList;
30         }
31
32         private Action parent;
33         private GlobalDataList globalDataList;
34
35         public Action DealChar(char c)
36         {
37             switch (c)
38             {
39                 case ' ':
40                 case '\n':
41                 case '\r':
42                     break;
43
44                 case '(':
45                     childOp = new GetValueListAction(')', this);
46                     return childOp;
47
48                 case '>':
49                     parent?.OnActive();
50                     return parent;
51             }
52
53             return this;
54         }
55
56         private GetValueListAction childOp;
57
58         public void Init()
59         {
60             childOp = null;
61         }
62
63         public void OnActive()
64         {
65             globalDataList.PreLoadOperations.Add(GatherType(childOp.ValueList));
66             childOp = null;
67         }
68
69         private GatherType GatherType(List<object> valueList)
70         {
71             int assemblyIndex = int.Parse(valueList[0] as string);
72             string typeName = valueList[valueList.Count - 1] as string;
73
74             if (valueList.Count > 2)
75             {
76                 List<int> genericTypeIndexs = new List<int>();
77                 var genericTypeIndexList = valueList[1] as List<object>;
78                 if (genericTypeIndexList != null)
79                 {
80                     foreach (var index in genericTypeIndexList)
81                     {
82                         genericTypeIndexs.Add((int)index);
83                     }
84                 }
85                 return new GatherType(globalDataList, assemblyIndex, typeName, genericTypeIndexs);
86             }
87             else
88             {
89                 return new GatherType(globalDataList, assemblyIndex, typeName);
90             }
91         }
92     }
93 }