/* * DEBUG: section 93 eCAP Interface */ #include "squid.h" #include #include #include #include "TextException.h" #include "adaptation/ecap/ServiceRep.h" #include "adaptation/ecap/Host.h" const libecap::Name Adaptation::Ecap::protocolInternal("internal", libecap::Name::NextId()); const libecap::Name Adaptation::Ecap::protocolCacheObj("cache_object", libecap::Name::NextId()); const libecap::Name Adaptation::Ecap::protocolIcp("ICP", libecap::Name::NextId()); #if USE_HTCP const libecap::Name Adaptation::Ecap::protocolHtcp("Htcp", libecap::Name::NextId()); #endif /// the host application (i.e., Squid) wrapper registered with libecap static libecap::shared_ptr TheHost; Adaptation::Ecap::Host::Host() { // assign our host-specific IDs to well-known names // this code can run only once libecap::headerReferer.assignHostId(HDR_REFERER); libecap::headerContentLength.assignHostId(HDR_CONTENT_LENGTH); libecap::protocolHttp.assignHostId(PROTO_HTTP); libecap::protocolHttps.assignHostId(PROTO_HTTPS); libecap::protocolFtp.assignHostId(PROTO_FTP); libecap::protocolGopher.assignHostId(PROTO_GOPHER); libecap::protocolWais.assignHostId(PROTO_WAIS); libecap::protocolUrn.assignHostId(PROTO_URN); libecap::protocolWhois.assignHostId(PROTO_WHOIS); protocolInternal.assignHostId(PROTO_INTERNAL); protocolCacheObj.assignHostId(PROTO_CACHEOBJ); protocolIcp.assignHostId(PROTO_ICP); #if USE_HTCP protocolHtcp.assignHostId(PROTO_HTCP); #endif } std::string Adaptation::Ecap::Host::uri() const { return "ecap://squid-cache.org/ecap/hosts/squid"; } void Adaptation::Ecap::Host::describe(std::ostream &os) const { os << PACKAGE_NAME << " v" << PACKAGE_VERSION; } void Adaptation::Ecap::Host::noteService(const libecap::weak_ptr &weak) { Must(!weak.expired()); RegisterAdapterService(weak.lock()); } static int SquidLogLevel(libecap::LogVerbosity lv) { if (lv.critical()) return DBG_CRITICAL; // is it a good idea to ignore other flags? if (lv.large()) return DBG_DATA; // is it a good idea to ignore other flags? if (lv.application()) return DBG_DATA; // is it a good idea to ignore other flags? return 2 + 2*lv.debugging() + 3*lv.operation() + 2*lv.xaction(); } std::ostream * Adaptation::Ecap::Host::openDebug(libecap::LogVerbosity lv) { const int squidLevel = SquidLogLevel(lv); const int squidSection = 93; // XXX: this should be a global constant // XXX: Debug.h should provide this to us if ((Debug::level = squidLevel) <= Debug::Levels[squidSection]) return &Debug::getDebugOut(); else return NULL; } void Adaptation::Ecap::Host::closeDebug(std::ostream *debug) { if (debug) Debug::finishDebug(); } void Adaptation::Ecap::Host::Register() { if (!TheHost) { TheHost.reset(new Adaptation::Ecap::Host); libecap::RegisterHost(TheHost); } }