linux 配置文件读写解析

有时我们自己写Linux下配置文件,需要手动解析,然后使得程序可以配置的
类似于以下格式 simple.conf:
  ## Sample configuration file 
ip=192.16.31.2
port=22
Desktop-Picture = /usr/images/earth.jpg 
Position = Centered

直接上代码解析:

头文件ccl.h

#ifndef CLL_KVCONF_H
#define CLL_KVCONF_H

#define KEYVALLEN 256

/*   删除左边的空格   */
char * l_trim(char * szOutput, const char *szInput);

/*   删除右边的空格   */
char *r_trim(char *szOutput, const char *szInput);

/*   删除两边的空格   */
char * a_trim(char * szOutput, const char * szInput);


int GetProfileString(char *profile, char *AppName, char *KeyName, char *KeyVal );


#endif //CLL_KVCONF_H

源文件ccl.cpp

#include 
#include 
#include 
#include 
#include 
#include 
#include "kvconf.h"


/*   删除左边的空格   */
char * l_trim(char * szOutput, const char *szInput)
{
    assert(szInput != NULL);
    assert(szOutput != NULL);
    assert(szOutput != szInput);
    for   (NULL; *szInput != '\0' && isspace(*szInput); ++szInput){
        ;
    }
    return strcpy(szOutput, szInput);
}

/*   删除右边的空格   */
char *r_trim(char *szOutput, const char *szInput)
{
    char *p = NULL;
    assert(szInput != NULL);
    assert(szOutput != NULL);
    assert(szOutput != szInput);
    strcpy(szOutput, szInput);
    for(p = szOutput + strlen(szOutput) - 1; p >= szOutput && isspace(*p); --p){
        ;
    }
    *(++p) = '\0';
    return szOutput;
}

/*   删除两边的空格   */
char * a_trim(char * szOutput, const char * szInput)
{
    char *p = NULL;
    assert(szInput != NULL);
    assert(szOutput != NULL);
    l_trim(szOutput, szInput);
    for   (p = szOutput + strlen(szOutput) - 1;p >= szOutput && isspace(*p); --p){
        ;
    }
    *(++p) = '\0';
    return szOutput;
}

int GetProfileString(char *profile,  char *KeyName, char *KeyVal )
{
    char keyname[32];
    char *buf,*c;
    char buf_i[KEYVALLEN], buf_o[KEYVALLEN];
    FILE *fp;
    int found=0; /* 1 AppName 2 KeyName */
    if( (fp=fopen( profile,"r" ))==NULL ){
        printf( "openfile [%s] error [%s]\n",profile,strerror(errno) );
        return(-1);
    }
    fseek( fp, 0, SEEK_SET );

    while( !feof(fp) && fgets( buf_i, KEYVALLEN, fp )!=NULL ){
        l_trim(buf_o, buf_i);
        if( strlen(buf_o) <= 0 )
            continue;
        buf = NULL;
        buf = buf_o;

        if( buf[0] == '#' ){
                continue;
            } else {
                //char *strchr(const char* _Str,char _Val)
                //返回首次出现_Val的位置的指针,返回的地址是被查找字符串指针开始的第一个与Val相同字符的指针,如果Str中不存在Val则返回NULL
                if( (c = (char*)strchr(buf, '=')) == NULL )
                    continue;
                memset( keyname, 0, sizeof(keyname) );

                sscanf( buf, "%[^=|^ |^\t]", keyname );
                if( strcmp(keyname, KeyName) == 0 ){
                    sscanf( ++c, "%[^\n]", KeyVal );
                    char *KeyVal_o = (char *)malloc(strlen(KeyVal) + 1);
                    if(KeyVal_o != NULL){
                        memset(KeyVal_o, 0, sizeof(KeyVal_o));
                        a_trim(KeyVal_o, KeyVal);
                        if(KeyVal_o && strlen(KeyVal_o) > 0)
                            strcpy(KeyVal, KeyVal_o);
                        free(KeyVal_o);
                        KeyVal_o = NULL;
                    }
                    found = 2;
                    break;
                } else {
                    continue;
                }
            }
//        }
    }
    fclose( fp );
    if( found == 2 )
        return(0);
    else
        return(-1);
}

int GetProfileInt(char *profile, char *KeyName, int *Keyval )
{
    char KeyVal[16];
    GetProfileString(profile,KeyName,KeyVal);
    *Keyval = atoi(KeyVal);
    return 0;
}


int main()
{
    char ip[16];
    int port;  
  GetProfileString("./simple.conf", "ip", ip);
  GetProfileInt("./simple.conf", "port",&port);
  printf("port = %d\n",port);
  printf("%s\n",ip);
return 0;}

你可能感兴趣的:(C++基础,c语言,linux)