-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstanceInfo.cs
More file actions
265 lines (203 loc) · 7.55 KB
/
InstanceInfo.cs
File metadata and controls
265 lines (203 loc) · 7.55 KB
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
//
// @(#) InstanceInfo.cs
//
// Project: usis.Data.LocalDb
// System: Microsoft Visual Studio 2022
// Author: Udo Schäfer
//
// Copyright (c) 2018-2023 usis GmbH. All rights reserved.
using System;
using System.Text;
namespace usis.Data.LocalDb
{
// ------------------
// InstanceInfo class
// ------------------
/// <summary>
/// Provides information about a SQL Server Express LocalDB instance.
/// </summary>
public class InstanceInfo : IEquatable<InstanceInfo>
{
#region construction
// ------------
// construction
// ------------
internal InstanceInfo(LocalDBInstanceInfo info)
{
Name = info.InstanceName.ToString(Encoding.Unicode);
Exists = info.Exists;
ConfigurationCorrupted = info.ConfigurationCorrupted;
IsRunning = info.IsRunning;
Version = new Version((int)info.Major, (int)info.Minor, (int)info.Build, (int)info.Revision);
LastStart = info.LastStartUTC.ToDateTime();
Connection = info.Connection.ToString(Encoding.Unicode);
IsShared = info.IsShared;
SharedInstanceName = info.SharedInstanceName.ToString(Encoding.Unicode);
Owner = info.OwnerSID.ToString(Encoding.Unicode);
IsAutomatic = info.IsAutomatic;
}
#endregion
#region properties
// -------------
// Name property
// -------------
/// <summary>
/// Gets the instance name.
/// </summary>
/// <value>
/// The instance name.
/// </value>
public string Name { get; }
// ---------------
// Exists property
// ---------------
/// <summary>
/// Gets a value indicating whether the instance files exist on disk.
/// </summary>
/// <value>
/// <c>true</c> if the instance files exist on disk; otherwise,
/// <c>false</c>.
/// </value>
public bool Exists { get; }
// -------------------------------
// ConfigurationCorrupted property
// -------------------------------
/// <summary>
/// Gets a value indicating whether the instance configuration registry
/// is corrupted.
/// </summary>
/// <value>
/// <c>true</c> if the instance configuration registry is corrupted;
/// otherwise, <c>false</c>.
/// </value>
public bool ConfigurationCorrupted { get; }
// ------------------
// IsRunning property
// ------------------
/// <summary>
/// Gets a value indicating whether this instance is running.
/// </summary>
/// <value>
/// <c>true</c> if this instance is running; otherwise, <c>false</c>.
/// </value>
public bool IsRunning { get; }
// ----------------
// Version property
// ----------------
/// <summary>
/// Gets the LocalDB version for the instance.
/// </summary>
/// <value>
/// The LocalDB version for the instance.
/// </value>
public Version Version { get; }
// ------------------
// LastStart property
// ------------------
/// <summary>
/// Gets the date and time when the instance was started for the last
/// time.
/// </summary>
/// <value>
/// The date and time when the instance was started for the last time.
/// </value>
public DateTime LastStart { get; }
// -------------------
// Connection property
// -------------------
/// <summary>
/// Gets the name of the TDS named pipe to connect to the instance.
/// </summary>
/// <value>
/// The name of the TDS named pipe to connect to the instance.
/// </value>
public string Connection { get; }
// -----------------
// IsShared property
// -----------------
/// <summary>
/// Gets a value indicating whether this instance is shared.
/// </summary>
/// <value>
/// <c>true</c> if this instance is shared; otherwise, <c>false</c>.
/// </value>
public bool IsShared { get; }
// ---------------------------
// SharedInstanceName property
// ---------------------------
/// <summary>
/// Gets the shared name for the instance (if the instance is shared).
/// </summary>
/// <value>
/// The shared name for the instance or <c>null</c> if the instance is
/// not shared.
/// </value>
public string SharedInstanceName { get; }
// --------------
// Owner property
// --------------
/// <summary>
/// Gets the SID of the instance owner.
/// </summary>
/// <value>
/// The SID of the instance owner.
/// </value>
public string Owner { get; }
// --------------------
// IsAutomatic property
// --------------------
/// <summary>
/// Gets a value indicating whether this instance is automatic.
/// </summary>
/// <value>
/// <c>true</c> if this instance is automatic; otherwise, <c>false</c>.
/// </value>
public bool IsAutomatic { get; }
#endregion
#region overrides
// ---------------
// ToString method
// ---------------
/// <summary>
/// Returns a <see cref="string"/> that represents this instance.
/// </summary>
/// <returns>A <see cref="string"/> that represents this instance.
/// </returns>
public override string ToString() => Name;
// -------------
// Equals method
// -------------
/// <summary>
/// Determines whether the specified <see cref="object"/>, is equal to
/// this instance.
/// </summary>
/// <param name="obj">The <see cref="object"/> to compare with this
/// instance.</param>
/// <returns><c>true</c> if the specified <see cref="object"/> is equal
/// to this instance; otherwise, <c>false</c>.</returns>
public override bool Equals(object obj) => IsEqualTo(obj as InstanceInfo);
// ------------------
// GetHashCode method
// ------------------
/// <summary>
/// Returns a hash code for this instance.
/// </summary>
/// <returns>A hash code for this instance, suitable for use in hashing
/// algorithms and data structures like a hash table.</returns>
public override int GetHashCode() => Name.GetHashCode();
#endregion
#region IEquatable<InstanceInfo> implementation
// -------------
// Equals method
// -------------
bool IEquatable<InstanceInfo>.Equals(InstanceInfo other) => IsEqualTo(other);
#endregion
#region private methods
// ----------------
// IsEqualTo method
// ----------------
private bool IsEqualTo(InstanceInfo other) => other != null && Name.Equals(other.Name, StringComparison.Ordinal);
#endregion
}
}
// eof "InstanceInfo.cs"