0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/util/miniwebserver.h

60 lines
1.7 KiB
C
Raw Normal View History

2008-11-30 02:01:58 +01:00
// miniwebserver.h
/**
* Copyright (C) 2008 10gen Inc.
2008-12-29 02:28:49 +01:00
*
2008-11-30 02:01:58 +01:00
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
2008-12-29 02:28:49 +01:00
*
2008-11-30 02:01:58 +01:00
* 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 Affero General Public License for more details.
2008-12-29 02:28:49 +01:00
*
2008-11-30 02:01:58 +01:00
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
2009-02-03 19:30:28 +01:00
#include "message.h"
2008-11-30 02:01:58 +01:00
2009-01-14 23:09:51 +01:00
namespace mongo {
class MiniWebServer {
public:
MiniWebServer();
2009-02-18 19:42:32 +01:00
virtual ~MiniWebServer() {}
bool init(const string &ip, int _port);
void run();
virtual void doRequest(
const char *rq, // the full request
string url,
// set these and return them:
string& responseMsg,
int& responseCode,
vector<string>& headers // if completely empty, content-type: text/html will be added
) = 0;
2009-04-01 18:26:31 +02:00
int socket() const { return sock; }
protected:
string parseURL( const char * buf );
string parseMethod( const char * headers );
2009-01-30 21:05:28 +01:00
string getHeader( const char * headers , string name );
void parseParams( map<string,string> & params , string query );
static const char *body( const char *buf );
private:
void accepted(int s);
static bool fullReceive( const char *buf );
2009-04-01 18:26:31 +02:00
int port;
int sock;
};
2009-01-14 23:09:51 +01:00
} // namespace mongo