f6320c7e31
The goal is to expose a consistent API for system tools, and paves the way to make the "core" independant of SDL in the future.
58 lines
1.2 KiB
C
58 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"
|
|
|
|
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;
|
|
process_t current_process;
|
|
struct file_handler_request_queue queue;
|
|
};
|
|
|
|
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
|