X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Futil.hpp;h=5b81d04b1ad7ad377fe09438b37790a04c2c8c47;hb=f47e8cf4cde2ba5465106e219c803e6424a4f177;hp=fa6f96b334fc3e4673a67be945417108ed8363da;hpb=b54482cdb759f092fcd07a9be4fdc8c28009b895;p=metaproxy-moved-to-github.git diff --git a/src/util.hpp b/src/util.hpp index fa6f96b..5b81d04 100644 --- a/src/util.hpp +++ b/src/util.hpp @@ -1,4 +1,4 @@ -/* $Id: util.hpp,v 1.1 2005-10-26 18:53:49 adam Exp $ +/* $Id: util.hpp,v 1.12 2006-01-25 11:27:19 adam Exp $ Copyright (c) 2005, Index Data. %LICENSE% @@ -9,9 +9,81 @@ #include #include +#include +#include + +#include +#include +#include "package.hpp" + 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); + + 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 { + public: + odr(int type); + 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(yp2::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