cloudflight
2023-12-02 c0f9915265878e56e91ee97f7f8d925db1e12626
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
using CommonBase.Properties;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SQLite;
using System.IO;
 
namespace CommonBase
{
    public class Db1
    {
        static string path=null;
        static Stack<string> stack = new Stack<string>();
        static Db1()
        {
            
        }
        public static void Init(string path0=null)
        {
            path = path0;
            if (path == null)
                path = AppDomain.CurrentDomain.BaseDirectory + "config.wdb";
 
            //检查数据库是否存在,不在则新建
            if (!File.Exists(path))
                File.WriteAllBytes(path, Resources.Db);
 
            //初始化数据库连接串
            Connection = new SQLiteConnection($"Data Source={path};Pooling=true;FailIfMissing=false");
            Connection.Open();
        }
 
        public static  IDbConnection Connection;
        public static void Save()
        {
            if (!Directory.Exists("backup"))
            {
                Directory.CreateDirectory("backup");
            }
 
            string backupPath = $"backup/{Path.GetFileName(path)}.{DateTime.Now:yyyy-MM-dd_HH-mm-ss}.bak";
            if (File.Exists(path))
            {
                File.Copy(path, backupPath);
                stack.Push(backupPath);
            }
        }
 
        public static void Undo()
        {
            if (CanUndo())
            {
                Save();
                string lastBackupPath = stack.Pop();
                if (File.Exists(lastBackupPath))
                {
                    File.Copy(lastBackupPath, path, true);
                }
            }
        }
 
        public static void Redo()
        {
            if (CanRedo())
            {
                Save();
                string nextBackupPath = stack.Pop();
                if (File.Exists(nextBackupPath))
                {
                    File.Copy(nextBackupPath, path, true);
                }
            }
        }
 
        public static bool CanUndo()
        {
            return stack.Count > 0;
        }
 
        public static bool CanRedo()
        {
            return stack.Count > 1;
        }
 
        public static void ClearBackup()
        {
            if (Directory.Exists("backup"))
            {
                Directory.Delete("backup", true);
            }
 
            stack.Clear();
        }
    }
 
 
 
    public class Db
    {
        public static Db Instance;
 
        string path = null;
        Stack<string> stack = new Stack<string>();
        public Db()
        {
 
        }
        public void Init(string path0 = null)
        {
            path = path0;
            if (path == null)
                path = AppDomain.CurrentDomain.BaseDirectory + "config.wdb";
            if (GlobalPath.Path==null )
            {
                FileInfo fileInfo = new FileInfo(path);
                GlobalPath.Path = fileInfo.DirectoryName;
                
            }
            
            
            //检查数据库是否存在,不在则新建
            if (!File.Exists(path))
                File.WriteAllBytes(path, Resources.Db);
 
            // 移除只读属性
            FileAttributes attributes = File.GetAttributes(path);
            attributes &= ~FileAttributes.ReadOnly;
            File.SetAttributes(path, attributes);
 
            //初始化数据库连接串
            Connection = new SQLiteConnection($"Data Source={path};Pooling=true;FailIfMissing=false");
            Connection.Open();
        }
 
        public void Close()
        {
            if (Connection!=null)
                this.Connection.Close();
        }
        public  IDbConnection Connection;
        public  void Save()
        {
            if (!Directory.Exists("backup"))
            {
                Directory.CreateDirectory("backup");
            }
 
            string backupPath = $"backup/{Path.GetFileName(path)}.{DateTime.Now:yyyy-MM-dd_HH-mm-ss}.bak";
            if (File.Exists(path))
            {
                File.Copy(path, backupPath);
                stack.Push(backupPath);
            }
        }
 
        public  void Undo()
        {
            if (CanUndo())
            {
                Save();
                string lastBackupPath = stack.Pop();
                if (File.Exists(lastBackupPath))
                {
                    File.Copy(lastBackupPath, path, true);
                }
            }
        }
 
        public  void Redo()
        {
            if (CanRedo())
            {
                Save();
                string nextBackupPath = stack.Pop();
                if (File.Exists(nextBackupPath))
                {
                    File.Copy(nextBackupPath, path, true);
                }
            }
        }
 
        public  bool CanUndo()
        {
            return stack.Count > 0;
        }
 
        public  bool CanRedo()
        {
            return stack.Count > 1;
        }
 
        public  void ClearBackup()
        {
            if (Directory.Exists("backup"))
            {
                Directory.Delete("backup", true);
            }
 
            stack.Clear();
        }
    }
}