1 /* This file is part of Metaproxy.
2 Copyright (C) Index Data
4 Metaproxy is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
9 Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 #ifndef YP2_PACKAGE_HPP
20 #define YP2_PACKAGE_HPP
24 #include <yazpp/gdu.h>
28 #include "session.hpp"
30 #include <boost/shared_ptr.hpp>
32 namespace metaproxy_1 {
39 std::ostream& operator<<(std::ostream& os, const metaproxy_1::Package& p);
42 namespace metaproxy_1 {
50 Package(metaproxy_1::Session &session,
51 const metaproxy_1::Origin &origin);
53 /// copy constructor which copies route pos + logger
54 Package & copy_filter(const Package &p);
56 /// copy constructor which only copies the filter chain info
57 void copy_route(const Package &p);
59 /// send Package to it's next Filter defined in Router
62 /// send Package to other route
63 void move(std::string route);
65 /// access session - left val in assignment
66 metaproxy_1::Session & session();
68 /// get function - right val in assignment
69 Origin origin() const;
71 /// set function - left val in assignment
74 /// set function - can be chained
75 Package & router(const Router &router);
77 yazpp_1::GDU &request();
79 yazpp_1::GDU &response();
81 /// get function - right val in assignment
82 Session session() const;
84 void log(const char *module, int level, const char *fmt, ...);
85 void log_write(const char *buf, size_t sz);
86 void log_enable(void);
87 void log_reset(std::string &res);
90 typedef boost::shared_ptr<PackageLogger> PackageLoggerPtr;
96 RoutePos *m_route_pos;
98 PackageLoggerPtr p_logger;
100 yazpp_1::GDU m_request_gdu;
101 yazpp_1::GDU m_response_gdu;
109 * c-file-style: "Stroustrup"
110 * indent-tabs-mode: nil
112 * vim: shiftwidth=4 tabstop=8 expandtab