summaryrefslogtreecommitdiff
path: root/tikzit/src/gtk/Configuration.m
blob: 6ac08e8b514427f7bf0db3dd9f0bf28b2787cae8 (plain)
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
//
//  Configuration.h
//  TikZiT
//
//  Copyright 2010 Alex Merry
//
//  This file is part of TikZiT.
//
//  TikZiT is free software: you can redistribute it and/or modify
//  it under the terms of the GNU General Public License as published by
//  the Free Software Foundation, either version 3 of the License, or
//  (at your option) any later version.
//
//  TikZiT is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//  GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with TikZiT.  If not, see <http://www.gnu.org/licenses/>.
//

#import "Configuration.h"
#import "SupportDir.h"

@implementation Configuration

+ (NSString*) _pathFromName:(NSString*)name {
    return [NSString stringWithFormat:@"%@/%@.conf", [SupportDir userSupportDir], name];
}

+ (BOOL) configurationExistsWithName:(NSString*)name {
    BOOL isDir;
    BOOL exists = [[NSFileManager defaultManager] fileExistsAtPath:[self _pathFromName:name] isDirectory:&isDir];
    return exists && !isDir;
}

+ (Configuration*) emptyConfigurationWithName:(NSString*)name
    { return [[[self alloc] initEmptyWithName:name] autorelease]; }
+ (Configuration*) configurationWithName:(NSString*)name
    { return [[[self alloc] initWithName:name] autorelease]; }
+ (Configuration*) configurationWithName:(NSString*)name loadError:(NSError**)error
    { return [[[self alloc] initWithName:name loadError:error] autorelease]; }

- (id) init
{
    [self release];
    return nil;
}

- (id) initEmptyWithName:(NSString*)n
{
    self = [super init];
    if (self) {
        name = [n retain];
        file = g_key_file_new ();
    }

    return self;
}

- (id) _initFromFile:(NSString*)path error:(NSError**)error
{
    self = [super init];
    if (self) {
        file = g_key_file_new ();

        NSFileManager *manager = [NSFileManager defaultManager];
        if ([manager fileExistsAtPath:path]) {
            gchar *filename = [path glibFilename];

            GError *gerror = NULL;
            g_key_file_load_from_file (file,
                    filename,
                    G_KEY_FILE_NONE,
                    &gerror);
            g_free (filename);

            if (gerror) {
                GErrorToNSError (gerror, error);
                g_error_free (gerror);
            }
        }
    }

    return self;
}

- (id) initWithName:(NSString*)n {
    return [self initWithName:n loadError:NULL];
}

- (id) initWithName:(NSString*)n loadError:(NSError**)error {
    self = [self _initFromFile:[Configuration _pathFromName:n] error:error];

    if (self) {
        name = [n retain];
    }

    return self;
}

- (BOOL) _ensureParentExists:(NSString*)path error:(NSError**)error {
    NSString *directory = [path stringByDeletingLastPathComponent];
    return [[NSFileManager defaultManager] ensureDirectoryExists:directory error:error];
}

- (BOOL) _writeFileTo:(NSString*)path error:(NSError**)error
{
    if (![self _ensureParentExists:path error:error]) {
        return NO;
    }

    BOOL success = NO;
    gsize length;
    gchar *data = g_key_file_to_data (file, &length, NULL); // never reports an error
    if (data && length) {
        GError *gerror = NULL;
        gchar* nativePath = [path glibFilename];
        success = g_file_set_contents (nativePath, data, length, &gerror) ? YES : NO;
        g_free (data);
        g_free (nativePath);
        if (gerror) {
            g_warning ("Failed to write file: %s\n", gerror->message);
            GErrorToNSError (gerror, error);
            g_error_free (gerror);
        }
    } else {
        [[NSFileManager defaultManager] removeFileAtPath:path handler:nil];
        success = YES;
    }

    return success;
}

- (NSString*) name {
    return name;
}

- (void) setName:(NSString*)n {
    [n retain];
    [name release];
    name = n;
}

- (BOOL) writeToStore {
    return [self writeToStoreWithError:NULL];
}

- (BOOL) writeToStoreWithError:(NSError**)error {
    return [self _writeFileTo:[Configuration _pathFromName:name] error:error];
}

- (BOOL) hasKey:(NSString*)key inGroup:(NSString*)group
{
    gboolean result = g_key_file_has_key (file, [group UTF8String], [key UTF8String], NULL);
    return result ? YES : NO;
}

- (BOOL) hasGroup:(NSString*)group
{
    gboolean result = g_key_file_has_group (file, [group UTF8String]);
    return result ? YES : NO;
}

