summaryrefslogtreecommitdiffstats
path: root/mDNSResponder/mDNSMacOSX/SettingsBundle/BonjourSCStore.m
blob: e4f9b0d56c8ddb6e4c6f99708562086771bf4977 (plain) (blame)
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
/*
 *
 * Copyright (c) 2016 Apple Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#import "BonjourSCStore.h"
#import <Foundation/Foundation.h>
#import <AssertMacros.h>

@implementation BonjourSCStore

+ (NSArray * _Nullable)objectForKey:(NSString * _Nonnull)key
{
    NSArray *           result = nil;
    SCPreferencesRef	store;
    OSStatus            err;
    NSDictionary *		origDict;
    
    store = SCPreferencesCreateWithAuthorization(kCFAllocatorDefault, SC_DYNDNS_PREFS_KEY, NULL, NULL);
    require_action(store != NULL, SysConfigErr, err = SCError());
    require_action(true == SCPreferencesLock(store, true), LockFailed, err = SCError());
    
    origDict = (__bridge NSDictionary *)SCPreferencesPathGetValue(store, SC_DYNDNS_SYSTEM_KEY);
    if (origDict)  origDict = [NSDictionary dictionaryWithDictionary: origDict];
    
    result = [origDict objectForKey: key];
    
    SCPreferencesUnlock(store);
    
LockFailed:
    CFRelease(store);
SysConfigErr:
    return(result);
}

+ (void)setObject:(NSArray * _Nullable)value forKey:(NSString * _Nonnull)key
{
    SCPreferencesRef	    store;
    OSStatus				err;
    NSMutableDictionary *   origDict;
    Boolean					success;
    
    store = SCPreferencesCreateWithAuthorization(kCFAllocatorDefault, SC_DYNDNS_PREFS_KEY, NULL, NULL);
    require_action(store != NULL, SysConfigErr, err = SCError());
    require_action(true == SCPreferencesLock(store, true), LockFailed, err = SCError());
    
    origDict = (__bridge NSMutableDictionary *)SCPreferencesPathGetValue(store, SC_DYNDNS_SYSTEM_KEY);
    if (!origDict)     origDict = [NSMutableDictionary dictionary];
    else               origDict = [NSMutableDictionary dictionaryWithDictionary: origDict];
    
    if (value.count)   [origDict setObject: value forKey: key];
    else               [origDict removeObjectForKey: key];
    
    success = SCPreferencesPathSetValue(store, SC_DYNDNS_SYSTEM_KEY, (__bridge CFDictionaryRef)origDict);
    require_action(success, SCError, err = SCError(););
    
    success = SCPreferencesCommitChanges(store);
    require_action(success, SCError, err = SCError());
    success = SCPreferencesApplyChanges(store);
    require_action(success, SCError, err = SCError());
    
SCError:
    SCPreferencesUnlock(store);
LockFailed:
    CFRelease(store);
SysConfigErr:
    return;
}


@end