2008-11-30 02:01:58 +01:00
|
|
|
// miniwebserver.h
|
|
|
|
|
2009-10-27 20:58:27 +01:00
|
|
|
/* Copyright 2009 10gen Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2008-11-30 02:01:58 +01:00
|
|
|
|
|
|
|
#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 {
|
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
class MiniWebServer {
|
|
|
|
public:
|
|
|
|
MiniWebServer();
|
2009-02-18 19:42:32 +01:00
|
|
|
virtual ~MiniWebServer() {}
|
2009-01-15 16:17:11 +01:00
|
|
|
|
2009-04-29 20:14:51 +02:00
|
|
|
bool init(const string &ip, int _port);
|
2009-01-15 16:17:11 +01:00
|
|
|
void run();
|
|
|
|
|
|
|
|
virtual void doRequest(
|
|
|
|
const char *rq, // the full request
|
|
|
|
string url,
|
|
|
|
// set these and return them:
|
|
|
|
string& responseMsg,
|
|
|
|
int& responseCode,
|
2009-05-13 18:28:59 +02:00
|
|
|
vector<string>& headers, // if completely empty, content-type: text/html will be added
|
|
|
|
const SockAddr &from
|
2009-01-15 16:17:11 +01:00
|
|
|
) = 0;
|
|
|
|
|
2009-04-01 18:26:31 +02:00
|
|
|
int socket() const { return sock; }
|
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
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 );
|
2009-01-15 16:17:11 +01:00
|
|
|
void parseParams( map<string,string> & params , string query );
|
|
|
|
static const char *body( const char *buf );
|
|
|
|
|
|
|
|
private:
|
2009-05-13 18:28:59 +02:00
|
|
|
void accepted(int s, const SockAddr &from);
|
2009-01-15 16:17:11 +01:00
|
|
|
static bool fullReceive( const char *buf );
|
|
|
|
|
2009-04-01 18:26:31 +02:00
|
|
|
int port;
|
2009-01-15 16:17:11 +01:00
|
|
|
int sock;
|
|
|
|
};
|
2009-01-14 23:09:51 +01:00
|
|
|
|
|
|
|
} // namespace mongo
|