aboutsummaryrefslogtreecommitdiffstats
path: root/libccnx-transport-rta/ccnx/transport/common/ccnx_StackConfig.c
blob: b5b55a097443d96c8c1a522069250bcb7c296789 (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
/*
 * Copyright (c) 2017 Cisco and/or its affiliates.
 * 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.
 */

#include <config.h>
#include <LongBow/runtime.h>

#include <parc/algol/parc_Object.h>
#include <parc/algol/parc_Memory.h>
#include <parc/algol/parc_DisplayIndented.h>

#include <ccnx/transport/common/ccnx_StackConfig.h>

struct CCNxStackConfig_ {
    PARCJSON *stackjson;
};

static void
_ccnxStackConfig_Finalize(CCNxStackConfig **instancePtr)
{
    assertNotNull(instancePtr, "Parameter must be a non-null pointer to a CCNxStackConfig pointer.");

    CCNxStackConfig *instance = *instancePtr;
    ccnxStackConfig_OptionalAssertValid(instance);

    parcJSON_Release(&instance->stackjson);
}

parcObject_ImplementAcquire(ccnxStackConfig, CCNxStackConfig);

parcObject_ImplementRelease(ccnxStackConfig, CCNxStackConfig);

parcObject_ExtendPARCObject(CCNxStackConfig, _ccnxStackConfig_Finalize, ccnxStackConfig_Copy, ccnxStackConfig_ToString, ccnxStackConfig_Equals, NULL, ccnxStackConfig_HashCode, ccnxStackConfig_ToJSON);

void
ccnxStackConfig_AssertValid(const CCNxStackConfig *instance)
{
    assertTrue(ccnxStackConfig_IsValid(instance),
               "CCNxStackConfig is not valid.");
}

CCNxStackConfig *
ccnxStackConfig_Create(void)
{
    CCNxStackConfig *result = parcObject_CreateInstance(CCNxStackConfig);
    if (result != NULL) {
        result->stackjson = parcJSON_Create();
    }

    return result;
}

CCNxStackConfig *
ccnxStackConfig_Copy(const CCNxStackConfig *original)
{
    ccnxStackConfig_OptionalAssertValid(original);

    CCNxStackConfig *result = parcObject_CreateInstance(CCNxStackConfig);

    result->stackjson = parcJSON_Copy(original->stackjson);

    return result;
}

void
ccnxStackConfig_Display(const CCNxStackConfig *instance, int indentation)
{
    parcDisplayIndented_PrintLine(indentation, "CCNxStackConfig@%p {", instance);
    PARCJSON *json = ccnxStackConfig_GetJson(instance);

    parcJSON_Display(json, indentation + 1);
    parcDisplayIndented_PrintLine(indentation, "}");
}

bool
ccnxStackConfig_Equals(const CCNxStackConfig *x, const CCNxStackConfig *y)
{
    bool result = false;

    if (x == y) {
        result = true;
    } else if (x == NULL || y == NULL) {
        result = false;
    } else {
        result = parcJSON_Equals(x->stackjson, y->stackjson);
    }

    return result;
}

bool
ccnxStackConfig_IsValid(const CCNxStackConfig *instance)
{
    bool result = false;
    if (instance != NULL) {
        result = true;
    }
    return result;
}

PARCJSON *
ccnxStackConfig_ToJSON(const CCNxStackConfig *instance)
{
    ccnxStackConfig_OptionalAssertValid(instance);

    return instance->stackjson;
}

char *
ccnxStackConfig_ToString(const CCNxStackConfig *instance)
{
    PARCJSON *json = ccnxStackConfig_ToJSON(instance);

    char *result = parcJSON_ToString(json);

    return result;
}

PARCJSONValue *
ccnxStackConfig_Get(const CCNxStackConfig *config, const char *componentKey)
{
    ccnxStackConfig_OptionalAssertValid(config);
    PARCJSONValue *value = parcJSON_GetValueByName(config->stackjson, componentKey);
    return value;
}

PARCHashCode
ccnxStackConfig_HashCode(const CCNxStackConfig *config)
{
    ccnxStackConfig_OptionalAssertValid(config);
    return parcJSON_HashCode(config->stackjson);
}

CCNxStackConfig *
ccnxStackConfig_Add(CCNxStackConfig *config, const char *componentKey, PARCJSONValue *jsonObject)
{
    ccnxStackConfig_OptionalAssertValid(config);

    parcJSON_AddValue(config->stackjson, componentKey, jsonObject);
    return config;
}

PARCJSON *
ccnxStackConfig_GetJson(const CCNxStackConfig *config)
{
    ccnxStackConfig_OptionalAssertValid(config);

    return (config->stackjson);
}