我在使用 Inotify 时遇到了一些问题。我正在查看配置文件,希望在修改时重新加载配置。可以毫无问题地检测到修改,但是当我读取配置值时,我得到了旧值。假设我有
attrib=value
我修改它所以它是
attrib =value1
然后,当我再次读取文件时,我会得到“value”而不是“value1”。如果我再次修改属性,阅读时我会得到“value1”。
编辑: PATH_FLDR_CONFIG 指向文件本身。
这是代码:
int length, i = 0;
int inotify;
char buffer[EVENT_BUF_LEN];
if((inotify = inotify_init())<0){
pthread_exit(NULL);
}
inotify_add_watch( inotify, PATH_FLDR_CONFIG , IN_MODIFY );
while (true){
i=0;
length = read( inotify, buffer, EVENT_BUF_LEN );
if (length<0) continue;
while ( i < length ) {
read( inotify, buffer, EVENT_BUF_LEN );
struct inotify_event *event = ( struct inotify_event * ) &buffer[ i ];
if ( event->mask & IN_MODIFY ) {
readConfigFile();
}
i += EVENT_SIZE + event->len;
}
}
在 readConfigFile() 里面我做了一个 configCreate + 各种读取;
t_config *config_create(char *path) {
t_config *config = malloc(sizeof(t_config));
config->path = strdup(path);
config->properties = dictionary_create();
struct stat stat_file;
stat(path, &stat_file);
FILE* file = NULL;
file = fopen(path, "r");
if (file != NULL) {
char* buffer = calloc(1, stat_file.st_size + 1);
fread(buffer, stat_file.st_size, 1, file);
char** lines = string_split(buffer, "\n");
void add_cofiguration(char *line) {
if (!string_starts_with(line, "#")) {
char** keyAndValue = string_split(line, "=");
dictionary_put(config->properties, keyAndValue[0], keyAndValue[1]);
free(keyAndValue[0]);
free(keyAndValue);
}
}
string_iterate_lines(lines, add_cofiguration);
string_iterate_lines(lines, (void*) free);
free(lines);
free(buffer);
fclose(file);
}
return config;
}
char *config_get_string_value(t_config *self, char *key) {
return dictionary_get(self->properties, key);
}