| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 | /*  minIni - Multi-Platform INI file parser, suitable for embedded systems * *  Copyright (c) CompuPhase, 2008-2021 * *  Licensed under the Apache License, Version 2.0 (the "License"); you may not *  use this file except in compliance with the License. You may obtain a copy *  of the License at * *      http://www.apache.org/licenses/LICENSE-2.0 * *  Unless required by applicable law or agreed to in writing, software *  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the *  License for the specific language governing permissions and limitations *  under the License. * *  Version: $Id: minIni.h 53 2015-01-18 13:35:11Z thiadmer.riemersma@gmail.com $ */#ifndef MININI_H#define MININI_H#include "minGlue.h"#if (defined _UNICODE || defined __UNICODE__ || defined UNICODE) && !defined INI_ANSIONLY  #include <tchar.h>  #define mTCHAR TCHAR#else  /* force TCHAR to be "char", but only for minIni */  #define mTCHAR char#endif#if !defined INI_BUFFERSIZE  #define INI_BUFFERSIZE  512#endif#if defined __cplusplus  extern "C" {#endifint   ini_getbool(const mTCHAR *Section, const mTCHAR *Key, int DefValue, const mTCHAR *Filename);long  ini_getl(const mTCHAR *Section, const mTCHAR *Key, long DefValue, const mTCHAR *Filename);int   ini_gets(const mTCHAR *Section, const mTCHAR *Key, const mTCHAR *DefValue, mTCHAR *Buffer, int BufferSize, const mTCHAR *Filename);int   ini_getsection(int idx, mTCHAR *Buffer, int BufferSize, const mTCHAR *Filename);int   ini_getkey(const mTCHAR *Section, int idx, mTCHAR *Buffer, int BufferSize, const mTCHAR *Filename);int   ini_hassection(const mTCHAR *Section, const mTCHAR *Filename);int   ini_haskey(const mTCHAR *Section, const mTCHAR *Key, const mTCHAR *Filename);#if defined INI_REALINI_REAL ini_getf(const mTCHAR *Section, const mTCHAR *Key, INI_REAL DefValue, const mTCHAR *Filename);#endif#if !defined INI_READONLYint   ini_putl(const mTCHAR *Section, const mTCHAR *Key, long Value, const mTCHAR *Filename);int   ini_puts(const mTCHAR *Section, const mTCHAR *Key, const mTCHAR *Value, const mTCHAR *Filename);#if defined INI_REALint   ini_putf(const mTCHAR *Section, const mTCHAR *Key, INI_REAL Value, const mTCHAR *Filename);#endif#endif /* INI_READONLY */#if !defined INI_NOBROWSEtypedef int (*INI_CALLBACK)(const mTCHAR *Section, const mTCHAR *Key, const mTCHAR *Value, void *UserData);int  ini_browse(INI_CALLBACK Callback, void *UserData, const mTCHAR *Filename);#endif /* INI_NOBROWSE */#if defined __cplusplus  }#endif#if defined __cplusplus#if defined __WXWINDOWS__	#include "wxMinIni.h"#else  #include <string>  /* The C++ class in minIni.h was contributed by Steven Van Ingelgem. */  class minIni  {  public:    minIni(const std::string& filename) : iniFilename(filename)      { }    bool getbool(const std::string& Section, const std::string& Key, bool DefValue=false) const      { return ini_getbool(Section.c_str(), Key.c_str(), int(DefValue), iniFilename.c_str()) != 0; }    long getl(const std::string& Section, const std::string& Key, long DefValue=0) const      { return ini_getl(Section.c_str(), Key.c_str(), DefValue, iniFilename.c_str()); }    int geti(const std::string& Section, const std::string& Key, int DefValue=0) const      { return static_cast<int>(this->getl(Section, Key, long(DefValue))); }    std::string gets(const std::string& Section, const std::string& Key, const std::string& DefValue="") const      {        char buffer[INI_BUFFERSIZE];        ini_gets(Section.c_str(), Key.c_str(), DefValue.c_str(), buffer, INI_BUFFERSIZE, iniFilename.c_str());        return buffer;      }    std::string getsection(int idx) const      {        char buffer[INI_BUFFERSIZE];        ini_getsection(idx, buffer, INI_BUFFERSIZE, iniFilename.c_str());        return buffer;      }    std::string getkey(const std::string& Section, int idx) const      {        char buffer[INI_BUFFERSIZE];        ini_getkey(Section.c_str(), idx, buffer, INI_BUFFERSIZE, iniFilename.c_str());        return buffer;      }    bool hassection(const std::string& Section) const      { return ini_hassection(Section.c_str(), iniFilename.c_str()) != 0; }    bool haskey(const std::string& Section, const std::string& Key) const      { return ini_haskey(Section.c_str(), Key.c_str(), iniFilename.c_str()) != 0; }#if defined INI_REAL    INI_REAL getf(const std::string& Section, const std::string& Key, INI_REAL DefValue=0) const      { return ini_getf(Section.c_str(), Key.c_str(), DefValue, iniFilename.c_str()); }#endif#if ! defined INI_READONLY    bool put(const std::string& Section, const std::string& Key, long Value)      { return ini_putl(Section.c_str(), Key.c_str(), Value, iniFilename.c_str()) != 0; }    bool put(const std::string& Section, const std::string& Key, int Value)      { return ini_putl(Section.c_str(), Key.c_str(), (long)Value, iniFilename.c_str()) != 0; }    bool put(const std::string& Section, const std::string& Key, bool Value)      { return ini_putl(Section.c_str(), Key.c_str(), (long)Value, iniFilename.c_str()) != 0; }    bool put(const std::string& Section, const std::string& Key, const std::string& Value)      { return ini_puts(Section.c_str(), Key.c_str(), Value.c_str(), iniFilename.c_str()) != 0; }    bool put(const std::string& Section, const std::string& Key, const char* Value)      { return ini_puts(Section.c_str(), Key.c_str(), Value, iniFilename.c_str()) != 0; }#if defined INI_REAL    bool put(const std::string& Section, const std::string& Key, INI_REAL Value)      { return ini_putf(Section.c_str(), Key.c_str(), Value, iniFilename.c_str()) != 0; }#endif    bool del(const std::string& Section, const std::string& Key)      { return ini_puts(Section.c_str(), Key.c_str(), 0, iniFilename.c_str()) != 0; }    bool del(const std::string& Section)      { return ini_puts(Section.c_str(), 0, 0, iniFilename.c_str()) != 0; }#endif#if !defined INI_NOBROWSE    bool browse(INI_CALLBACK Callback, void *UserData) const      { return ini_browse(Callback, UserData, iniFilename.c_str()) != 0; }#endif  private:    std::string iniFilename;  };#endif /* __WXWINDOWS__ */#endif /* __cplusplus */#endif /* MININI_H */
 |