c++实现数据存储程序第一天

c++实现数据存储程序第一天—读取配置文件

2019年4月11日晚上,脑子里突然间冒出个想法(用c++撸一个数据存储服务的程序),之前有用GO写过一个简单的可分布式扩展的图片存储程序。虽然还没有具体思路,但是仍然打算开始动手,走一步算一步(做着做着思路就来了呢也说不定)。

一、开发编辑器

打算用Qt Creator,之前电脑有装这个IDE,感觉还行,就继续用它吧。

二、程序取名

随便取个名字就叫daobu吧,总不能叫test吧...

ok,开始建工程了

三、第一天主要内容

  1. 主要内容是c++实现读取配置文件(读取的部分用了某位大佬的源码,博客上看到的还不清楚真正出处)。源码主要如下:
  • configcore.h
#ifndef CONFIGCORE_H
#define CONFIGCORE_H

#pragma once

#include <string>
#include <map>
#include <iostream>
#include <fstream>
#include <sstream>

class ConfigCore
{
protected:
    std::string m_Delimiter;  //!< separator between key and value
    std::string m_Comment;    //!< separator between value and comments
    std::map<std::string,std::string> m_Contents;  //!< extracted keys and values

    typedef std::map<std::string,std::string>::iterator mapi;
    typedef std::map<std::string,std::string>::const_iterator mapci;
    // Methods
public:

    ConfigCore( std::string filename,std::string delimiter = "=",std::string comment = "#" );
    ConfigCore();
    template<class T> T Read( const std::string& in_key ) const;  //!<Search for key and read value or optional default value, call as read<T>
    template<class T> T Read( const std::string& in_key, const T& in_value ) const;
    template<class T> bool ReadInto( T& out_var, const std::string& in_key ) const;
    template<class T>
    bool ReadInto( T& out_var, const std::string& in_key, const T& in_value ) const;
    bool FileExist(std::string filename);
    void ReadFile(std::string filename,std::string delimiter = "=",std::string comment = "#" );

    // Check whether key exists in configuration
    bool KeyExists( const std::string& in_key ) const;

    // Modify keys and values
    template<class T> void Add( const std::string& in_key, const T& in_value );
    void Remove( const std::string& in_key );

    // Check or change configuration syntax
    std::string GetDelimiter() const { return m_Delimiter; }
    std::string GetComment() const { return m_Comment; }
    std::string SetDelimiter( const std::string& in_s )
    { std::string old = m_Delimiter;  m_Delimiter = in_s;  return old; }
    std::string SetComment( const std::string& in_s )
    { std::string old = m_Comment;  m_Comment =  in_s;  return old; }

    // Write or read configuration
    friend std::ostream& operator<<( std::ostream& os, const ConfigCore& cf );
    friend std::istream& operator>>( std::istream& is, ConfigCore& cf );

protected:
    template<class T> static std::string T_as_string( const T& t );
    template<class T> static T string_as_T( const std::string& s );
    static void Trim( std::string& inout_s );


    // Exception types
public:
    struct File_not_found {
        std::string filename;
        File_not_found( const std::string& filename_ = std::string() )
            : filename(filename_) {} };
        struct Key_not_found {  // thrown only by T read(key) variant of read()
            std::string key;
            Key_not_found( const std::string& key_ = std::string() )
                : key(key_) {} };
};


/* static */
template<class T>
std::string ConfigCore::T_as_string( const T& t )
{
    // Convert from a T to a string
    // Type T must support << operator
    std::ostringstream ost;
    ost << t;
    return ost.str();
}


/* static */
template<class T>
T ConfigCore::string_as_T( const std::string& s )
{
    // Convert from a string to a T
    // Type T must support >> operator
    T t;
    std::istringstream ist(s);
    ist >> t;
    return t;
}


/* static */
template<>
inline std::string ConfigCore::string_as_T<std::string>( const std::string& s )
{
    // Convert from a string to a string
    // In other words, do nothing
    return s;
}


/* static */
template<>
inline bool ConfigCore::string_as_T<bool>( const std::string& s )
{
    // Convert from a string to a bool
    // Interpret "false", "F", "no", "n", "0" as false
    // Interpret "true", "T", "yes", "y", "1", "-1", or anything else as true
    bool b = true;
    std::string sup = s;
    for( std::string::iterator p = sup.begin(); p != sup.end(); ++p )
        *p = toupper(*p);  // make string all caps
    if( sup==std::string("FALSE") || sup==std::string("F") ||
        sup==std::string("NO") || sup==std::string("N") ||
        sup==std::string("0") || sup==std::string("NONE") )
        b = false;
    return b;
}


template<class T>
T ConfigCore::Read( const std::string& key ) const
{
    // Read the value corresponding to key
    mapci p = m_Contents.find(key);
    if( p == m_Contents.end() ) throw Key_not_found(key);
    return string_as_T<T>( p->second );
}


template<class T>
T ConfigCore::Read( const std::string& key, const T& value ) const
{
    // Return the value corresponding to key or given default value
    // if key is not found
    mapci p = m_Contents.find(key);
    if( p == m_Contents.end() ) return value;
    return string_as_T<T>( p->second );
}


