Poco::OSP::Web

class WebServerDispatcher

Library: OSPWeb
Package: Web
Header: Poco/OSP/Web/WebServerDispatcher.h

Description

A WebServerDispatcher is some sort of meta HTTPRequestHandlerFactory. It groups together several other HTTPRequestHandlerFactory instances and distributes requests to them according to the registered request handler extension points (see the WebServerExtensionPoint class).

Inheritance

Direct Base Classes: Poco::OSP::Service

All Base Classes: Poco::OSP::Service, Poco::RefCountedObject

Member Summary

Member Functions: addVirtualPath, authService, authorize, cleanPath, findResource, formatMessage, handleRequest, htmlize, isA, listVirtualPaths, mapPath, normalizePath, onBundleStopping, removeBundle, removeVirtualPath, sendBadRequest, sendForbidden, sendFound, sendInternalError, sendNotAuthorized, sendNotFound, sendResponse, type, virtualPathMappings

Inherited Functions: duplicate, isA, referenceCount, release, type

Nested Classes

struct PathInfo

 more...

struct PathSecurity

Security attributes for a registered path. more...

struct VirtualPath

A VirtualPath struct is used to specify a path mapping for a bundle. more...

Types

PathInfoMap

typedef std::map < std::string, PathInfo > PathInfoMap;

PathMap

typedef std::map < std::string, VirtualPath > PathMap;

RequestHandlerFactoryPtr

typedef Poco::SharedPtr < Poco::Net::HTTPRequestHandlerFactory > RequestHandlerFactoryPtr;

Enumerations

SpecializationMode

A bundle that registers a resource mapping or request handler for a certain path can specify whether other bundles can register subdirectories of this directory.

SM_NONE = 0

No one can register subdirectories

SM_OWNER = 1

Only the owner bundle can register subdirectories

SM_ALL = 2

Everyone can register subdirectories

Constructors

WebServerDispatcher

WebServerDispatcher(
    BundleContext::Ptr pContext,
    MediaTypeMapper::Ptr pMediaTypeMapper,
    const std::string & authServiceName
);

Creates the WebServerDispatcher.

Destructor

~WebServerDispatcher virtual

virtual ~WebServerDispatcher();

Destroys the WebServerDispatcher.

Member Functions

addVirtualPath

void addVirtualPath(
    const VirtualPath & virtualPath
);

Adds the given VirtualPath to the path mapping table.

Throws an ExistsException if a mapping for the given path already exists.

handleRequest

void handleRequest(
    Poco::Net::HTTPServerRequest & request,
    Poco::Net::HTTPServerResponse & response,
    bool secure
);

Handles the given request. Secure specifies whether the request has been sent over a secure (HTTPS) connection.

isA virtual

virtual bool isA(
    const std::type_info & otherType
) const;

See also: Poco::OSP::Service::isA()

listVirtualPaths

void listVirtualPaths(
    PathInfoMap & paths
) const;

Returns a map containing all virtual paths (key) not marked as hidden and their descriptions (value).

removeBundle

void removeBundle(
    Bundle::ConstPtr pBundle
);

Removes all mappings from the given bundle.

removeVirtualPath

void removeVirtualPath(
    const std::string & virtualPath
);

Removes a path mapping from the path mapping table.

Throws a NotFoundException if the given path does not exist.

type virtual

virtual const std::type_info & type() const;

See also: Poco::OSP::Service::type()

virtualPathMappings

void virtualPathMappings(
    PathMap & mappings
) const;

Returns all path mappings. This member function creates a full copy of the internal path map.

authService protected

Poco::OSP::Auth::AuthService::Ptr authService() const;

Returns a pointer to the auth service, if it is available, or null otherwise.

authorize protected

bool authorize(
    Poco::Net::HTTPServerRequest & request,
    const VirtualPath & vPath
) const;

Authorizes the request.

cleanPath protected static

static bool cleanPath(
    std::string & path
);

Removes unnecessary characters (such as trailing dots) from the path and checks for illegal or dangerous characters.

Returns true if the path is okay, false otherwise.

findResource protected

std::istream * findResource(
    Bundle::ConstPtr pBundle,
    const std::string & base,
    const std::string & res,
    const std::string & index,
    std::string & mediaType
) const;

Returns a resource stream for the given path, or a null pointer if no matching resource exists.

formatMessage protected

std::string formatMessage(
    const std::string & messageId,
    const std::string & arg1 = std::string (),
    const std::string & arg2 = std::string ()
);

Reads a message from the bundle.properties resource and replaces placeholders $1 and $2 with arg1 and arg2, respectively.

htmlize protected static

static std::string htmlize(
    const std::string & str
);

Returns a HTML-ized version of the given string.

mapPath protected

const VirtualPath & mapPath(
    const std::string & path
) const;

Maps a URI to a VirtualPath.

Throws a NotFoundException if no suitable mapping can be found.

normalizePath protected static

static std::string normalizePath(
    const std::string & path
);

Creates normalized path for internal storage. The normalized path always starts and ends with a slash.

onBundleStopping protected

void onBundleStopping(
    const void * pSender,
    BundleEvent & ev
);

When a bundle is stopped, all of its request handlers and mappings are automatically disabled.

sendBadRequest protected

void sendBadRequest(
    Poco::Net::HTTPServerRequest & request,
    const std::string & message
);

Sends a 404 Not Found error response.

sendForbidden protected

void sendForbidden(
    Poco::Net::HTTPServerRequest & request,
    const std::string & path
);

Sends a 403 Forbidden error response.

sendFound protected

void sendFound(
    Poco::Net::HTTPServerRequest & request,
    const std::string & path
);

Sends a 302 Found response.

sendInternalError protected

void sendInternalError(
    Poco::Net::HTTPServerRequest & request,
    const std::string & message
);

Sends a 500 Internal Server Error response.

sendNotAuthorized protected

void sendNotAuthorized(
    Poco::Net::HTTPServerRequest & request,
    const std::string & path
);

Sends a 401 Unauthorized error response.

sendNotFound protected

void sendNotFound(
    Poco::Net::HTTPServerRequest & request,
    const std::string & path
);

Sends a 404 Not Found error response.

sendResponse protected

void sendResponse(
    Poco::Net::HTTPServerRequest & request,
    Poco::Net::HTTPResponse::HTTPStatus status,
    const std::string & message
);

Sends a standard status/error response.

Variables

SERVICE_NAME static

static const std::string SERVICE_NAME;