[NUI] Add file comment and end empty line
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.XamlBuild / src / public / EXamlBuild / EXaml / EXamlOperation.cs
1 /*
2  * Copyright(c) 2022 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 Mono.Cecil;
18 using System;
19 using System.Collections.Generic;
20 using System.IO;
21 using System.Reflection;
22 using System.Text;
23 using Tizen.NUI.Binding;
24 using Tizen.NUI.EXaml.Build.Tasks;
25 using Tizen.NUI.Xaml;
26
27 namespace Tizen.NUI.EXaml
28 {
29     internal abstract class EXamlOperation
30     {
31         public EXamlOperation(EXamlContext eXamlContext)
32         {
33             this.eXamlContext = eXamlContext;
34         }
35
36         internal EXamlContext eXamlContext;
37
38         internal static void WriteOpertions(string filePath, EXamlContext eXamlContext)
39         {
40             var ret = eXamlContext.GenerateEXamlString();
41             if(string.IsNullOrEmpty(filePath))
42             {
43                 throw new Exception("filePath is empty or null!");
44             }
45             /*Avoid the difference of '/' in file path on windows and linux*/
46             filePath = filePath.Replace("\\", "/");
47             if (filePath.Contains("/"))
48             {
49                 OutputDir = filePath.Substring(0, filePath.LastIndexOf("/"));
50             }
51             if (!Directory.Exists(OutputDir))
52             {
53                 Directory.CreateDirectory(OutputDir);
54             }
55
56             var stream = File.CreateText(filePath);
57             stream.Write(ret);
58             stream.Close();
59         }
60
61         public static string OutputDir
62         {
63             get;
64             private set;
65         }
66
67         internal abstract string Write();
68     }
69 }
70