84334cf7db
Replace manual interruption handling by the recent sc_intr mechanism.
60 lines
1.2 KiB
C
60 lines
1.2 KiB
C
#ifndef FILE_HANDLER_H
|
|
#define FILE_HANDLER_H
|
|
|
|
#include "common.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "adb.h"
|
|
#include "util/cbuf.h"
|
|
#include "util/thread.h"
|
|
#include "util/intr.h"
|
|
|
|
typedef enum {
|
|
ACTION_INSTALL_APK,
|
|
ACTION_PUSH_FILE,
|
|
} file_handler_action_t;
|
|
|
|
struct file_handler_request {
|
|
file_handler_action_t action;
|
|
char *file;
|
|
};
|
|
|
|
struct file_handler_request_queue CBUF(struct file_handler_request, 16);
|
|
|
|
struct file_handler {
|
|
char *serial;
|
|
const char *push_target;
|
|
sc_thread thread;
|
|
sc_mutex mutex;
|
|
sc_cond event_cond;
|
|
bool stopped;
|
|
bool initialized;
|
|
struct file_handler_request_queue queue;
|
|
|
|
struct sc_intr intr;
|
|
};
|
|
|
|
bool
|
|
file_handler_init(struct file_handler *file_handler, const char *serial,
|
|
const char *push_target);
|
|
|
|
void
|
|
file_handler_destroy(struct file_handler *file_handler);
|
|
|
|
bool
|
|
file_handler_start(struct file_handler *file_handler);
|
|
|
|
void
|
|
file_handler_stop(struct file_handler *file_handler);
|
|
|
|
void
|
|
file_handler_join(struct file_handler *file_handler);
|
|
|
|
// take ownership of file, and will free() it
|
|
bool
|
|
file_handler_request(struct file_handler *file_handler,
|
|
file_handler_action_t action,
|
|
char *file);
|
|
|
|
#endif
|