-
Notifications
You must be signed in to change notification settings - Fork 45
/
property.c
160 lines (147 loc) · 4.16 KB
/
property.c
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 (C)
* 2018 - John Melton, G0ORX/N6LYT
*
* This program 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 2
* of the License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "property.h"
PROPERTY* properties;
static double version=0.0;
void initProperties() {
PROPERTY *next;
while(properties!=NULL) {
next=properties->next_property;
free(properties);
properties=next;
}
}
/* --------------------------------------------------------------------------*/
/**
* @brief Load Properties
*
* @param filename
*/
void loadProperties(char* filename) {
char string[256];
char* name;
char* value;
FILE* f=fopen(filename,"r");
properties=NULL;
PROPERTY* property;
fprintf(stderr,"loadProperties: %s\n",filename);
if(f) {
while(fgets(string,sizeof(string),f)) {
if(string[0]!='#') {
name=strtok(string,"=");
value=strtok(NULL,"\n");
if (name != NULL && value != NULL) {
property=malloc(sizeof(PROPERTY));
property->name=malloc(strlen(name)+1);
strcpy(property->name,name);
property->value=malloc(strlen(value)+1);
strcpy(property->value,value);
property->next_property=properties;
properties=property;
if(strcmp(name,"property_version")==0) {
version=atof(value);
}
}
}
}
fclose(f);
}
if(version!=PROPERTY_VERSION) {
properties=NULL;
fprintf(stderr,"loadProperties: version=%f expected version=%f ignoring\n",version,PROPERTY_VERSION);
}
}
/* --------------------------------------------------------------------------*/
/**
* @brief Save Properties
*
* @param filename
*/
void saveProperties(char* filename) {
PROPERTY* property;
FILE* f=fopen(filename,"w+");
char line[512];
if(!f) {
fprintf(stderr,"can't open %s\n",filename);
return;
}
sprintf(line,"%0.2f",PROPERTY_VERSION);
setProperty("property_version",line);
property=properties;
while(property) {
sprintf(line,"%s=%s\n",property->name,property->value);
fwrite(line,1,strlen(line),f);
property=property->next_property;
}
fclose(f);
}
/* --------------------------------------------------------------------------*/
/**
* @brief Get Properties
*
* @param name
*
* @return
*/
char* getProperty(char* name) {
char* value=NULL;
PROPERTY* property=properties;
while(property) {
if(strcmp(name,property->name)==0) {
value=property->value;
break;
}
property=property->next_property;
}
return value;
}
/* --------------------------------------------------------------------------*/
/**
* @brief Set Properties
*
* @param name
* @param value
*/
void setProperty(char* name,char* value) {
PROPERTY* property=properties;
while(property) {
if(strcmp(name,property->name)==0) {
break;
}
property=property->next_property;
}
if(property) {
// just update
free(property->value);
property->value=malloc(strlen(value)+1);
strcpy(property->value,value);
} else {
// new property
property=malloc(sizeof(PROPERTY));
property->name=malloc(strlen(name)+1);
strcpy(property->name,name);
property->value=malloc(strlen(value)+1);
strcpy(property->value,value);
property->next_property=properties;
properties=property;
}
}