Download this file

mh_exec.h    116 lines (100 with data), 3.9 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/* Copyright (C) 2004 J.F.Dockes
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef _MH_EXEC_H_INCLUDED_
#define _MH_EXEC_H_INCLUDED_
#include <string>
#include <vector>
#include "mimehandler.h"
#include "execmd.h"
class HandlerTimeout {};
/**
* Turn external document into internal one by executing an external filter.
*
* The command to execute, and its parameters, are stored in the "params"
* which is built in mimehandler.cpp out of data from the mimeconf file.
*
* As any RecollFilter, a MimeHandlerExec object can be reset
* by calling clear(), and will stay initialised for the same mtype
* (cmd, params etc.)
*/
class MimeHandlerExec : public RecollFilter {
public:
///////////////////////
// Members not reset by clear(). params, cfgFilterOutputMtype and
// cfgFilterOutputCharset
// define what I am. missingHelper is a permanent error
// (no use to try and execute over and over something that's not
// here).
// Parameters: this has been built by our creator, from config file
// data. We always add the file name at the end before actual execution
std::vector<std::string> params;
// Filter output type. The default for ext. filters is to output html,
// but some don't, in which case the type is defined in the config.
std::string cfgFilterOutputMtype;
// Output character set if the above type is not text/html. For
// those filters, the output charset has to be known: ie set by a command
// line option.
std::string cfgFilterOutputCharset;
bool missingHelper;
// Resource management values
int m_filtermaxseconds;
int m_filtermaxmbytes;
////////////////
MimeHandlerExec(RclConfig *cnf, const std::string& id);
virtual bool next_document();
virtual bool skip_to_document(const std::string& ipath);
virtual void clear() {
m_fn.erase();
m_ipath.erase();
RecollFilter::clear();
}
protected:
virtual bool set_document_file_impl(const std::string& mt,
const std::string& file_path);
std::string m_fn;
std::string m_ipath;
// md5 computation excluded by handler name: can't change after init
bool m_handlernomd5;
bool m_hnomd5init;
// If md5 not excluded by handler name, allow/forbid depending on mime
bool m_nomd5;
// Set up the character set metadata fields and possibly transcode
// text/plain output.
// @param charset when called from mh_execm, a possible explicit
// value from the filter (else the data will come from the config)
virtual void handle_cs(const std::string& mt,
const std::string& charset = std::string());
private:
virtual void finaldetails();
};
// This is called periodically by ExeCmd when it is waiting for data,
// or when it does receive some. We may choose to interrupt the
// command.
class MEAdv : public ExecCmdAdvise {
public:
MEAdv(int maxsecs = 900);
// Reset start time to now
void reset();
void setmaxsecs(int maxsecs) {
m_filtermaxseconds = maxsecs;
}
void newData(int n);
private:
time_t m_start;
int m_filtermaxseconds;
};
#endif /* _MH_EXEC_H_INCLUDED_ */