X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Futil.hpp;h=3ee02497a6411a989c379311bef0432862e86855;hb=2e6b6e87fae70c8acbcd7c428ca511d7095f1d55;hp=505108e830bba9c48ede56e4055cc9200d56084d;hpb=f26cca046b4879a78261ea436c3e21bb3b851b52;p=metaproxy-moved-to-github.git diff --git a/src/util.hpp b/src/util.hpp index 505108e..3ee0249 100644 --- a/src/util.hpp +++ b/src/util.hpp @@ -1,4 +1,4 @@ -/* $Id: util.hpp,v 1.2 2005-10-30 17:13:36 adam Exp $ +/* $Id: util.hpp,v 1.8 2006-01-17 17:55:40 adam Exp $ Copyright (c) 2005, Index Data. %LICENSE% @@ -9,12 +9,33 @@ #include #include +#include #include namespace yp2 { - struct util { - static bool pqf(ODR odr, Z_APDU *apdu, const std::string &q); + namespace util { + bool pqf(ODR odr, Z_APDU *apdu, const std::string &q); + 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 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,6 +44,17 @@ 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); private: ODR m_odr; };