-
Notifications
You must be signed in to change notification settings - Fork 1
/
Settings.vb
221 lines (152 loc) · 5.8 KB
/
Settings.vb
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
Option Explicit On
Imports System
Imports System.IO
Imports System.Text
Imports System.Runtime.Serialization
Imports System.Runtime.Serialization.Formatters.Binary
Imports System.Windows.Forms
Imports Microsoft.Win32
''' <summary>
''' 設定を読み書きする機能を提供します
''' </summary>
''' <remarks></remarks>
<Serializable()> _
Public Class Settings
#Region "変数"
''' <summary>設定を読み書きする機能を提供するクラス</summary>
''' <remarks>インスタンスは1つのみ作られるようにしている</remarks>
<NonSerialized()> _
Private Shared _Settings As Settings
''' <summary>フォームの種類</summary>
''' <remarks></remarks>
Private _TargetForm As CommandLine.FormType
''' <summary>実行タイプ</summary>
''' <remarks>保存したファイルを即時で実行するかどうか</remarks>
Private _Execute As CommandLine.ExecuteType
''' <summary>1ページ内表示最大件数(リスト表示)</summary>
''' <remarks></remarks>
Private _MaxCountInPage As Integer
#End Region
#Region "プロパティ"
''' <summary>
''' ターゲットフォームプロパティ
''' </summary>
''' <remarks>
''' ※シリアライズを行うプロパティ
''' </remarks>
Public Property TargetForm() As CommandLine.FormType
Get
Return _TargetForm
End Get
Set(value As CommandLine.FormType)
_TargetForm = value
End Set
End Property
''' <summary>
''' 実行タイププロパティ
''' </summary>
''' <remarks>
''' 保存したファイルを即時で実行するかどうか
''' ※シリアライズを行うプロパティ
''' </remarks>
Public Property Execute() As CommandLine.ExecuteType
Get
Return _Execute
End Get
Set(value As CommandLine.ExecuteType)
_Execute = value
End Set
End Property
''' <summary>
''' 1ページ内に表示できるファイル数プロパティ
''' </summary>
''' <remarks>
''' リスト表示フォームの1ページ内に表示できる最大ファイル数
''' ※シリアライズを行うプロパティ
''' </remarks>
Public Property MaxCountInPage() As Integer
Get
Return _MaxCountInPage
End Get
Set(value As Integer)
_MaxCountInPage = value
End Set
End Property
''' <summary>
''' 設定を読み書きするクラスを返却します
''' </summary>
''' <remarks>
''' ※デザインパターンのSingletonパターンです
''' シリアライズを行わないプロパティ
''' </remarks>
<System.Xml.Serialization.XmlIgnore()> _
Public Shared Property Instance() As Settings
Get
'インスタンスが作成されてなかったらインスタンスを作成
If _Settings Is Nothing Then _Settings = New Settings
Return _Settings
End Get
Set(value As Settings)
_Settings = value
End Set
End Property
#End Region
#Region "コンストラクタ"
''' <summary>
''' コンストラクタ
''' </summary>
''' <remarks>
''' 引数無しは外部に公開しない
''' </remarks>
Private Sub New()
'ターゲットフォームのデフォルトはフォルダファイルリストの出力文字列を表示するフォーム
_TargetForm = CommandLine.FormType.Text
End Sub
#End Region
#Region "メソッド"
''' <summary>
''' 設定をXMLファイルから読み込み復元する
''' </summary>
''' <remarks></remarks>
Public Shared Sub LoadFromXmlFile()
'設定ファイルのパスを取得
Dim mSettingPath As String = GetSettingPath()
'設定ファイルが存在しない時は処理を終了
If Not File.Exists(mSettingPath) Then Exit Sub
'設定ファイルを読み込み
Dim mSR As New StreamReader(mSettingPath, New UTF8Encoding(False))
'設定ファイルを読み込んでデシリアライズする(オブジェクトからXML形式に変換)
Dim mXS As New System.Xml.Serialization.XmlSerializer(GetType(Settings))
Dim mDeserializeXML As Object = mXS.Deserialize(mSR)
mSR.Close()
Instance = CType(mDeserializeXML, Settings)
End Sub
''' <summary>
''' 現在の設定をXMLファイルに書き込む
''' </summary>
''' <remarks></remarks>
Public Shared Sub SaveToXmlFile()
'設定ファイルのパスを取得
Dim mSettingPath As String = GetSettingPath()
'書き込み対象のXMLファイルのTextWriterを作成
Dim mSW As New StreamWriter(mSettingPath, False, New UTF8Encoding(False))
Dim mSerializeXML As New System.Xml.Serialization.XmlSerializer(GetType(Settings))
'シリアライズ(オブジェクトからXML形式に変換)し、設定ファイルに書き込む
mSerializeXML.Serialize(mSW, Instance)
mSW.Close()
End Sub
''' <summary>
''' 設定ファイルの保存場所を取得
''' </summary>
''' <returns>設定ファイルの保存場所パス</returns>
''' <remarks>
''' 「EXE実行パスの親フォルダ + \ + Config.xml」形式のパスを返す
''' </remarks>
Private Shared Function GetSettingPath() As String
'EXEの実行パスを取得
Dim mExePath As New System.IO.FileInfo(System.Reflection.Assembly.GetExecutingAssembly().Location)
'設定ファイル保存パス(EXE実行パスの親フォルダ + \ + Config.xml)を返す
Return mExePath.DirectoryName & "\" & "Config.xml"
End Function
#End Region
End Class