mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-15 06:12:53 +00:00
a0a65b3c4d
Replace cbuf by VecDeque in file_pusher. As a side-effect, the new implementation does not limit the queue to an arbitrary value.
59 lines
1.2 KiB
C
59 lines
1.2 KiB
C
#ifndef SC_FILE_PUSHER_H
|
|
#define SC_FILE_PUSHER_H
|
|
|
|
#include "common.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "util/intr.h"
|
|
#include "util/thread.h"
|
|
#include "util/vecdeque.h"
|
|
|
|
enum sc_file_pusher_action {
|
|
SC_FILE_PUSHER_ACTION_INSTALL_APK,
|
|
SC_FILE_PUSHER_ACTION_PUSH_FILE,
|
|
};
|
|
|
|
struct sc_file_pusher_request {
|
|
enum sc_file_pusher_action action;
|
|
char *file;
|
|
};
|
|
|
|
struct sc_file_pusher_request_queue SC_VECDEQUE(struct sc_file_pusher_request);
|
|
|
|
struct sc_file_pusher {
|
|
char *serial;
|
|
const char *push_target;
|
|
sc_thread thread;
|
|
sc_mutex mutex;
|
|
sc_cond event_cond;
|
|
bool stopped;
|
|
bool initialized;
|
|
struct sc_file_pusher_request_queue queue;
|
|
|
|
struct sc_intr intr;
|
|
};
|
|
|
|
bool
|
|
sc_file_pusher_init(struct sc_file_pusher *fp, const char *serial,
|
|
const char *push_target);
|
|
|
|
void
|
|
sc_file_pusher_destroy(struct sc_file_pusher *fp);
|
|
|
|
bool
|
|
sc_file_pusher_start(struct sc_file_pusher *fp);
|
|
|
|
void
|
|
sc_file_pusher_stop(struct sc_file_pusher *fp);
|
|
|
|
void
|
|
sc_file_pusher_join(struct sc_file_pusher *fp);
|
|
|
|
// take ownership of file, and will free() it
|
|
bool
|
|
sc_file_pusher_request(struct sc_file_pusher *fp,
|
|
enum sc_file_pusher_action action, char *file);
|
|
|
|
#endif
|