From 1b9283b18eccbe5b776be0fae8a396228b03f099 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 14 Oct 2014 12:56:24 +0200 Subject: [PATCH] Character set nogotiation for z3950_client MP-574 --- etc/config1.xml | 1 + src/filter_z3950_client.cpp | 38 ++++++++++++++++++++++++++++++++++++ xml/schema/filter_z3950_client.rnc | 3 ++- 3 files changed, 41 insertions(+), 1 deletion(-) diff --git a/etc/config1.xml b/etc/config1.xml index 11a9fec..1ad1be8 100644 --- a/etc/config1.xml +++ b/etc/config1.xml @@ -15,6 +15,7 @@ localhost:9999 true true + utf-8 diff --git a/src/filter_z3950_client.cpp b/src/filter_z3950_client.cpp index 343e33d..eef55ad 100644 --- a/src/filter_z3950_client.cpp +++ b/src/filter_z3950_client.cpp @@ -36,6 +36,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #include #include +#include #include #include @@ -85,6 +86,7 @@ namespace metaproxy_1 { int m_max_sockets; bool m_force_close; bool m_client_ip; + std::string m_charset; std::string m_default_target; std::string m_force_target; boost::mutex m_mutex; @@ -464,6 +466,35 @@ yf::Z3950Client::Assoc *yf::Z3950Client::Rep::get_assoc(Package &package) return as; } +static void set_charset_proposal(ODR odr, Z_InitRequest *req, const char *charset) +{ + Z_OtherInformation **p = &req->otherInfo; + Z_OtherInformationUnit *oi; + + if (*p) + { + int i; + for (i = 0; i < (*p)->num_elements; i++) + { + Z_External *ext = (*p)->list[i]->information.externallyDefinedInfo; + if ((*p)->list[i]->which == Z_OtherInfo_externallyDefinedInfo + && ext && + ext->which == Z_External_charSetandLanguageNegotiation) + return; + } + } + if ((oi = yaz_oi_update(p, odr, 0, 0, 0))) + { + ODR_MASK_SET(req->options, Z_Options_negotiationModel); + oi->which = Z_OtherInfo_externallyDefinedInfo; + oi->information.externallyDefinedInfo = + yaz_set_proposal_charneg_list(odr, ",", + charset, + 0 /* lang */, + 1 /* records included */); + } +} + void yf::Z3950Client::Rep::send_and_receive(Package &package, yf::Z3950Client::Assoc *c) { @@ -536,6 +567,9 @@ void yf::Z3950Client::Rep::send_and_receive(Package &package, 1, pcomb.c_str()); } } + if (apdu->which == Z_APDU_initRequest && m_charset.length() > 0) + set_charset_proposal(odr, apdu->u.initRequest, m_charset.c_str()); + // prepare response c->m_time_elapsed = 0; c->m_waiting = true; @@ -626,6 +660,10 @@ void yf::Z3950Client::configure(const xmlNode *ptr, bool test_only, { m_p->m_client_ip = mp::xml::get_bool(ptr, 0); } + else if (!strcmp((const char *) ptr->name, "charset")) + { + m_p->m_charset = mp::xml::get_text(ptr); + } else { throw mp::filter::FilterException("Bad element " diff --git a/xml/schema/filter_z3950_client.rnc b/xml/schema/filter_z3950_client.rnc index 04c6b64..929e0f0 100644 --- a/xml/schema/filter_z3950_client.rnc +++ b/xml/schema/filter_z3950_client.rnc @@ -10,5 +10,6 @@ filter_z3950_client = element mp:default_target { xsd:string }?, element mp:force_target { xsd:string }?, element mp:force_close { xsd:boolean }?, - element mp:client_ip { xsd:boolean }? + element mp:client_ip { xsd:boolean }?, + element mp:charset { xsd:string }? -- 1.7.10.4