[NUI][EXaml] Support Array in EXaml
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / EXaml / Block / GatherBindablePropertiesBlock.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 GatherBindablePropertiesBlock : Action
25     {
26         public GatherBindablePropertiesBlock(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             int typeIndex = int.Parse(childOp.ValueList[0] as string);
66             string propertyName = childOp.ValueList[1] as string;
67
68             globalDataList.PreLoadOperations.Add(new GatherBindableProperties(globalDataList, typeIndex, propertyName));
69         }
70     }
71 }