X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Futil.hpp;h=3a32cc9466a81ae1cf5cf3bd759468583f364616;hb=9dec54edaf1536d72030e95123c77040fc951185;hp=93caa33eca301b21c089c07ff3abf4fb103687de;hpb=627806c9d1a499273ecea94fbc3e01f4cfc0de8a;p=metaproxy-moved-to-github.git diff --git a/src/util.hpp b/src/util.hpp index 93caa33..3a32cc9 100644 --- a/src/util.hpp +++ b/src/util.hpp @@ -1,5 +1,5 @@ -/* $Id: util.hpp,v 1.6 2006-01-17 13:34:51 adam Exp $ - Copyright (c) 2005, Index Data. +/* $Id: util.hpp,v 1.15 2006-06-09 14:12:13 adam Exp $ + Copyright (c) 2005-2006, Index Data. %LICENSE% */ @@ -10,22 +10,51 @@ #include #include #include +#include #include +#include +#include "package.hpp" -namespace yp2 { +namespace metaproxy_1 { namespace util { + int memcmp2(const void *buf1, int len1, const void *buf2, int len2); + + std::string database_name_normalize(const std::string &s); + 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 { @@ -45,10 +74,21 @@ 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(metaproxy_1::Session &session, + Z_HTTP_Request *req, int code); private: ODR m_odr; }; - + + class PlainFile { + class Rep; + boost::scoped_ptr m_p; + public: + PlainFile(); + ~PlainFile(); + bool open(const std::string &fname); + bool getline(std::vector &args); + }; } #endif /*