From 9d346aa8894e567d2871125826488c2ca181d0f5 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 9 Apr 2015 15:44:57 +0200 Subject: Further interface prototyping --- web/apache/service | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 web/apache/service (limited to 'web/apache') diff --git a/web/apache/service b/web/apache/service new file mode 100644 index 0000000..3c7a398 --- /dev/null +++ b/web/apache/service @@ -0,0 +1,46 @@ +// file : web/apache/service -*- C++ -*- +// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC +// license : MIT; see accompanying LICENSE file + +#ifndef WEB_APACHE_SERVICE +#define WEB_APACHE_SERVICE + +#include + +#include + +namespace web +{ + namespace apache + { + class service_common + { + //@@ Implementation that calls handle() below goes here. + // + + virtual void + handle (request&, response&, log&) = 0; + }; + + template + class service: public service_common + { + public: + // Note that the module exemplar is stored by-reference. + // + service (const std::string& name, const M& exemplar); + + virtual void + handle (request& rq, response& rs, log& l) + { + M m (exemplar_); + m.handle (rq, rs, l); + } + + private: + const M& exemplar_; + }; + } +} + +#endif // WEB_APACHE_SERVICE -- cgit v1.1