8c7d0e55fcccaeb4c64ef8b4f140322171ede234
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / EXaml / Operation / CreateArrayInstance.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;
19 using System.Collections.Generic;
20 using System.Reflection;
21 using System.Text;
22 using Tizen.NUI.BaseComponents;
23 using Tizen.NUI.Binding;
24 using Tizen.NUI.Binding.Internals;
25 using Tizen.NUI.Xaml;
26
27 namespace Tizen.NUI.EXaml
28 {
29     internal class CreateArrayInstance : Operation
30     {
31         public CreateArrayInstance(GlobalDataList globalDataList, int typeIndex, List<object> items)
32         {
33             this.typeIndex = typeIndex;
34             this.items = items;
35             this.globalDataList = globalDataList;
36         }
37
38         private GlobalDataList globalDataList;
39
40         public void Do()
41         {
42             var type = globalDataList.GatheredTypes[typeIndex];
43             var array = Array.CreateInstance(type, items.Count);
44
45             for (int i = 0; i < items.Count; i++)
46             {
47                 if (items[i] is Instance instance)
48                 {
49                     ((IList)array)[i] = globalDataList.GatheredInstances[instance.Index];
50                 }
51             }
52
53             globalDataList.GatheredInstances.Add(array);
54         }
55
56         private int typeIndex;
57         private List<object> items;
58     }
59 }