xwords/relay/configs.h
ehouse 54693142bd Change config class from having a method for every configurable value
to returing values for string keys so adding a new config doesn't mean
modifying that class.  Then add new config for addr passed to bind so
relay can be run to accept http connections from remote machines.
2009-03-02 01:50:14 +00:00

68 lines
1.9 KiB
C

/* -*-mode: C; fill-column: 78; c-basic-offset: 4; -*- */
/*
* Copyright 2005 - 2009 by Eric House (xwords@eehouse.org). All rights
* reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef _CONFIGS_H_
#define _CONFIGS_H_
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <string>
#include <vector>
#include "xwrelay_priv.h"
using namespace std;
class RelayConfigs {
public:
static void InitConfigs( const char* confFile );
static RelayConfigs* GetConfigs();
~RelayConfigs() {}
void GetPorts( vector<int>::const_iterator* iter, vector<int>::const_iterator* end);
int GetLogLevel(void) { return m_logLevel; }
void SetLogLevel(int ll) { m_logLevel = ll; }
bool GetValueFor( const char* key, int* intValue );
bool GetValueFor( const char* key, time_t* timeValue );
bool GetValueFor( const char* key, vector<int>::const_iterator* iter,
vector<int>::const_iterator* end );
bool GetValueFor( const char* key, char* buf, int len );
private:
RelayConfigs( const char* cfile );
ino_t parse( const char* fname, ino_t prev );
time_t m_allConnInterval;
vector<int> m_ports;
int m_logLevel;
map<string,string> m_values;
static RelayConfigs* instance;
};
#endif