forked from Keyfactor/Keyfactor-CAgent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserialize.c
More file actions
159 lines (145 loc) · 5.37 KB
/
serialize.c
File metadata and controls
159 lines (145 loc) · 5.37 KB
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
/******************************************************************************/
/* Copyright 2021 Keyfactor */
/* 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 */
/* thespecific language governing permissions and limitations under the */
/* License. */
/******************************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include "serialize.h"
#include "logging.h"
#include "lib/json.h"
#define SER_FILE_LEN 1024 /* Max file length */
/** */
/* print the serialization parameters pulled from the serialized json file */
/* @param a pointer to the serialization data structure */
/* @return none */
/* */
static void SerializeData_print ( struct SerializeData* serial )
{
printf("\n\n ModelName = %s\n", serial->ModelName);
printf(" NextNumber = %d\n", serial->NextNumber);
printf("\n\n");
return;
} /* SerializeData_print */
/** */
/* Load data from the serialization file into the serialization data */
/* structure */
/* @param none */
/* @return a pointer to the serialization data structure */
/* */
struct SerializeData* serialize_load( char* fileName )
{
struct SerializeData* serial = NULL;
FILE* fp = fopen(fileName, "r");
if (fp)
{
char buffer[SER_FILE_LEN];
size_t len = fread(buffer, 1, SER_FILE_LEN-1, fp);
buffer[len++] = '\0'; /* don't forget the end of string character */
JsonNode* json = json_decode(buffer);
if (json)
{
serial = calloc(1, sizeof(struct SerializeData));
if ( NULL == serial )
{
log_error("%s::%s(%d) : Out of memory! ", LOG_INF);
fclose(fp);
return NULL;
}
serial->ModelName = json_get_member_string(json, "ModelName");
serial->NextNumber = json_get_member_number(json, "NextNumber", 0);
json_delete(json);
log_verbose("%s::%s(%d) : Serialize parameters follow:", LOG_INF);
SerializeData_print( serial );
}
else
{
log_error("%s::%s(%d) : Contents of %s are not valid JSON",
LOG_INF, fileName);
}
fclose(fp);
}
else
{
int err = errno;
log_error("%s::%s(%d) : Unable to open serialization file %s: %s",
LOG_INF, fileName, strerror(err));
}
return serial;
} /* serialize_load */
/** */
/* Save data from the serialization data structure into the */
/* serialization file */
/* @param a reference to a serialization data structure */
/* @param a string with the filename and path to the common */
/* serialization file */
/* @return 1 on success */
/* 0 on failure */
/* */
int serialize_save( struct SerializeData* serial, char* fileName )
{
JsonNode* json = json_mkobject();
if ( NULL == json )
{
log_error("%s::%s(%d) : Out of memory! ", LOG_INF);
return 0;
}
if(serial->ModelName)
{
json_append_member(json, "ModelName",
json_mkstring(serial->ModelName));
}
else
{
log_error("%s::%s(%d) : Missing required ModelName", LOG_INF);
json_delete(json);
return 0;
}
if(serial->NextNumber)
{
json_append_member(json, "NextNumber",
json_mknumber(serial->NextNumber));
}
else
{
log_error("%s::%s(%d) : Missing required NextNumber", LOG_INF);
json_delete(json);
return 0;
}
FILE* fp = fopen(fileName,"w");
if(fp)
{
char* serialString = json_stringify(json,"\t");
size_t w = fwrite(serialString, 1, strlen(serialString), fp);
if ( w != strlen(serialString) )
{
log_error("%s::%s(%d) : Error writing to file %s",
LOG_INF, fileName);
free(serialString);
fclose(fp);
return 0;
}
free(serialString);
fclose(fp);
}
else
{
int err = errno;
log_error("%s::%s(%d) : Unable to write serial file %s: %s",
LOG_INF, fileName, strerror(err));
return 0;
}
json_delete(json);
return 1;
} /* serialize_save */
/******************************************************************************/
/******************************* END OF FILE **********************************/
/******************************************************************************/