summaryrefslogtreecommitdiffstats
path: root/debian/htdig/htdig-3.2.0b6/htsearch/ResultList.cc
diff options
context:
space:
mode:
Diffstat (limited to 'debian/htdig/htdig-3.2.0b6/htsearch/ResultList.cc')
-rw-r--r--debian/htdig/htdig-3.2.0b6/htsearch/ResultList.cc151
1 files changed, 151 insertions, 0 deletions
diff --git a/debian/htdig/htdig-3.2.0b6/htsearch/ResultList.cc b/debian/htdig/htdig-3.2.0b6/htsearch/ResultList.cc
new file mode 100644
index 00000000..969c7bb0
--- /dev/null
+++ b/debian/htdig/htdig-3.2.0b6/htsearch/ResultList.cc
@@ -0,0 +1,151 @@
+//
+// ResultList.cc
+//
+// ResultList: A Dictionary indexed on the document id that holds
+// documents found for a search.
+//
+// Part of the ht://Dig package <http://www.htdig.org/>
+// Copyright (c) 1995-2004 The ht://Dig Group
+// For copyright details, see the file COPYING in your distribution
+// or the GNU Library General Public License (LGPL) version 2 or later
+// <http://www.gnu.org/copyleft/lgpl.html>
+//
+// $Id: ResultList.cc,v 1.10 2004/05/28 13:15:24 lha Exp $
+//
+
+#ifdef HAVE_CONFIG_H
+#include "htconfig.h"
+#endif /* HAVE_CONFIG_H */
+
+#include "ResultList.h"
+#include "htString.h"
+
+
+//*****************************************************************************
+// ResultList::ResultList()
+//
+ResultList::ResultList()
+{
+ isIgnore = 0;
+}
+
+
+//*****************************************************************************
+// ResultList::~ResultList()
+//
+ResultList::~ResultList()
+{
+ //Destroy();
+}
+
+
+//*****************************************************************************
+//
+void
+ResultList::add(DocMatch *dm)
+{
+ String t;
+ t << dm->GetId();
+ Add(t, dm);
+}
+
+
+//*****************************************************************************
+//
+DocMatch *
+ResultList::find(int id) const
+{
+ String t;
+ t << id;
+ return (DocMatch *) Find(t);
+}
+
+
+//*****************************************************************************
+//
+DocMatch *
+ResultList::find(char *id) const
+{
+ return (DocMatch *) Find(id);
+}
+
+
+//*****************************************************************************
+//
+void
+ResultList::remove(int id)
+{
+ String t;
+ t << id;
+ Remove(t);
+}
+
+
+//*****************************************************************************
+//
+int
+ResultList::exists(int id) const
+{
+ String t;
+ t << id;
+ return Exists(t);
+}
+
+
+//*****************************************************************************
+//
+HtVector *
+ResultList::elements()
+{
+ HtVector *list = new HtVector(Count() + 1);
+ char *id;
+
+ Start_Get();
+ while ((id = Get_Next()))
+ {
+ list->Add(Find(id));
+ }
+ return list;
+}
+
+void
+ResultList::SetWeight(double weight)
+{
+ HtVector *els = elements();
+ for(int i = 0; i < els->Count(); i++)
+ {
+ DocMatch *match = (DocMatch *)(*els)[i];
+ match->SetWeight(weight);
+ }
+ els->Release();
+}
+
+
+ResultList::ResultList(const ResultList &other)
+{
+ DictionaryCursor c;
+ isIgnore = other.isIgnore;
+ other.Start_Get(c);
+ DocMatch *match = (DocMatch *)other.Get_NextElement(c);
+ while(match)
+ {
+ add(new DocMatch(*match));
+ match = (DocMatch *)other.Get_NextElement(c);
+ }
+}
+
+void
+ResultList::Dump() const
+{
+ cerr << "ResultList {" << endl;
+ cerr << "Ignore: " << isIgnore << " Count: " << Count() << endl;
+ DictionaryCursor c;
+ Start_Get(c);
+ DocMatch *match = (DocMatch *)Get_NextElement(c);
+ while(match)
+ {
+ match->Dump();
+ match = (DocMatch *)Get_NextElement(c);
+ }
+ cerr << "}" << endl;
+}