Working configuable HTTP File filter.. This will allows us to refer to
authorAdam Dickmeiss <adam@indexdata.dk>
Wed, 25 Jan 2006 11:28:23 +0000 (11:28 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Wed, 25 Jan 2006 11:28:23 +0000 (11:28 +0000)
.js/.xsl files for SRU implementations and documentation..

etc/config4.xml [new file with mode: 0644]
src/filter_http_file.cpp
src/filter_http_file.hpp

diff --git a/etc/config4.xml b/etc/config4.xml
new file mode 100644 (file)
index 0000000..d28bf03
--- /dev/null
@@ -0,0 +1,25 @@
+<?xml version="1.0"?>
+<!-- $Id: config4.xml,v 1.1 2006-01-25 11:28:23 adam Exp $ -->
+<yp2 xmlns="http://indexdata.dk/yp2/config/1">
+  <start route="start"/>
+  <!-- sample config which illustrates the use of http_file filter.. -->
+  <routes>  
+    <route id="start">
+      <filter type="frontend_net">
+        <threads>10</threads>
+        <port>@:9000</port>
+      </filter>
+      <filter type="log">
+        <message>M</message>
+      </filter>
+      <filter type="http_file">
+      <mimetypes>/etc/mime.types</mimetypes>
+      <area>
+        <documentroot>.</documentroot>
+       <prefix>/etc</prefix>
+      </area>
+      </filter>
+    </route>
+  </routes>
+</yp2>
+
index 533f575..d83af33 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: filter_http_file.cpp,v 1.1 2006-01-19 21:44:26 adam Exp $
+/* $Id: filter_http_file.cpp,v 1.2 2006-01-25 11:28:23 adam Exp $
    Copyright (c) 2005, Index Data.
 
 %LICENSE%
@@ -66,6 +66,7 @@ yf::HttpFile::Mime::Mime(std::string type) : m_type(type) {}
 
 yf::HttpFile::HttpFile() : m_p(new Rep)
 {
+#if 0
     m_p->m_ext_to_map["html"] = Mime("text/html");
     m_p->m_ext_to_map["htm"] = Mime("text/html");
     m_p->m_ext_to_map["png"] = Mime("image/png");
@@ -74,11 +75,13 @@ yf::HttpFile::HttpFile() : m_p(new Rep)
     m_p->m_ext_to_map["asc"] = Mime("text/plain");
     m_p->m_ext_to_map["xml"] = Mime("application/xml");
     m_p->m_ext_to_map["xsl"] = Mime("application/xml");
-
+#endif
+#if 0
     Area a;
     a.m_url_path_prefix = "/etc";
-    a.m_file_root = "..";
+    a.m_file_root = ".";
     m_p->m_area_list.push_back(a);
+#endif
 }
 
 yf::HttpFile::~HttpFile()
@@ -179,7 +182,8 @@ void yf::HttpFile::Rep::fetch_uri(yp2::Session &session,
 
             if (path.compare(0, l, it->m_url_path_prefix) == 0)
             {
-                std::string fname = it->m_file_root + path;
+                std::string fname = it->m_file_root + path.substr(l);
+                std::cout << "fname = " << fname << "\n";
                 fetch_file(session, req, fname, package);
                 return;
             }
@@ -199,6 +203,67 @@ void yf::HttpFile::process(yp2::Package &package) const
         package.move();
 }
 
+void yp2::filter::HttpFile::configure(const xmlNode * ptr)
+{
+    for (ptr = ptr->children; ptr; ptr = ptr->next)
+    {
+        if (ptr->type != XML_ELEMENT_NODE)
+            continue;
+        if (!strcmp((const char *) ptr->name, "mimetypes"))
+        {
+            std::string fname = yp2::xml::get_text(ptr);
+
+            yp2::PlainFile f;
+
+            if (!f.open(fname))
+            {
+                throw yp2::filter::FilterException
+                    ("Can not open mime types file " + fname);
+            }
+            
+            std::vector<std::string> args;
+            while (f.getline(args))
+            {
+                size_t i;
+                for (i = 1; i<args.size(); i++)
+                    m_p->m_ext_to_map[args[i]] = args[0];
+            }
+        }
+        else if (!strcmp((const char *) ptr->name, "area"))
+        {
+            xmlNode *a_node = ptr->children;
+            Area a;
+            for (; a_node; a_node = a_node->next)
+            {
+                if (a_node->type != XML_ELEMENT_NODE)
+                    continue;
+                
+                if (yp2::xml::is_element_yp2(a_node, "documentroot"))
+                    a.m_file_root = yp2::xml::get_text(a_node);
+                else if (yp2::xml::is_element_yp2(a_node, "prefix"))
+                    a.m_url_path_prefix = yp2::xml::get_text(a_node);
+                else
+                    throw yp2::filter::FilterException
+                        ("Bad element " 
+                         + std::string((const char *) a_node->name)
+                         + " in area section"
+                            );
+            }
+            if (a.m_file_root.length())
+            {
+                m_p->m_area_list.push_back(a);
+            }
+        }
+        else
+        {
+            throw yp2::filter::FilterException
+                ("Bad element " 
+                 + std::string((const char *) ptr->name)
+                 + " in virt_db filter");
+        }
+    }
+}
+
 static yp2::filter::Base* filter_creator()
 {
     return new yp2::filter::HttpFile;
index b0ebdd4..7dd6282 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: filter_http_file.hpp,v 1.1 2006-01-19 21:44:26 adam Exp $
+/* $Id: filter_http_file.hpp,v 1.2 2006-01-25 11:28:23 adam Exp $
    Copyright (c) 2005, Index Data.
 
 %LICENSE%
@@ -22,6 +22,7 @@ namespace yp2 {
             HttpFile();
             ~HttpFile();
             void process(yp2::Package & package) const;
+            void configure(const xmlNode * ptr);
         };
     }
 }