Optimize Media Layer Proxy
This commit is contained in:
parent
d72c65b7ab
commit
bf937f8c86
@ -1,5 +1,8 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
**2.0.4**
|
||||||
|
* Optimize Media Layer Proxy
|
||||||
|
|
||||||
**2.0.3**
|
**2.0.3**
|
||||||
* Make "kill" Admin Command Print Death Message
|
* Make "kill" Admin Command Print Death Message
|
||||||
|
|
||||||
|
@ -328,6 +328,7 @@ CALL(24, glTexParameteri, void, (GLenum target, GLenum pname, GLint param)) {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Get Size (In Memory) Of Specified Texture
|
||||||
static int get_texture_size(GLsizei width, GLsizei height, GLenum format, GLenum type) {
|
static int get_texture_size(GLsizei width, GLsizei height, GLenum format, GLenum type) {
|
||||||
int multiplier;
|
int multiplier;
|
||||||
if (type == GL_UNSIGNED_BYTE) {
|
if (type == GL_UNSIGNED_BYTE) {
|
||||||
|
@ -62,6 +62,7 @@ int main(int argc, char *argv[]) {
|
|||||||
|
|
||||||
// Send Connection Message
|
// Send Connection Message
|
||||||
write_string((char *) CONNECTED_MSG);
|
write_string((char *) CONNECTED_MSG);
|
||||||
|
flush_write_cache();
|
||||||
|
|
||||||
// Loop
|
// Loop
|
||||||
int running = is_connection_open();
|
int running = is_connection_open();
|
||||||
@ -74,6 +75,9 @@ int main(int argc, char *argv[]) {
|
|||||||
if (!is_connection_open()) {
|
if (!is_connection_open()) {
|
||||||
// Exit
|
// Exit
|
||||||
running = 0;
|
running = 0;
|
||||||
|
} else {
|
||||||
|
// Flush Write Cache
|
||||||
|
flush_write_cache();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
PROXY_ERR("Invalid Method ID: %i", (int) unique_id);
|
PROXY_ERR("Invalid Method ID: %i", (int) unique_id);
|
||||||
|
@ -15,9 +15,13 @@
|
|||||||
} \
|
} \
|
||||||
}
|
}
|
||||||
void safe_read(void *buf, size_t len) {
|
void safe_read(void *buf, size_t len) {
|
||||||
|
// Check Data
|
||||||
if (buf == NULL) {
|
if (buf == NULL) {
|
||||||
PROXY_ERR("%s", "Attempting To Read Into NULL Buffer");
|
PROXY_ERR("%s", "Attempting To Read Into NULL Buffer");
|
||||||
}
|
}
|
||||||
|
// Flush Write Cache
|
||||||
|
flush_write_cache();
|
||||||
|
// Read
|
||||||
size_t to_read = len;
|
size_t to_read = len;
|
||||||
while (to_read > 0) {
|
while (to_read > 0) {
|
||||||
CHECK_CONNECTION();
|
CHECK_CONNECTION();
|
||||||
@ -29,19 +33,58 @@ void safe_read(void *buf, size_t len) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Buffer Writes
|
// Buffer Writes
|
||||||
|
static void *_write_cache = NULL;
|
||||||
|
__attribute__((destructor)) static void _free_write_cache() {
|
||||||
|
if (_write_cache != NULL) {
|
||||||
|
free(_write_cache);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
static size_t _write_cache_size = 0;
|
||||||
|
static size_t _write_cache_position = 0;
|
||||||
void safe_write(void *buf, size_t len) {
|
void safe_write(void *buf, size_t len) {
|
||||||
|
// Check Data
|
||||||
if (buf == NULL) {
|
if (buf == NULL) {
|
||||||
PROXY_ERR("%s", "Attempting To Send NULL Data");
|
PROXY_ERR("%s", "Attempting To Send NULL Data");
|
||||||
}
|
}
|
||||||
size_t to_write = len;
|
// Expand Write Cache If Needed
|
||||||
|
size_t needed_size = _write_cache_position + len;
|
||||||
|
if (_write_cache == NULL) {
|
||||||
|
_write_cache_size = needed_size;
|
||||||
|
_write_cache = malloc(_write_cache_size);
|
||||||
|
} else if (needed_size > _write_cache_size) {
|
||||||
|
_write_cache_size = needed_size;
|
||||||
|
_write_cache = realloc(_write_cache, _write_cache_size);
|
||||||
|
}
|
||||||
|
ALLOC_CHECK(_write_cache);
|
||||||
|
// Copy Data
|
||||||
|
memcpy(_write_cache + _write_cache_position, buf, len);
|
||||||
|
// Advance Position
|
||||||
|
_write_cache_position += len;
|
||||||
|
}
|
||||||
|
// Flush Write Cache
|
||||||
|
void flush_write_cache() {
|
||||||
|
// Check Connection
|
||||||
|
if (!is_connection_open()) {
|
||||||
|
// Connection Closed
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Check Cache
|
||||||
|
if (_write_cache == NULL || _write_cache_position < 1) {
|
||||||
|
// Nothing To Write
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Write
|
||||||
|
size_t to_write = _write_cache_position;
|
||||||
while (to_write > 0) {
|
while (to_write > 0) {
|
||||||
CHECK_CONNECTION();
|
CHECK_CONNECTION();
|
||||||
ssize_t x = write(get_connection_write(), buf + (len - to_write), to_write);
|
ssize_t x = write(get_connection_write(), _write_cache + (_write_cache_position - to_write), to_write);
|
||||||
if (x == -1 && errno != EINTR) {
|
if (x == -1 && errno != EINTR) {
|
||||||
PROXY_ERR("Failed Writing Data To Connection: %s", strerror(errno));
|
PROXY_ERR("Failed Writing Data To Connection: %s", strerror(errno));
|
||||||
}
|
}
|
||||||
to_write -= x;
|
to_write -= x;
|
||||||
}
|
}
|
||||||
|
// Reset
|
||||||
|
_write_cache_position = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read/Write 32-Bit Integers
|
// Read/Write 32-Bit Integers
|
||||||
@ -107,6 +150,9 @@ void write_string(char *str) {
|
|||||||
|
|
||||||
// Close Connection
|
// Close Connection
|
||||||
void close_connection() {
|
void close_connection() {
|
||||||
|
// Flush Write Cache
|
||||||
|
flush_write_cache();
|
||||||
|
// Close
|
||||||
int state_changed = 0;
|
int state_changed = 0;
|
||||||
if (get_connection_read() != -1) {
|
if (get_connection_read() != -1) {
|
||||||
close(get_connection_read());
|
close(get_connection_read());
|
||||||
|
@ -28,6 +28,7 @@ extern "C" {
|
|||||||
// Safely Send/Receive Data From The Connection
|
// Safely Send/Receive Data From The Connection
|
||||||
__attribute__((visibility("internal"))) void safe_read(void *buf, size_t len);
|
__attribute__((visibility("internal"))) void safe_read(void *buf, size_t len);
|
||||||
__attribute__((visibility("internal"))) void safe_write(void *buf, size_t len);
|
__attribute__((visibility("internal"))) void safe_write(void *buf, size_t len);
|
||||||
|
__attribute__((visibility("internal"))) void flush_write_cache();
|
||||||
|
|
||||||
// Read/Write 32-Bit Integers
|
// Read/Write 32-Bit Integers
|
||||||
__attribute__((visibility("internal"))) uint32_t read_int();
|
__attribute__((visibility("internal"))) uint32_t read_int();
|
||||||
|
@ -147,8 +147,22 @@ static std::unordered_map<std::string, unsigned char> &get_unique_ids() {
|
|||||||
void _assign_unique_id(const char *name, unsigned char id) {
|
void _assign_unique_id(const char *name, unsigned char id) {
|
||||||
get_unique_ids()[name] = id;
|
get_unique_ids()[name] = id;
|
||||||
}
|
}
|
||||||
__attribute__((const)) static unsigned char get_unique_id(const char *name) {
|
// Only Compare Strings The First Time, Then Cache C String Addresses
|
||||||
return get_unique_ids()[name]; // Assume ID Exists
|
static std::unordered_map<const char *, unsigned char> &get_unique_ids_cache() {
|
||||||
|
static std::unordered_map<const char *, unsigned char> unique_ids;
|
||||||
|
return unique_ids;
|
||||||
|
}
|
||||||
|
static unsigned char get_unique_id(const char *name) {
|
||||||
|
// Check If C String Is Cached
|
||||||
|
if (get_unique_ids_cache().find(name) != get_unique_ids_cache().end()) {
|
||||||
|
// Use Cache
|
||||||
|
return get_unique_ids_cache()[name];
|
||||||
|
} else {
|
||||||
|
// Compare Strings
|
||||||
|
unsigned char id = get_unique_ids()[name]; // Assume ID Exists
|
||||||
|
get_unique_ids_cache()[name] = id;
|
||||||
|
return id;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// The Proxy Is Single-Threaded
|
// The Proxy Is Single-Threaded
|
||||||
@ -159,6 +173,8 @@ void _start_proxy_call(const char *call_name) {
|
|||||||
write_byte(get_unique_id(call_name));
|
write_byte(get_unique_id(call_name));
|
||||||
}
|
}
|
||||||
void end_proxy_call() {
|
void end_proxy_call() {
|
||||||
|
// Flush Write Cache
|
||||||
|
flush_write_cache();
|
||||||
// Release Proxy
|
// Release Proxy
|
||||||
pthread_mutex_unlock(&proxy_mutex);
|
pthread_mutex_unlock(&proxy_mutex);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user