|
a/src/rcldb/rcldoc.cpp |
|
b/src/rcldb/rcldoc.cpp |
|
... |
|
... |
17 |
|
17 |
|
18 |
#include "rcldoc.h"
|
18 |
#include "rcldoc.h"
|
19 |
#include "debuglog.h"
|
19 |
#include "debuglog.h"
|
20 |
|
20 |
|
21 |
namespace Rcl {
|
21 |
namespace Rcl {
|
|
|
22 |
const string Doc::keyabs("abstract");
|
|
|
23 |
const string Doc::keyanc("rclanc");
|
|
|
24 |
const string Doc::keyapptg("rclaptg");
|
22 |
const string Doc::keyurl("url");
|
25 |
const string Doc::keyau("author");
|
|
|
26 |
const string Doc::keybcknd("rclbes");
|
|
|
27 |
const string Doc::keybght("beagleHitType");
|
|
|
28 |
const string Doc::keycc("collapsecount");
|
23 |
const string Doc::keychildurl("childurl");
|
29 |
const string Doc::keychildurl("childurl");
|
|
|
30 |
const string Doc::keydmt("dmtime");
|
|
|
31 |
const string Doc::keyds("dbytes");
|
|
|
32 |
const string Doc::keyfmt("fmtime");
|
24 |
const string Doc::keyfn("filename");
|
33 |
const string Doc::keyfn("filename");
|
|
|
34 |
const string Doc::keyfs("fbytes");
|
25 |
const string Doc::keyipt("ipath");
|
35 |
const string Doc::keyipt("ipath");
|
26 |
const string Doc::keytp("mtype");
|
36 |
const string Doc::keykw("keywords");
|
27 |
const string Doc::keyfmt("fmtime");
|
37 |
const string Doc::keymd5("md5");
|
28 |
const string Doc::keydmt("dmtime");
|
|
|
29 |
const string Doc::keymt("mtime");
|
38 |
const string Doc::keymt("mtime");
|
30 |
const string Doc::keyoc("origcharset");
|
39 |
const string Doc::keyoc("origcharset");
|
31 |
const string Doc::keypcs("pcbytes");
|
40 |
const string Doc::keypcs("pcbytes");
|
|
|
41 |
const string Doc::keyrr("relevancyrating");
|
32 |
const string Doc::keyfs("fbytes");
|
42 |
const string Doc::keysig("sig");
|
33 |
const string Doc::keyds("dbytes");
|
|
|
34 |
const string Doc::keysz("size");
|
43 |
const string Doc::keysz("size");
|
35 |
const string Doc::keysig("sig");
|
|
|
36 |
const string Doc::keyrr("relevancyrating");
|
|
|
37 |
const string Doc::keycc("collapsecount");
|
|
|
38 |
const string Doc::keyabs("abstract");
|
|
|
39 |
const string Doc::keyau("author");
|
44 |
const string Doc::keytp("mtype");
|
40 |
const string Doc::keytt("title");
|
45 |
const string Doc::keytt("title");
|
41 |
const string Doc::keykw("keywords");
|
|
|
42 |
const string Doc::keymd5("md5");
|
|
|
43 |
const string Doc::keybcknd("rclbes");
|
|
|
44 |
const string Doc::keyudi("rcludi");
|
46 |
const string Doc::keyudi("rcludi");
|
45 |
const string Doc::keyapptg("rclaptg");
|
47 |
const string Doc::keyurl("url");
|
46 |
const string Doc::keybght("beagleHitType");
|
|
|
47 |
|
48 |
|
48 |
void Doc::dump(bool dotext) const
|
49 |
void Doc::dump(bool dotext) const
|
49 |
{
|
50 |
{
|
50 |
LOGDEB(("Rcl::Doc::dump: url: [%s]\n", url.c_str()));
|
51 |
LOGDEB(("Rcl::Doc::dump: url: [%s]\n", url.c_str()));
|
51 |
LOGDEB(("Rcl::Doc::dump: ipath: [%s]\n", ipath.c_str()));
|
52 |
LOGDEB(("Rcl::Doc::dump: ipath: [%s]\n", ipath.c_str()));
|