X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Futil.hpp;h=35eb7338eac3dfdb374178ae9e96e0d5767c30b3;hb=1e61b0aa05e2351e33d909f7503eaf936a2d9bb0;hp=c9053041dbce832ecf1685d1b66512a458b33ff5;hpb=25a823f54ee7b7e0d8000194cd0a6440627b7212;p=metaproxy-moved-to-github.git diff --git a/src/util.hpp b/src/util.hpp index c905304..35eb733 100644 --- a/src/util.hpp +++ b/src/util.hpp @@ -1,7 +1,7 @@ -/* $Id: util.hpp,v 1.9 2006-01-18 10:57:27 adam Exp $ - Copyright (c) 2005, Index Data. +/* $Id: util.hpp,v 1.16 2006-06-10 14:29:13 adam Exp $ + Copyright (c) 2005-2006, Index Data. -%LICENSE% + See the LICENSE file for details */ #ifndef YP2_UTIL_HPP @@ -10,27 +10,43 @@ #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); @@ -58,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 /*