You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
1.5 KiB
89 lines
1.5 KiB
//
|
|
// WordReference.cc
|
|
//
|
|
// Part of the ht://Dig package <http://www.htdig.org/>
|
|
// Copyright (c) 1999-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: WordReference.cc,v 1.8 2004/05/28 13:15:28 lha Exp $
|
|
//
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "htconfig.h"
|
|
#endif /* HAVE_CONFIG_H */
|
|
|
|
#include "WordReference.h"
|
|
|
|
int WordReference::Merge(const WordReference& other)
|
|
{
|
|
int ret = key.Merge(other.Key());
|
|
record = other.record;
|
|
|
|
return ret;
|
|
}
|
|
|
|
//
|
|
// Set the structure from an ascii representation
|
|
//
|
|
int
|
|
WordReference::Set(const String& buffer)
|
|
{
|
|
StringList fields(buffer, "\t ");
|
|
return SetList(fields);
|
|
}
|
|
|
|
//
|
|
// Set the structure from list of fields
|
|
//
|
|
int
|
|
WordReference::SetList(StringList& fields)
|
|
{
|
|
Clear();
|
|
if(key.SetList(fields) != OK ||
|
|
record.SetList(fields) != OK)
|
|
return NOTOK;
|
|
else
|
|
return OK;
|
|
}
|
|
|
|
//
|
|
// Convert the whole structure to an ascii string description
|
|
//
|
|
int
|
|
WordReference::Get(String& buffer) const
|
|
{
|
|
String tmp;
|
|
buffer.trunc();
|
|
|
|
if(key.Get(tmp) != OK) return NOTOK;
|
|
buffer.append(tmp);
|
|
|
|
if(record.Get(tmp) != OK) return NOTOK;
|
|
buffer.append(tmp);
|
|
|
|
return OK;
|
|
}
|
|
|
|
String
|
|
WordReference::Get() const
|
|
{
|
|
String tmp;
|
|
key.Get(tmp);
|
|
return tmp;
|
|
}
|
|
|
|
int WordReference::Write(FILE* f) const
|
|
{
|
|
String tmp;
|
|
key.Get(tmp);
|
|
fprintf(f, "%s", (char*)tmp);
|
|
return 0;
|
|
}
|
|
|
|
void WordReference::Print() const
|
|
{
|
|
Write(stderr);
|
|
}
|