Put proper reference IDs in response PDUs properly.
[metaproxy-moved-to-github.git] / src / ex_filter_frontend_net.cpp
index f8cbf5a..18df43d 100644 (file)
@@ -1,57 +1,54 @@
+/* $Id: ex_filter_frontend_net.cpp,v 1.24 2006-01-13 15:09:35 adam Exp $
+   Copyright (c) 2005, Index Data.
+
+%LICENSE%
+ */
+
+#include "config.hpp"
 
 #include <cstdlib>
 #include <iostream>
 #include <stdexcept>
 
-#include "config.hpp"
+#include <boost/program_options.hpp>
+namespace po = boost::program_options;
+
 
+#include "util.hpp"
 #include "filter_frontend_net.hpp"
+#include "filter_z3950_client.hpp"
+#include "filter_virt_db.hpp"
+#include "filter_session_shared.hpp"
+#include "filter_log.hpp"
 
-#include "router.hpp"
+#include "router_chain.hpp"
 #include "session.hpp"
 #include "package.hpp"
 
-class FilterInit: public yp2::Filter {
+class HTTPFilter: public yp2::filter::Base {
 public:
     void process(yp2::Package & package) const {
-
         if (package.session().is_closed())
         {
             // std::cout << "Got Close.\n";
         }
-       
+        
         Z_GDU *gdu = package.request().get();
-        if (gdu)
+        if (gdu && gdu->which == Z_GDU_HTTP_Request)
         {
-            ODR odr = odr_createmem(ODR_ENCODE);
-            switch(gdu->which)
-            {
-            case Z_GDU_Z3950:
-                // std::cout << "Got PDU. Sending init response\n";
-                Z_APDU *apdu = zget_APDU(odr, Z_APDU_initResponse);
-                
-                apdu->u.initResponse->implementationName = "YP2/YAZ";
-                
-                package.response() = apdu;
-                break;
-            case Z_GDU_HTTP_Request:
-                Z_GDU *gdu = z_get_HTTP_Response(odr, 200);
-                Z_HTTP_Response *http_res = gdu->u.HTTP_Response;
-        
-                z_HTTP_header_add(odr, &http_res->headers,
-                                  "Content-Type", "text/plain");
-           
-                http_res->content_buf = 
-                    odr_strdup(odr, "Welcome to YP2");
-                http_res->content_len = strlen(http_res->content_buf);
-
-                package.response() = gdu;
-                break;
-            default:
-                break;
-            } 
-            odr_destroy(odr);
-       }
+            yp2::odr odr;
+            Z_GDU *gdu = z_get_HTTP_Response(odr, 200);
+            Z_HTTP_Response *http_res = gdu->u.HTTP_Response;
+            
+            z_HTTP_header_add(odr, &http_res->headers,
+                              "Content-Type", "text/plain");
+            
+            http_res->content_buf = 
+                odr_strdup(odr, "Welcome to YP2");
+            http_res->content_len = strlen(http_res->content_buf);
+            
+            package.response() = gdu;
+        }
         return package.move();
     };
 };
@@ -60,20 +57,73 @@ int main(int argc, char **argv)
 {
     try 
     {
+        po::options_description desc("Allowed options");
+        desc.add_options()
+            ("help", "produce help message")
+            ("duration", po::value<int>(),
+             "number of seconds for server to exist")
+            ("port", po::value< std::vector<std::string> >(), "listener port")
+            ;
+
+        po::positional_options_description p;
+        p.add("port", -1);
+
+        po::variables_map vm;        
+        po::store(po::command_line_parser(argc, argv).
+                  options(desc).positional(p).run(), vm);
+        po::notify(vm);    
+
+        if (vm.count("help")) {
+            std::cout << desc << "\n";
+            return 1;
+        }
+
+        if (vm.count("port"))
         {
+            std::vector<std::string> ports = 
+                vm["port"].as< std::vector<std::string> >();
+
+            for (size_t i = 0; i<ports.size(); i++)
+                std::cout << "port " << i << " " << ports[i] << "\n";
+
            yp2::RouterChain router;
 
-            // put in frontend first
-            yp2::FilterFrontendNet filter_front;
-            filter_front.listen_address() = "tcp:@:9999";
+            // put frontend filter in router
+            yp2::filter::FrontendNet filter_front;
+            filter_front.ports() = ports;
 
             // 0=no time, >0 timeout in seconds
-            filter_front.listen_duration() = 0;
-           router.rule(filter_front);
+            if (vm.count("duration")) {
+                filter_front.listen_duration() = vm["duration"].as<int>();
+            }
+           router.append(filter_front);
+
+            // put log filter in router
+            yp2::filter::Log filter_log_front("FRONT");
+            router.append(filter_log_front);
+
+            // put Virt db filter in router
+            yp2::filter::Virt_db filter_virt_db;
+            filter_virt_db.add_map_db2vhost("gils", "indexdata.dk/gils",
+                                            "");
+            filter_virt_db.add_map_db2vhost("Default", "localhost:9999/Default",
+                                            "");
+            filter_virt_db.add_map_db2vhost("2", "localhost:9999/Slow", "");
+           router.append(filter_virt_db);
+
+            yp2::filter::SessionShared filter_session_shared;
+            //router.append(filter_session_shared);
+
+            yp2::filter::Log filter_log_back("BACK");
+            router.append(filter_log_back);
+
+            // put HTTP backend filter in router
+            HTTPFilter filter_init;
+           router.append(filter_init);
 
-            // put in a backend
-            FilterInit filter_init;
-           router.rule(filter_init);
+            // put Z39.50 backend filter in router
+            yp2::filter::Z3950Client z3950_client;
+           router.append(z3950_client);
 
             yp2::Session session;
             yp2::Origin origin;
@@ -86,12 +136,14 @@ int main(int argc, char **argv)
         std::cerr << "unknown exception\n";
         std::exit(1);
     }
+    std::exit(0);
 }
 
 /*
  * Local variables:
  * c-basic-offset: 4
  * indent-tabs-mode: nil
+ * c-file-style: "stroustrup"
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab
  */