systemd-gotify/config.c

72 lines
1.8 KiB
C
Raw Normal View History

2024-09-11 08:14:55 +00:00
#include"config.h"
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int loadConfig(char *str_file, char **str_entry,int size)
2024-09-11 08:14:55 +00:00
{
int i=0;
FILE *f_config;
2024-09-11 09:31:04 +00:00
char temp_str[256];
2024-09-11 08:14:55 +00:00
2024-09-11 08:54:21 +00:00
printf("\nopening config file\n");
f_config = fopen(str_file,"r");
2024-09-11 08:14:55 +00:00
if(f_config != NULL)
{
2024-09-16 11:10:54 +00:00
while(fgets(temp_str,256,f_config)!=NULL)
2024-09-16 10:39:50 +00:00
{
2024-09-16 11:10:54 +00:00
temp_str[strcspn(temp_str,"\n")]=0;
printf("while\n");
if(strcmp(temp_str,"[Host]")==0)
{
if(fgets(temp_str,256,f_config)!=NULL)
{
char host[256];
char *ptr_host = strrchr(temp_str,'=')+1;
strncpy(host,ptr_host,256);
printf("my host is:%s\n",host);
}
}
else if(strcmp(temp_str,"[Services]")==0)
{
for(i=0;i<size;i++)
{
printf("for loop:%d\n",i);
if(fgets(temp_str,256,f_config)!=NULL)
{
if(strchr(temp_str,'[')==NULL)
{
temp_str[strcspn(temp_str,"\n")]=0;
str_entry[i]=strdup(temp_str);
printf("module path:%s",str_entry[i]);
}else
{
break;
}
}
else
{
break;
fclose(f_config);
}
}
}
2024-09-11 08:14:55 +00:00
}
}
else
{
fprintf(stderr,"error opening file[%s]\n",str_file);
2024-09-11 08:14:55 +00:00
}
return 0;
}
2024-09-11 15:45:08 +00:00
/*int parseConfig(File *file, char *str_entry)
{
char sub_str[256];
if(strcmp(str_entry,"[Host]")==0)//section
{
fgets(sub_str,256,file);
//do sub parsing
}
}*/