/usr/include/bobcat/extractorbase is in libbobcat-dev 4.08.02-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #ifndef INCLUDED_BOBCAT_EXTRACTORFORK_
#define INCLUDED_BOBCAT_EXTRACTORFORK_
#include <istream>
#include <bobcat/pipe>
#include <bobcat/ifdstreambuf>
#include <bobcat/exec>
namespace FBB
{
namespace IUO
{
class ExtractorBase: public CloseMode, protected Exec,
private IFdStreambuf, public std::istream
{ // the child process inserts into the pipe,
size_t d_bufSize;
Pipe d_iChildOutPipe; // cout written by the CHILD
public:
ExtractorBase(size_t bufSize = 100);
void execute(std::string const &cmd);
using FBB::Exec::ret;
protected:
Pipe &childOutPipe();
private:
void parentRedirections() override;
};
inline Pipe &ExtractorBase::childOutPipe()
{
return d_iChildOutPipe;
}
} // namespace IUO
} // namespace FBB
#endif
|