-
Notifications
You must be signed in to change notification settings - Fork 0
/
excrate.h
62 lines (49 loc) · 1.52 KB
/
excrate.h
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
/*
* Copyright (C) 2021 Mark Hills <[email protected]>
*
* This file is part of "xwax".
*
* "xwax" is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License, version 3 as
* published by the Free Software Foundation.
*
* "xwax" 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, see <https://www.gnu.org/licenses/>.
*
*/
#ifndef EXCRATE_H
#define EXCRATE_H
#include <poll.h>
#include <sys/types.h>
#include "external.h"
#include "list.h"
#include "library.h"
#include "observer.h"
struct excrate {
struct list excrates;
unsigned int refcount;
const char *search;
struct listing listing, *storage;
struct event completion;
/* State of the external scan process */
struct list rig;
pid_t pid;
int fd;
struct pollfd *pe;
bool terminated;
/* State of reader */
struct rb rb;
};
struct excrate* excrate_acquire_by_scan(const char *script, const char *search,
struct listing *storage);
void excrate_acquire(struct excrate *e);
void excrate_release(struct excrate *e);
/* Used by the rig and main thread */
void excrate_pollfd(struct excrate *tr, struct pollfd *pe);
void excrate_handle(struct excrate *tr);
#endif