mirror of
				https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
				synced 2025-10-31 02:27:56 +00:00 
			
		
		
		
	 b0581433a7
			
		
	
	b0581433a7
	
	
	
		
			
			fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| //
 | |
| // ApacheRequestHandlerFactory.h
 | |
| //
 | |
| // $Id: //poco/1.4/ApacheConnector/include/ApacheRequestHandlerFactory.h#2 $
 | |
| //
 | |
| // 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
 |