X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Fyaz-z-cache.cpp;h=366d19bbf411535b666811386b92743af0c1e9fa;hb=2d21fb7f6fdf924a2dcbb69722425f555b80821f;hp=cb2fac0393fa5ced745a7177e0f20994465be1fd;hpb=2c25ce513613784819fcb216c60d1584402e7907;p=yazpp-moved-to-github.git diff --git a/src/yaz-z-cache.cpp b/src/yaz-z-cache.cpp index cb2fac0..366d19b 100644 --- a/src/yaz-z-cache.cpp +++ b/src/yaz-z-cache.cpp @@ -2,21 +2,23 @@ * Copyright (c) 2002-2004, Index Data. * See the file LICENSE for details. * - * $Id: yaz-z-cache.cpp,v 1.9 2004-03-29 22:46:51 adam Exp $ + * $Id: yaz-z-cache.cpp,v 1.13 2005-06-08 13:28:06 adam Exp $ */ #include #include #include -struct Yaz_RecordCache_Entry { +using namespace yazpp_1; + +struct yazpp_1::RecordCache_Entry { int m_offset; Z_NamePlusRecord *m_record; Z_RecordComposition *m_comp; - Yaz_RecordCache_Entry *m_next; + RecordCache_Entry *m_next; }; -Yaz_RecordCache::Yaz_RecordCache () +RecordCache::RecordCache () { m_mem = nmem_create(); m_entries = 0; @@ -25,17 +27,17 @@ Yaz_RecordCache::Yaz_RecordCache () m_max_size = 200000; } -Yaz_RecordCache::~Yaz_RecordCache () +RecordCache::~RecordCache () { nmem_destroy(m_mem); } -void Yaz_RecordCache::set_max_size(int sz) +void RecordCache::set_max_size(int sz) { m_max_size = sz; } -void Yaz_RecordCache::clear () +void RecordCache::clear () { nmem_destroy(m_mem); m_mem = nmem_create(); @@ -44,7 +46,7 @@ void Yaz_RecordCache::clear () m_searchRequest = 0; } -void Yaz_RecordCache::copy_searchRequest(Z_SearchRequest *sr) +void RecordCache::copy_searchRequest(Z_SearchRequest *sr) { ODR encode = odr_createmem(ODR_ENCODE); ODR decode = odr_createmem(ODR_DECODE); @@ -64,7 +66,7 @@ void Yaz_RecordCache::copy_searchRequest(Z_SearchRequest *sr) odr_destroy(decode); } -void Yaz_RecordCache::copy_presentRequest(Z_PresentRequest *pr) +void RecordCache::copy_presentRequest(Z_PresentRequest *pr) { ODR encode = odr_createmem(ODR_ENCODE); ODR decode = odr_createmem(ODR_DECODE); @@ -84,7 +86,7 @@ void Yaz_RecordCache::copy_presentRequest(Z_PresentRequest *pr) odr_destroy(decode); } -void Yaz_RecordCache::add (ODR o, Z_NamePlusRecordList *npr, int start, +void RecordCache::add (ODR o, Z_NamePlusRecordList *npr, int start, int hits) { if (nmem_total(m_mem) > m_max_size) @@ -115,7 +117,7 @@ void Yaz_RecordCache::add (ODR o, Z_NamePlusRecordList *npr, int start, int i; for (i = 0; inum_records; i++) { - Yaz_RecordCache_Entry *entry = (Yaz_RecordCache_Entry *) + RecordCache_Entry *entry = (RecordCache_Entry *) nmem_malloc(m_mem, sizeof(*entry)); entry->m_record = (Z_NamePlusRecord *) nmem_malloc(m_mem, sizeof(*entry->m_record)); @@ -129,7 +131,7 @@ void Yaz_RecordCache::add (ODR o, Z_NamePlusRecordList *npr, int start, } } -int Yaz_RecordCache::match (Yaz_RecordCache_Entry *entry, +int RecordCache::match (RecordCache_Entry *entry, Odr_oid *syntax, int offset, Z_RecordComposition *comp) { @@ -168,23 +170,23 @@ int Yaz_RecordCache::match (Yaz_RecordCache_Entry *entry, oid_to_dotstring(entry->m_record->u.databaseRecord->direct_reference, mstr1); char mstr2[100]; oid_to_dotstring(syntax, mstr2); - yaz_log(LOG_LOG, "match fail 3 d=%s s=%s", mstr1, mstr2); + yaz_log(YLOG_LOG, "match fail 3 d=%s s=%s", mstr1, mstr2); #endif return 0; } -int Yaz_RecordCache::lookup (ODR o, Z_NamePlusRecordList **npr, +int RecordCache::lookup (ODR o, Z_NamePlusRecordList **npr, int start, int num, Odr_oid *syntax, Z_RecordComposition *comp) { int i; - yaz_log(LOG_DEBUG, "cache lookup start=%d num=%d", start, num); + yaz_log(YLOG_DEBUG, "cache lookup start=%d num=%d", start, num); for (i = 0; im_next) if (match(entry, syntax, start+i, comp)) break; @@ -197,7 +199,7 @@ int Yaz_RecordCache::lookup (ODR o, Z_NamePlusRecordList **npr, odr_malloc(o, num * sizeof(Z_NamePlusRecord *)); for (i = 0; im_next) if (match(entry, syntax, start+i, comp)) break;