mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
4a6bfc086c
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
56 lines
1.7 KiB
C++
56 lines
1.7 KiB
C++
//
|
|
// ApacheRequestHandlerFactory.h
|
|
//
|
|
// Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef ApacheConnector_ApacheRequestHandlerFactory_INCLUDED
|
|
#define ApacheConnector_ApacheRequestHandlerFactory_INCLUDED
|
|
|
|
|
|
#include "ApacheServerRequest.h"
|
|
#include "Poco/Net/HTTPRequestHandlerFactory.h"
|
|
#include "Poco/ClassLoader.h"
|
|
#include "Poco/Mutex.h"
|
|
#include <map>
|
|
|
|
|
|
class ApacheRequestHandlerFactory: public Poco::Net::HTTPRequestHandlerFactory
|
|
{
|
|
public:
|
|
ApacheRequestHandlerFactory();
|
|
/// Constructs the ApacheRequestHandlerFactory
|
|
|
|
~ApacheRequestHandlerFactory();
|
|
/// Destructor of the ApacheRequestHandlerFactory
|
|
|
|
Poco::Net::HTTPRequestHandler* createRequestHandler(const Poco::Net::HTTPServerRequest& request);
|
|
/// Creates a new request handler for the given HTTP request.
|
|
|
|
bool mustHandle(const std::string& uri);
|
|
/// Returns 1 if the given uri must be handled by the
|
|
/// poco_mapper module, 0 otherwise.
|
|
|
|
void handleURIs(const std::string& uris);
|
|
/// Parses the given string for dllName, factoryName and the URIs to handle
|
|
/// by the request-handler
|
|
|
|
void addRequestHandlerFactory(const std::string& dllPath, const std::string& factoryName, const std::string& uri);
|
|
/// Adds the request handler from the given dll with the given name and
|
|
/// registers that handler with the given uri
|
|
|
|
private:
|
|
typedef std::map<std::string, Poco::Net::HTTPRequestHandlerFactory*> RequestHandlerFactories;
|
|
|
|
RequestHandlerFactories _requestHandlers;
|
|
Poco::ClassLoader<Poco::Net::HTTPRequestHandlerFactory> _loader;
|
|
Poco::FastMutex _mutex;
|
|
};
|
|
|
|
|
|
#endif // ApacheConnector_ApacheRequestHandlerFactory_INCLUDED
|