template<class T>
bool ConfigCore::ReadInto( T& var, const std::string& key ) const
{
    // Get the value corresponding to key and store in var
    // Return true if key is found
    // Otherwise leave var untouched
    mapci p = m_Contents.find(key);
    bool found = ( p != m_Contents.end() );
    if( found ) var = string_as_T<T>( p->second );
    return found;
}


template<class T>
bool ConfigCore::ReadInto( T& var, const std::string& key, const T& value ) const
{
    // Get the value corresponding to key and store in var
    // Return true if key is found
    // Otherwise set var to given default
    mapci p = m_Contents.find(key);
    bool found = ( p != m_Contents.end() );
    if( found )
        var = string_as_T<T>( p->second );
    else
        var = value;
    return found;
}


template<class T>
void ConfigCore::Add( const std::string& in_key, const T& value )
{
    // Add a key with given value
    std::string v = T_as_string( value );
    std::string key=in_key;
    Trim(key);
    Trim(v);
    m_Contents[key] = v;
    return;
};

#endif // CONFIGCORE_H
  • configcore.cpp
#include "configcore.h"
using namespace std;

ConfigCore::ConfigCore( string filename, string delimiter,
               string comment )
               : m_Delimiter(delimiter), m_Comment(comment)
{
    // Construct a Config, getting keys and values from given file

    std::ifstream in( filename.c_str() );

    if( !in ) throw File_not_found( filename );

    in >> (*this);
}


ConfigCore::ConfigCore()
: m_Delimiter( string(1,'=') ), m_Comment( string(1,'#') )
{
    // Construct a Config without a file; empty
}

bool ConfigCore::KeyExists( const string& key ) const
{
    // Indicate whether key is found
    mapci p = m_Contents.find( key );
    return ( p != m_Contents.end() );
}


/* static */
void ConfigCore::Trim( string& inout_s )
{
    // Remove leading and trailing whitespace
    static const char whitespace[] = " \n\t\v\r\f";
    inout_s.erase( 0, inout_s.find_first_not_of(whitespace) );
    inout_s.erase( inout_s.find_last_not_of(whitespace) + 1U );
}


std::ostream& operator<<( std::ostream& os, const ConfigCore& cf )
{
    // Save a Config to os
    for( ConfigCore::mapci p = cf.m_Contents.begin();
        p != cf.m_Contents.end();
        ++p )
    {
        os << p->first << " " << cf.m_Delimiter << " ";
        os << p->second << std::endl;
    }
    return os;
}

void ConfigCore::Remove( const string& key )
{
    // Remove key and its value
    m_Contents.erase( m_Contents.find( key ) );
    return;
}

std::istream& operator>>( std::istream& is, ConfigCore& cf )
{
    // Load a Config from is
    // Read in keys and values, keeping internal whitespace
    typedef string::size_type pos;
    const string& delim  = cf.m_Delimiter;  // separator
    const string& comm   = cf.m_Comment;    // comment
    const pos skip = delim.length();        // length of separator

    string nextline = "";  // might need to read ahead to see where value ends

    while( is || nextline.length() > 0 )
    {
        // Read an entire line at a time
        string line;
        if( nextline.length() > 0 )
        {
            line = nextline;  // we read ahead; use it now
            nextline = "";
        }
        else
        {
            std::getline( is, line );
        }

        // Ignore comments
        line = line.substr( 0, line.find(comm) );

        // Parse the line if it contains a delimiter
        pos delimPos = line.find( delim );
        if( delimPos < string::npos )
        {
            // Extract the key
            string key = line.substr( 0, delimPos );
            line.replace( 0, delimPos+skip, "" );

            // See if value continues on the next line
            // Stop at blank line, next line with a key, end of stream,
            // or end of file sentry
            bool terminate = false;
            while( !terminate && is )
            {
                std::getline( is, nextline );
                terminate = true;

                string nlcopy = nextline;
                ConfigCore::Trim(nlcopy);
                if( nlcopy == "" ) continue;

                nextline = nextline.substr( 0, nextline.find(comm) );
                if( nextline.find(delim) != string::npos )
                    continue;

                nlcopy = nextline;
                ConfigCore::Trim(nlcopy);
                if( nlcopy != "" ) line += "\n";
                line += nextline;
                terminate = false;
            }

            // Store key and value
            ConfigCore::Trim(key);
            ConfigCore::Trim(line);
            cf.m_Contents[key] = line;  // overwrites if key is repeated
        }
    }

    return is;
}
bool ConfigCore::FileExist(std::string filename)
{
    bool exist= false;
    std::ifstream in( filename.c_str() );
    if( in )
        exist = true;
    return exist;
}

void ConfigCore::ReadFile( string filename, string delimiter,
                      string comment )
{
    m_Delimiter = delimiter;
    m_Comment = comment;
    std::ifstream in( filename.c_str() );

    if( !in ) throw File_not_found( filename );

    in >> (*this);
}
  • config.h
#ifndef CONFIG_H
#define CONFIG_H

