천호석
2022-06-17 4de9ea98e13449174aa2cd09c8351fc0e978f44a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace SHARP_CLAS_UI
{
    public class Main_Recipe_Manager
    {
        #region Define
        string str_extension = ".xml";
        #endregion
 
        #region Property
        private static readonly Lazy<Main_Recipe_Manager> _instatnce = new Lazy<Main_Recipe_Manager>(() => new Main_Recipe_Manager());
 
        public static Main_Recipe_Manager Instance
        {
            get
            {
                return _instatnce.Value;
            }
        }
        #endregion
 
        #region Field
        private Dictionary<string, Main_Recipe> Recipes;
 
        private Xml_Manager<Main_Recipe> xml_manager = new Xml_Manager<Main_Recipe>();
 
        private string file_path;
        #endregion
 
        #region Construct
        public Main_Recipe_Manager()
        {
            Recipes = new Dictionary<string, Main_Recipe>();
            Get_Panel_Type_Info_Recipes();
        }
        #endregion
        #region Function
        private void Get_File_Path()
        {
            RegistryKey rkk = Registry.CurrentUser.OpenSubKey(Equipment.Registry_Path, true);
 
            try
            {
                if (rkk == null)
                {
                    rkk = Registry.CurrentUser.CreateSubKey(Equipment.Registry_Path);
 
                    rkk.SetValue("MAIN_RECIPE_PATH", @"C:\SHARP_CLAS\Config\MAIN_RECIPE\");
                    file_path = @"C:\SHARP_CLAS\Config\MAIN_RECIPE\";
                }
                else
                {
                    object value = rkk.GetValue("MAIN_RECIPE_PATH");
                    if (value == null)
                    {
                        rkk.SetValue("MAIN_RECIPE_PATH", @"C:\SHARP_CLAS\Config\MAIN_RECIPE\");
                        file_path = @"C:\SHARP_CLAS\Config\MAIN_RECIPE\";
                    }
                    else
                    {
                        file_path = value.ToString();
                    }
                }
            }
            finally
            {
                rkk.Close();
            }
        }
 
        private void Get_Panel_Type_Info_Recipes()
        {
            Get_File_Path();
 
            Recipes.Clear();
 
            if (Directory.Exists(file_path))
            {
                DirectoryInfo di = new DirectoryInfo(file_path);
                FileInfo[] recipes = di.GetFiles($"*{str_extension}");
 
                foreach (FileInfo recipe in recipes)
                {
                    Main_Recipe main_recipe = new Main_Recipe();
 
                    if (xml_manager.Try_Read_File(file_path + recipe, out main_recipe))
                    {
                        if (Recipes.ContainsKey(main_recipe.Name))
                        {
                            Recipes[main_recipe.Name] = main_recipe;
                        }
                        else
                        {
                            Recipes.Add(main_recipe.Name, main_recipe);
                        }
                    }
                }
            }
            else
            {
                Directory.CreateDirectory(file_path);
            }
        }
 
        public void Refresh_Main_Recipe()
        {
            Get_Panel_Type_Info_Recipes();
        }
 
        public bool Exist_Recipe(string name)
        {
            foreach (Main_Recipe recipe in Recipes.Values)
            {
                if (name == recipe.Name)
                    return true;
            }
 
            return false;
        }
 
        public bool Create_Recipe(string name)
        {
            if (!Exist_Recipe(name))
            {
                Main_Recipe recipe = new Main_Recipe();
                recipe.Name = name;
 
                if (xml_manager.Try_Save_File(file_path + name + str_extension, recipe))
                {
                    Recipes.Add(name, recipe);
                    return true;
                }
                else
                    return false;
            }
            else
                return false;
        }
 
        public bool Delete_Recipe(string name)
        {
            if (Exist_Recipe(name))
            {
                Recipes.Remove(name);
 
                FileInfo fi = new FileInfo(file_path + name + str_extension);
 
                if (fi.Exists)
                {
                    fi.Delete();
                }
            }
 
            return true;
        }
 
        public bool Save_Recipe(string name, Main_Recipe recipe)
        {
            if (Exist_Recipe(name))
            {
                DateTime dt = Recipes[name].Create_Time;
                Recipes[name] = recipe.Clone();
                Recipes[name].Name = name;
                Recipes[name].Create_Time = dt;
 
                if (xml_manager.Try_Save_File(file_path + name + str_extension, Recipes[name]))
                {
                    return true;
                }
                else
                    return false;
            }
            else
            {
                return false;
            }
        }
 
        public bool Try_Get_Recipe(string name, out Main_Recipe recipe)
        {
            if (Exist_Recipe(name))
            {
                recipe = Recipes[name].Clone();
                return true;
            }
            else
            {
                recipe = null;
                return false;
            }
        }
 
        public Main_Recipe Get_Recipe(string name)
        {
            if (Exist_Recipe(name))
            {
                return Recipes[name].Clone();
            }
            else
            {
                return null;
            }
        }
 
        public Main_Recipe[] Get_Recipes()
        {
            List<Main_Recipe> recipes = new List<Main_Recipe>();
            recipes.Clear();
 
            foreach (Main_Recipe info in Recipes.Values)
            {
                recipes.Add(info.Clone());
            }
 
            return recipes.ToArray();
        }
        #endregion
    }
}