Rename from yp2 to metaproxy. The namespace for all definitions
[metaproxy-moved-to-github.git] / src / util.hpp
index 505108e..ee920f1 100644 (file)
@@ -1,5 +1,5 @@
-/* $Id: util.hpp,v 1.2 2005-10-30 17:13:36 adam Exp $
-   Copyright (c) 2005, Index Data.
+/* $Id: util.hpp,v 1.13 2006-03-16 10:40:59 adam Exp $
+   Copyright (c) 2005-2006, Index Data.
 
 %LICENSE%
  */
@@ -9,12 +9,48 @@
 
 #include <yaz/z-core.h>
 #include <string>
+#include <list>
+#include <vector>
 
 #include <boost/utility.hpp>
+#include <boost/scoped_ptr.hpp>
+#include "package.hpp"
 
-namespace yp2 {
-    struct util  {
-       static bool pqf(ODR odr, Z_APDU *apdu, const std::string &q);
+namespace metaproxy_1 {
+    namespace util  {
+       bool pqf(ODR odr, Z_APDU *apdu, const std::string &q);
+
+        std::string zQueryToString(Z_Query *query);
+
+        Z_ReferenceId **get_referenceId(Z_APDU *apdu);
+
+        Z_APDU *create_APDU(ODR odr, int type, Z_APDU *in_apdu);
+
+        bool set_databases_from_zurl(ODR odr, std::string zurl,
+                                     int *db_num, char ***db_strings);
+
+        void split_zurl(std::string zurl, std::string &host,
+                        std::list<std::string> &db);
+
+        int get_vhost_otherinfo(Z_OtherInformation **otherInformation,
+                                bool remove_flag,
+                                std::list<std::string> &vhosts);
+
+        void set_vhost_otherinfo(Z_OtherInformation **otherInformation,
+                                 ODR odr,
+                                 const std::list<std::string> &vhosts);
+
+        void get_init_diagnostics(Z_InitResponse *res,
+                                  int &error_code, std::string &addinfo);
+
+        void get_default_diag(Z_DefaultDiagFormat *r,
+                              int &error_code, std::string &addinfo);
+
+        void piggyback(int smallSetUpperBound,
+                       int largeSetLowerBound,
+                       int mediumSetPresentNumber,
+                       int result_set_size,
+                       int &number_to_present);
     };
 
     class odr : public boost::noncopyable {
@@ -23,10 +59,32 @@ namespace yp2 {
         odr();
         ~odr();
         operator ODR() const;
+        Z_APDU *create_close(Z_APDU *in_apdu, 
+                             int reason, const char *addinfo);
+        Z_APDU *create_initResponse(Z_APDU *in_apdu, 
+                                    int error, const char *addinfo);
+        Z_APDU *create_searchResponse(Z_APDU *in_apdu,
+                                      int error, const char *addinfo);
+        Z_APDU *create_presentResponse(Z_APDU *in_apdu,
+                                       int error, const char *addinfo);
+        Z_APDU *create_scanResponse(Z_APDU *in_apdu,
+                                    int error, const char *addinfo);
+        Z_APDU *create_APDU(int type, Z_APDU *in_apdu);
+        Z_GDU *create_HTTP_Response(metaproxy_1::Session &session,
+                                    Z_HTTP_Request *req, int code);
     private:
         ODR m_odr;
     };
-        
+
+    class PlainFile {
+        class Rep;
+        boost::scoped_ptr<Rep> m_p;
+    public:
+        PlainFile();
+        ~PlainFile();
+        bool open(const std::string &fname);
+        bool getline(std::vector<std::string> &args);
+    };
 }
 #endif
 /*