58 lines
1.2 KiB
C
58 lines
1.2 KiB
C
#ifndef FILE_HANDLER_H
|
|
#define FILE_HANDLER_H
|
|
|
|
#include <stdbool.h>
|
|
#include <SDL2/SDL_mutex.h>
|
|
#include <SDL2/SDL_thread.h>
|
|
|
|
#include "config.h"
|
|
#include "command.h"
|
|
#include "util/cbuf.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;
|
|
SDL_Thread *thread;
|
|
SDL_mutex *mutex;
|
|
SDL_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 SDL_free() it
|
|
bool
|
|
file_handler_request(struct file_handler *file_handler,
|
|
file_handler_action_t action,
|
|
char *file);
|
|
|
|
#endif
|