- (NSArray*) keys:(NSString*)group
{
    gsize length;
    gchar **keys = g_key_file_get_keys (file, [group UTF8String], &length, NULL);
    if (!keys)
        length = 0;

    NSMutableArray *array = [NSMutableArray arrayWithCapacity:length];
    for (int i = 0; i < length; ++i) {
        [array addObject:[NSString stringWithUTF8String:keys[i]]];
    }
    g_strfreev (keys);
    return array;
}

- (NSArray*) groups
{
    gsize length;
    gchar **groups = g_key_file_get_groups (file, &length);
    NSMutableArray *array = [NSMutableArray arrayWithCapacity:length];
    for (int i = 0; i < length; ++i) {
        [array addObject:[NSString stringWithUTF8String:groups[i]]];
    }
    g_strfreev (groups);
    return array;
}

- (NSString*) stringEntry:(NSString*)key inGroup:(NSString*)group
{
    return [self stringEntry:key inGroup:group withDefault:nil];
}

- (NSString*) stringEntry:(NSString*)key inGroup:(NSString*)group withDefault:(NSString*)def
{
    NSString *result = def;
    gchar *entry = g_key_file_get_string (file, [group UTF8String], [key UTF8String], NULL);
    if (entry) {
        result = [NSString stringWithUTF8String:entry];
        g_free (entry);
    }
    return result;
}

- (BOOL) booleanEntry:(NSString*)key inGroup:(NSString*)group withDefault:(BOOL)def
{
    GError *error = NULL;
    gboolean result = g_key_file_get_boolean (file, [group UTF8String], [key UTF8String], &error);
    if (error != NULL) {
        g_error_free (error);
        return def;
    } else {
        return result ? YES : NO;
    }
}

- (BOOL) booleanEntry:(NSString*)key inGroup:(NSString*)group
{
    gboolean result = g_key_file_get_boolean (file, [group UTF8String], [key UTF8String], NULL);
    return result ? YES : NO;
}

- (int) integerEntry:(NSString*)key inGroup:(NSString*)group withDefault:(int)def
{
    GError *error = NULL;
    int result = g_key_file_get_integer (file, [group UTF8String], [key UTF8String], &error);
    if (error != NULL) {
        g_error_free (error);
        return def;
    } else {
        return result;
    }
}

- (int) integerEntry:(NSString*)key inGroup:(NSString*)group
{
    return g_key_file_get_integer (file, [group UTF8String], [key UTF8String], NULL);
}

- (double) doubleEntry:(NSString*)key inGroup:(NSString*)group withDefault:(double)def
{
    GError *error = NULL;
    double result = g_key_file_get_double (file, [group UTF8String], [key UTF8String], &error);
    if (error != NULL) {
        g_error_free (error);
        return def;
    } else {
        return result;
    }
}

- (double) doubleEntry:(NSString*)key inGroup:(NSString*)group
{
    return g_key_file_get_double (file, [group UTF8String], [key UTF8String], NULL);
}

- (NSArray*) stringListEntry:(NSString*)key inGroup:(NSString*)group
{
    return [self stringListEntry:key inGroup:group withDefault:nil];
}

- (NSArray*) stringListEntry:(NSString*)key inGroup:(NSString*)group withDefault:(NSArray*)def
{
    gsize length;
    gchar **list = g_key_file_get_string_list (file, [group UTF8String], [key UTF8String], &length, NULL);
    if (list) {
        NSMutableArray *result = [NSMutableArray arrayWithCapacity:length];
        for (int i = 0; i < length; ++i) {
            [result addObject:[NSString stringWithUTF8String:list[i]]];
        }
        return result;
    } else {
        return def;
    }
}

- (NSArray*) booleanListEntry:(NSString*)key inGroup:(NSString*)group
{
    return [self booleanListEntry:key inGroup:group withDefault:nil];
}

- (NSArray*) booleanListEntry:(NSString*)key inGroup:(NSString*)group withDefault:(NSArray*)def
{
    gsize length;
    gboolean *list = g_key_file_get_boolean_list (file, [group UTF8String], [key UTF8String], &length, NULL);
    if (list) {
        NSMutableArray *result = [NSMutableArray arrayWithCapacity:length];
        for (int i = 0; i < length; ++i) {
            [result addObject:[NSNumber numberWithBool:list[i]]];
        }
        return result;
    } else {
        return def;
    }
}

- (NSArray*) integerListEntry:(NSString*)key inGroup:(NSString*)group
{
    return [self integerListEntry:key inGroup:group withDefault:nil];
}

