X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Futil.hpp;h=45add313aa3253163b8be4b28001d3c15461517f;hb=743341841a21a695d08c99b27a30329119030db5;hp=2ab14a179c28f0e330bc56c3f247b8dc96b1c994;hpb=df8db6d8a539fa6d793aeb541f7c64d625c91d42;p=metaproxy-moved-to-github.git diff --git a/src/util.hpp b/src/util.hpp index 2ab14a1..45add31 100644 --- a/src/util.hpp +++ b/src/util.hpp @@ -1,4 +1,4 @@ -/* $Id: util.hpp,v 1.4 2006-01-13 15:09:35 adam Exp $ +/* $Id: util.hpp,v 1.11 2006-01-20 22:38:12 marc Exp $ Copyright (c) 2005, Index Data. %LICENSE% @@ -9,14 +9,47 @@ #include #include +#include #include +#include "package.hpp" + namespace yp2 { 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 &db); + + int get_vhost_otherinfo(Z_OtherInformation **otherInformation, + bool remove_flag, + std::list &vhosts); + + void set_vhost_otherinfo(Z_OtherInformation **otherInformation, + ODR odr, + const std::list &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 { @@ -36,6 +69,8 @@ namespace yp2 { 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(yp2::Session &session, + Z_HTTP_Request *req, int code); private: ODR m_odr; };