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
|
{******************************************************************************
TRegIniFile
******************************************************************************}
constructor TRegIniFile.Create(const FN: String);
begin
Create(FN, KEY_ALL_ACCESS);
end;
constructor TRegIniFile.Create(const FN: String;aaccess:longword);
begin
inherited Create(aaccess);
fFileName := FN;
if fFileName<>'' then begin
fPath := fFileName + '\';
OpenKey(fFileName, aaccess <> KEY_READ);
end
else
fPath := '';
fPreferStringValues:=True; // Delphi compatibility
end;
procedure TRegIniFile.DeleteKey(const Section, Ident: String);
begin
if OpenSection(Section) then
try
DeleteValue(Ident);
finally
CloseSection;
end;
end;
procedure TRegIniFile.EraseSection(const Section: string);
begin
inherited DeleteKey(Section);
end;
procedure TRegIniFile.ReadSection(const Section: string; Strings: TStrings);
begin
if OpenSection(Section) then
try
GetValueNames(Strings);
finally
CloseSection;
end;
end;
procedure TRegIniFile.ReadSections(Strings: TStrings);
begin
GetKeyNames(Strings);
end;
procedure TRegIniFile.ReadSectionValues(const Section: string; Strings: TStrings);
var
ValList : TStringList;
V : String;
i : Integer;
begin
if OpenSection(Section) then
try
ValList := TStringList.Create;
try
GetValueNames(ValList);
for i:=0 to ValList.Count-1 do
begin
V := inherited ReadString(ValList.Strings[i]);
Strings.Add(ValList.Strings[i] + '=' + V);
end;
finally
ValList.Free;
end;
finally
CloseSection;
end;
end;
procedure TRegIniFile.WriteBool(const Section, Ident: string; Value: Boolean);
begin
if OpenSection(Section) then
try
if not fPreferStringValues then
inherited WriteBool(Ident,Value)
else begin
if ValueExists(Ident) and (GetDataType(Ident)=rdInteger) then
inherited WriteBool(Ident,Value)
else
inherited WriteString(Ident,BoolToStr(Value));
end;
finally
CloseSection;
end;
end;
procedure TRegIniFile.WriteInteger(const Section, Ident: string; Value: LongInt);
begin
if OpenSection(Section) then
try
if not fPreferStringValues then
inherited WriteInteger(Ident,Value)
else begin
if ValueExists(Ident) and (GetDataType(Ident)=rdInteger) then
inherited WriteInteger(Ident,Value)
else
inherited WriteString(Ident,IntToStr(Value));
end;
finally
CloseSection;
end;
end;
procedure TRegIniFile.WriteString(const Section, Ident, Value: String);
begin
if OpenSection(Section) then
try
inherited WriteString(Ident,Value);
finally
CloseSection;
end;
end;
function TRegIniFile.ReadBool(const Section, Ident: string; Default: Boolean): Boolean;
begin
Result := Default;
if OpenSection(Section) then
try
if ValueExists(Ident) then
if (not fPreferStringValues) or (GetDataType(Ident)=rdInteger) then
Result := inherited ReadBool(Ident)
else
Result := StrToBool(inherited ReadString(Ident));
finally
CloseSection;
end;
end;
function TRegIniFile.ReadInteger(const Section, Ident: string; Default: LongInt): LongInt;
begin
Result := Default;
if OpenSection(Section) then
try
if ValueExists(Ident) then
if (not fPreferStringValues) or (GetDataType(Ident)=rdInteger) then
Result := inherited ReadInteger(Ident)
else
Result := StrToInt(inherited ReadString(Ident));
finally
CloseSection;
end;
end;
function TRegIniFile.ReadString(const Section, Ident, Default: String): String;
begin
Result := Default;
if OpenSection(Section) then
try
if ValueExists(Ident) then
Result := inherited ReadString(Ident);
finally
CloseSection;
end;
end;
function TRegIniFile.OpenSection(const Section: string): boolean;
var
k: HKEY;
begin
ASSERT(fOldCurKey = 0);
if Section <> '' then begin
k:=GetKey(Section);
if k = 0 then begin
Result:=False;
exit;
end;
fOldCurKey:=CurrentKey;
SetCurrentKey(k);
end;
Result:=True;
end;
procedure TRegIniFile.CloseSection;
begin
if fOldCurKey <> 0 then begin
CloseKey(CurrentKey);
SetCurrentKey(fOldCurKey);
fOldCurKey:=0;
end;
end;
|