#include "configcore.h"

#include <map>
#include <vector>
#include <string>
using namespace std;

class Config
{
public:
    Config(string direct,string suffix);
    Config();
    void getFilesFromDirect();          // 获取某路径下所有符合后缀名的配置文件
    bool readFileToMemory();            // 读取文件数据到内存
    ConfigCore Config_Core;             // 读取配置文件的核心
private:
    string confDirect;                  // 配置文件的路径
    string confSuffix;                  // 配置文件后缀名
    vector<string> allFiles;            // 符合条件的所有配置文件
};

#endif // CONFIG_
  • config.cpp
#include "config.h"
#include <string>
#include <iostream>
#include <dirent.h>
#include <regex>
using namespace std;

Config::Config()
{
//    // 默认配置文件路径
//    this->confDirect = "../../conf";
//    // 设置配置文件后缀名
//    this->confSuffix = ".conf";
}

/**
 * @brief config::config
 * @param direct
 * @param suffix
 */
Config::Config(string direct,string suffix)
{
    // 设置配置文件路径
    this->confDirect = direct;
    // 设置配置文件后缀名
    this->confSuffix = suffix;
}

/**
 * 获取目录下所有符合后缀的文件名
 *
 * @brief Config::getFilesFromDirect
 */
void Config::getFilesFromDirect() {
    struct dirent *ptr;
    DIR *dir = opendir(this->confDirect.c_str());
    string::size_type idx;
    string dirName;
    while( (ptr=readdir(dir)) != NULL ) {
        // 4 表示目录; 8 表示文件; 0 表示未知
        if(ptr->d_type == 8) {
            //跳过'.'和'..'两个目录
            if(ptr->d_name[0] == '.') {
                continue;
            }
            // 符合后缀名的文件名加入到迭代器中去
            dirName = ptr->d_name;
            idx = dirName.find(this->confSuffix);
            if(idx != string::npos) {
                this->allFiles.push_back(dirName);
            }
        }
    }
    closedir(dir);
}

/**
 * 读取文件内容到内存
 *
 * @brief config::readFileToMemory
 * @return
 */
bool Config::readFileToMemory() {
    this->getFilesFromDirect();
    int fileSize = this->allFiles.size();
    if (fileSize == 0) {
        throw "No right config file!";
    } else if (fileSize == 1) {
        this->Config_Core.ReadFile(this->confDirect +"/"+ this->allFiles[0]);
    } else if (fileSize > 1) {
        for (int i=0; i<fileSize; i++) {
            this->Config_Core.ReadFile(this->confDirect +"/"+ this->allFiles[i]);
        }
    }
    return true;
}
  • 测试入口main.cpp
#include <iostream>
#include <libs/config/config.h>
#include <libs/config/configcore.h>
#include <unistd.h>
using namespace std;

#define MAX_PATH_LENGTH 150

int main()
{
    // 获取当前路径
    char cwd[MAX_PATH_LENGTH];
    getcwd(cwd, MAX_PATH_LENGTH);
    string cwdString = cwd;
    cwdString += "/conf";

    Config conf = Config(cwdString,".conf");
    try {
        conf.readFileToMemory();
    } catch (char const* e) {
        cout << e << endl;
        return 0;
    }
    conf.Config_Core.Add<int>("test",1099999);
    cout << "add:" << conf.Config_Core.Read<int>("add") << endl;
    cout << "ipAddress:" << conf.Config_Core.Read<string>("ipAddress") << endl;
    cout << "username:" << conf.Config_Core.Read<string>("username") << endl;
    cout << "test:" << conf.Config_Core.Read<int>("test") << endl;

    return 0;
}

运行结果

  • .conf配置文件的内容如下:
add=1234
username1=3333
ipAddress=10.10.90.125 
port=3001 
username=mark 
password=2d2df5a
  • 程序输出
add:1234
ipAddress:10.10.90.125
username:mark
test:1099999

后续内容在有突破后悔继续跟新...

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,884评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,755评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,369评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,799评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,910评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,096评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,159评论 3 411
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,917评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,360评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,673评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,814评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,509评论 4 334
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,156评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,882评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,123评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,641评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,728评论 2 351

推荐阅读更多精彩内容

  • mean to add the formatted="false" attribute?.[ 46% 47325/...
    ProZoom阅读 2,694评论 0 3
  • feisky云计算、虚拟化与Linux技术笔记posts - 1014, comments - 298, trac...
    不排版阅读 3,836评论 0 5
  • Swift1> Swift和OC的区别1.1> Swift没有地址/指针的概念1.2> 泛型1.3> 类型严谨 对...
    cosWriter阅读 11,093评论 1 32
  • 国家电网公司企业标准(Q/GDW)- 面向对象的用电信息数据交换协议 - 报批稿:20170802 前言: 排版 ...
    庭说阅读 10,934评论 6 13
  • ¥开启¥ 【iAPP实现进入界面执行逐一显】 〖2017-08-25 15:22:14〗 《//首先开一个线程,因...
    小菜c阅读 6,377评论 0 17