added explicit flag parameter to Internfile constructeur for helping with beagle queue integration

This commit is contained in:
dockes 2009-11-10 09:39:13 +00:00
parent 4b8166e86f
commit eea2b1fec5
4 changed files with 40 additions and 17 deletions

View File

@ -168,23 +168,34 @@ void FileInterner::tmpcleanup()
// processed by the first call to internfile(). // processed by the first call to internfile().
FileInterner::FileInterner(const string &f, const struct stat *stp, FileInterner::FileInterner(const string &f, const struct stat *stp,
RclConfig *cnf, RclConfig *cnf,
const string& td, const string *imime) const string& td, int flags, const string *imime)
: m_cfg(cnf), m_fn(f), m_forPreview(imime?true:false), m_tdir(td) : m_cfg(cnf), m_fn(f), m_forPreview(flags & FIF_forPreview),
m_tdir(td)
{ {
string l_mime;
bool usfci = false; bool usfci = false;
cnf->getConfParam("usesystemfilecommand", &usfci); cnf->getConfParam("usesystemfilecommand", &usfci);
LOGDEB(("FileInterner::FileInterner: [%s] mime [%s] preview %d\n",
f.c_str(), imime?imime->c_str() : "(null)", m_forPreview));
// We need to run mime type identification in any case to check if (flags & FIF_doUseInputMimetype) {
// for a compressed file. if (!imime) {
string l_mime = mimetype(m_fn, stp, m_cfg, usfci); LOGERR(("FileInterner::FileInterner: told to use null imime\n"));
return;
}
l_mime = *imime;
} else {
LOGDEB(("FileInterner::FileInterner: [%s] mime [%s] preview %d\n",
f.c_str(), imime?imime->c_str() : "(null)", m_forPreview));
// If identification fails, try to use the input parameter. This // We need to run mime type identification in any case to check
// is then normally not a compressed type (it's the mime type from // for a compressed file.
// the db), and is only set when previewing, not for indexing l_mime = mimetype(m_fn, stp, m_cfg, usfci);
if (l_mime.empty() && imime)
l_mime = *imime; // If identification fails, try to use the input parameter. This
// is then normally not a compressed type (it's the mime type from
// the db), and is only set when previewing, not for indexing
if (l_mime.empty() && imime)
l_mime = *imime;
}
if (!l_mime.empty()) { if (!l_mime.empty()) {
// Has mime: check for a compressed file. If so, create a // Has mime: check for a compressed file. If so, create a
@ -702,7 +713,8 @@ class DirWiper {
// Extract subdoc out of multidoc into temporary file. // Extract subdoc out of multidoc into temporary file.
// We do the usual internfile stuff: create a temporary directory, // We do the usual internfile stuff: create a temporary directory,
// then create an interner and call internfile. // then create an interner and call internfile. The target mtype is set to
// the input mtype, so that no data conversion is performed.
// We then write the data out of the resulting document into the output file. // We then write the data out of the resulting document into the output file.
// There are two temporary objects: // There are two temporary objects:
// - The internfile temporary directory gets destroyed before we // - The internfile temporary directory gets destroyed before we
@ -726,7 +738,10 @@ bool FileInterner::idocToFile(TempFile& otemp, const string& tofile,
return false; return false;
DirWiper wiper(tmpdir); DirWiper wiper(tmpdir);
FileInterner interner(fn, &st, cnf, tmpdir, &mtype); // We set FIF_forPreview for consistency with the previous version
// which determined this by looking at mtype!=null. Probably
// doesn't change anything in this case.
FileInterner interner(fn, &st, cnf, tmpdir, FIF_forPreview, &mtype);
interner.setTargetMType(mtype); interner.setTargetMType(mtype);
Rcl::Doc doc; Rcl::Doc doc;
string mipath = ipath; string mipath = ipath;

View File

@ -54,6 +54,9 @@ class FileInterner {
*/ */
static bool getEnclosing(const string &url, const string &ipath, static bool getEnclosing(const string &url, const string &ipath,
string &eurl, string &eipath, string& udi); string &eurl, string &eipath, string& udi);
/// Operation modifier flags
enum Flags {FIF_none, FIF_forPreview, FIF_doUseInputMimetype};
/** /**
* Identify and possibly decompress file, create adequate * Identify and possibly decompress file, create adequate
* handler. The mtype parameter is only set when the object is * handler. The mtype parameter is only set when the object is
@ -70,7 +73,7 @@ class FileInterner {
* to indicate that this object is for previewing (not indexing). * to indicate that this object is for previewing (not indexing).
*/ */
FileInterner(const string &fn, const struct stat *stp, FileInterner(const string &fn, const struct stat *stp,
RclConfig *cnf, const string& td, RclConfig *cnf, const string& td, int flags,
const string *mtype = 0); const string *mtype = 0);
~FileInterner(); ~FileInterner();

View File

@ -249,7 +249,10 @@ void RecollProtocol::showPreview(const Rcl::Doc& doc)
return; return;
} }
o_rclconfig->setKeyDir(path_getfather(fn)); o_rclconfig->setKeyDir(path_getfather(fn));
FileInterner interner(fn, &st, o_rclconfig, tmpdir, &doc.mimetype); FileInterner interner(fn, &st, o_rclconfig, tmpdir,
FileInterner::FIF_forPreview |
FileInterner::FIF_doUseInputMimetype,
&doc.mimetype);
Rcl::Doc fdoc; Rcl::Doc fdoc;
string ipath = doc.ipath; string ipath = doc.ipath;
if (!interner.internfile(fdoc, ipath)) { if (!interner.internfile(fdoc, ipath)) {

View File

@ -675,7 +675,9 @@ class LoadThread : public QThread {
return; return;
} }
FileInterner interner(filename, &st, rclconfig, tmpdir, mtype); FileInterner interner(filename, &st, rclconfig, tmpdir,
FileInterner::FIF_forPreview,
mtype);
// We don't set the interner's target mtype to html because we // We don't set the interner's target mtype to html because we
// do want the html filter to do its work: we won't use the // do want the html filter to do its work: we won't use the
// text, but we need the conversion to utf-8 // text, but we need the conversion to utf-8