-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathiniWrapper.ahk
236 lines (187 loc) · 4.04 KB
/
iniWrapper.ahk
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
/*
Func: iniWrapper_loadAllSections
Loads all keys from all sections into vars
Parameters:
iniVar - ini variable
Returns:
All keys from all sections will be loaded into variables
Examples:
[General]
Key_1=
Key_2=value
Key_3=234
> iniWrapper_loadAllSections(ini)
> msgbox % Key_2
= value
Required libs:
ini.ahk
*/
iniWrapper_loadAllSections(ByRef iniVar) {
global
loop, parse, % ini_getAllSectionNames(iniVar), `,
{
lSection := A_LoopField
loop, parse, % ini_getAllKeyNames(iniVar, lSection), `,
%A_LoopField% := ini_getValue(iniVar, lSection, A_LoopField)
}
}
/*
Func: iniWrapper_loadAllSections
Loads all keys from specified section into vars
Parameters:
iniVar - ini variable
section - ini section
Returns:
All keys from specified section will be loaded into variables
Examples:
[General]
Key_1=
Key_2=value
Key_3=234
[anotherSection]
Key_11=
Key_22=value
Key_33=234
> iniWrapper_loadSection(ini, "anotherSection")
> msgbox % Key_22
= value
> msgbox % Key_2
= ""
Required libs:
ini.ahk
*/
iniWrapper_loadSection(ByRef iniVar, section) {
global
loop, parse, % ini_getAllKeyNames(iniVar, section), `,
%A_LoopField% := ini_getValue(iniVar, section, A_LoopField)
}
/*
Func: iniWrapper_unloadAllSections
Unloads all variables of all keys of all sections
Parameters:
iniVar - ini variable
Returns:
All variables of all keys in the ini will be emptied
Examples:
[General]
Key_1=
Key_2=value
Key_3=234
> iniWrapper_loadSection(ini, "General")
> msgbox % Key_2
= value
> iniWrapper_unloadAllSections(ini)
> msgbox % Key_2
= ""
Required libs:
ini.ahk
*/
iniWrapper_unloadAllSections(ByRef iniVar) {
global
loop, parse, % ini_getAllSectionNames(iniVar), `,
{
lSection := A_LoopField
loop, parse, % ini_getAllKeyNames(iniVar, lSection), `,
%A_LoopField% := ""
}
}
/*
Func: iniWrapper_unloadSection
Unloads all variables of all keys in specific section
Parameters:
iniVar - ini variable
section - ini section
Returns:
All variables of all keys in in specific section will be emptied
Examples:
[General]
Key_1=
Key_2=value
Key_3=234
[anotherSection]
Key_11=
Key_22=value
Key_33=234
> iniWrapper_loadAllSections(ini)
> msgbox % Key_22
= value
> msgbox % Key_2
= value
> iniWrapper_unloadSection(ini, "anotherSection")
> msgbox % Key_22
= ""
> msgbox % Key_2
= value
Required libs:
ini.ahk
*/
iniWrapper_unloadSection(ByRef iniVar, section) {
global
loop, parse, % ini_getAllKeyNames(iniVar, section), `,
%A_LoopField% := ""
}
/*
Func: iniWrapper_saveAllSections
Saves all variables from all ini keys to inivar
Parameters:
iniVar - ini variable
Returns:
All keys from all sections will be saved into inivar
Examples:
[General]
Key_1=
Key_2=value
Key_3=234
> iniWrapper_loadAllSections(ini)
> msgbox % Key_2
= value
> Key_2 := "thisValue"
> iniWrapper_saveAllSections(ini)
> iniWrapper_loadAllSections(ini)
> msgbox % Key_2
= thisValue
Required libs:
ini.ahk
*/
iniWrapper_saveAllSections(ByRef iniVar) {
global
loop, parse, % ini_getAllSectionNames(iniVar), `,
{
lSection := A_LoopField
loop, parse, % ini_getAllKeyNames(iniVar, lSection), `,
ini_replaceValue(iniVar, lSection, A_LoopField, %A_LoopField%)
}
}
/*
Func: iniWrapper_saveSection
Saves all variables from a specific section's ini keys to inivar
Parameters:
iniVar - ini variable
section - ini section
Returns:
All keys from from a specific section's ini keys to inivar
Examples:
[General]
Key_1=
Key_2=value
Key_3=234
[anotherSection]
Key_11=
Key_22=value
Key_33=234
> iniWrapper_loadAllSections(ini)
> msgbox % Key_2
= value
> Key_2 := "thisValue"
> iniWrapper_saveSection(ini, "anotherSection")
> iniWrapper_loadAllSections(ini)
> msgbox % Key_2
= value
Required libs:
ini.ahk
*/
iniWrapper_saveSection(ByRef iniVar, section) {
global
loop, parse, % ini_getAllKeyNames(iniVar, section), `,
ini_replaceValue(iniVar, section, A_LoopField, %A_LoopField%)
}