blob: 2dc55f6d7acb2f051aaa5b652a65e0b16d9af471 (
plain)
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
|
/*
* Unix Command Execution
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_UNIX_CMD_H__
#define BOTAN_UNIX_CMD_H__
#include <botan/types.h>
#include <botan/data_src.h>
#include <string>
#include <vector>
namespace Botan {
/**
* Unix Program Info
*/
struct Unix_Program
{
/**
* @param n is the name and arguments of what we are going run
* @param p is the priority level (lower prio numbers get polled first)
*/
Unix_Program(const char* n, u32bit p)
{ name_and_args = n; priority = p; working = true; }
/**
* The name and arguments for this command
*/
std::string name_and_args;
/**
* Priority: we scan from low to high
*/
u32bit priority;
/**
* Does this source seem to be working?
*/
bool working;
};
/**
* Command Output DataSource
*/
class DataSource_Command : public DataSource
{
public:
u32bit read(byte[], u32bit);
u32bit peek(byte[], u32bit, u32bit) const;
bool end_of_data() const;
std::string id() const;
int fd() const;
DataSource_Command(const std::string&,
const std::vector<std::string>& paths);
~DataSource_Command();
private:
void create_pipe(const std::vector<std::string>&);
void shutdown_pipe();
const u32bit MAX_BLOCK_USECS, KILL_WAIT;
std::vector<std::string> arg_list;
struct pipe_wrapper* pipe;
};
}
#endif
|