- (NSArray*) integerListEntry:(NSString*)key inGroup:(NSString*)group withDefault:(NSArray*)def
{
    gsize length;
    gint *list = g_key_file_get_integer_list (file, [group UTF8String], [key UTF8String], &length, NULL);
    if (list) {
        NSMutableArray *result = [NSMutableArray arrayWithCapacity:length];
        for (int i = 0; i < length; ++i) {
            [result addObject:[NSNumber numberWithInt:list[i]]];
        }
        return result;
    } else {
        return def;
    }
}

- (NSArray*) doubleListEntry:(NSString*)key inGroup:(NSString*)group
{
    return [self doubleListEntry:key inGroup:group withDefault:nil];
}

- (NSArray*) doubleListEntry:(NSString*)key inGroup:(NSString*)group withDefault:(NSArray*)def
{
    gsize length;
    double *list = g_key_file_get_double_list (file, [group UTF8String], [key UTF8String], &length, NULL);
    if (list) {
        NSMutableArray *result = [NSMutableArray arrayWithCapacity:length];
        for (int i = 0; i < length; ++i) {
            [result addObject:[NSNumber numberWithDouble:list[i]]];
        }
        return result;
    } else {
        return def;
    }
}

- (void) setStringEntry:(NSString*)key inGroup:(NSString*)group value:(NSString*)value
{
    if (value == nil) {
        [self removeKey:key inGroup:group];
        return;
    }
    g_key_file_set_string (file, [group UTF8String], [key UTF8String], [value UTF8String]);
}

- (void) setBooleanEntry:(NSString*)key inGroup:(NSString*)group value:(BOOL)value;
{
    g_key_file_set_boolean (file, [group UTF8String], [key UTF8String], value);
}

- (void) setIntegerEntry:(NSString*)key inGroup:(NSString*)group value:(int)value;
{
    g_key_file_set_integer (file, [group UTF8String], [key UTF8String], value);
}

- (void) setDoubleEntry:(NSString*)key inGroup:(NSString*)group value:(double)value;
{
    g_key_file_set_double (file, [group UTF8String], [key UTF8String], value);
}


- (void) setStringListEntry:(NSString*)key inGroup:(NSString*)group value:(NSArray*)value
{
    if (value == nil) {
        [self removeKey:key inGroup:group];
        return;
    }
    gsize length = [value count];
    const gchar * *list = g_new (const gchar *, length);
    for (int i = 0; i < length; ++i) {
        list[i] = [[value objectAtIndex:i] UTF8String];
    }
    g_key_file_set_string_list (file, [group UTF8String], [key UTF8String], list, length);
    g_free (list);
}

- (void) setBooleanListEntry:(NSString*)key inGroup:(NSString*)group value:(NSArray*)value;
{
    if (value == nil) {
        [self removeKey:key inGroup:group];
        return;
    }
    gsize length = [value count];
    gboolean *list = g_new (gboolean, length);
    for (int i = 0; i < length; ++i) {
        list[i] = [[value objectAtIndex:i] boolValue];
    }
    g_key_file_set_boolean_list (file, [group UTF8String], [key UTF8String], list, length);
    g_free (list);
}

- (void) setIntegerListEntry:(NSString*)key inGroup:(NSString*)group value:(NSArray*)value;
{
    if (value == nil) {
        [self removeKey:key inGroup:group];
        return;
    }
    gsize length = [value count];
    gint *list = g_new (gint, length);
    for (int i = 0; i < length; ++i) {
        list[i] = [[value objectAtIndex:i] intValue];
    }
    g_key_file_set_integer_list (file, [group UTF8String], [key UTF8String], list, length);
    g_free (list);
}

- (void) setDoubleListEntry:(NSString*)key inGroup:(NSString*)group value:(NSArray*)value;
{
    if (value == nil) {
        [self removeKey:key inGroup:group];
        return;
    }
    gsize length = [value count];
    gdouble *list = g_new (gdouble, length);
    for (int i = 0; i < length; ++i) {
        list[i] = [[value objectAtIndex:i] doubleValue];
    }
    g_key_file_set_double_list (file, [group UTF8String], [key UTF8String], list, length);
    g_free (list);
}

- (void) removeGroup:(NSString*)group
{
    g_key_file_remove_group (file, [group UTF8String], NULL);
}

- (void) removeKey:(NSString*)key inGroup:(NSString*)group;
{
    g_key_file_remove_key (file, [group UTF8String], [key UTF8String], NULL);
}

- (void) dealloc
{
    [name release];
    g_key_file_free (file);
    file = NULL;
    [super dealloc];
}

@end

// vim:ft=objc:sts=4:sw=4:et