/* RetroArch - A frontend for libretro. * Copyright (C) 2011-2015 - Daniel De Matteis * * RetroArch is free software: you can redistribute it and/or modify it under the terms * of the GNU General Public License as published by the Free Software Found- * ation, either version 3 of the License, or (at your option) any later version. * * RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with RetroArch. * If not, see . */ #include #include #include #include #include #include #include "../file_ops.h" #include "../general.h" #include "../runloop_data.h" #include "tasks.h" extern char core_updater_path[PATH_MAX_LENGTH]; int cb_core_updater_list(void *data_, size_t len); #ifdef HAVE_ZLIB static int zlib_extract_core_callback(const char *name, const char *valid_exts, const uint8_t *cdata, unsigned cmode, uint32_t csize, uint32_t size, uint32_t crc32, void *userdata) { char path[PATH_MAX_LENGTH]; /* Make directory */ fill_pathname_join(path, (const char*)userdata, name, sizeof(path)); path_basedir(path); if (!path_mkdir(path)) { RARCH_ERR("Failed to create directory: %s.\n", path); return 0; } /* Ignore directories. */ if (name[strlen(name) - 1] == '/' || name[strlen(name) - 1] == '\\') return 1; fill_pathname_join(path, (const char*)userdata, name, sizeof(path)); RARCH_LOG("path is: %s, CRC32: 0x%x\n", path, crc32); if (!zlib_perform_mode(path, valid_exts, cdata, cmode, csize, size, crc32, userdata)) { if (cmode == 0) { RARCH_ERR("Failed to write file: %s.\n", path); return 0; } goto error; } return 1; error: RARCH_ERR("Failed to deflate to: %s.\n", path); return 0; } #endif static int cb_core_updater_download(void *data, size_t len) { const char* file_ext = NULL; char output_path[PATH_MAX_LENGTH], msg[PATH_MAX_LENGTH]; settings_t *settings = config_get_ptr(); if (!data) return -1; fill_pathname_join(output_path, settings->libretro_directory, core_updater_path, sizeof(output_path)); if (!write_file(output_path, data, len)) return -1; snprintf(msg, sizeof(msg), "Download complete: %s.", core_updater_path); rarch_main_msg_queue_push(msg, 1, 90, true); #ifdef HAVE_ZLIB file_ext = path_get_extension(output_path); if (!settings->network.buildbot_auto_extract_archive) return 0; if (!strcasecmp(file_ext,"zip")) { if (!zlib_parse_file(output_path, NULL, zlib_extract_core_callback, (void*)settings->libretro_directory)) RARCH_LOG("Could not process ZIP file.\n"); } #endif return 0; } static int rarch_main_data_http_con_iterate_transfer(http_handle_t *http) { if (!net_http_connection_iterate(http->connection.handle)) return -1; return 0; } static int rarch_main_data_http_conn_iterate_transfer_parse(http_handle_t *http) { if (net_http_connection_done(http->connection.handle)) { if (http->connection.handle && http->connection.cb) http->connection.cb(http, 0); } net_http_connection_free(http->connection.handle); http->connection.handle = NULL; return 0; } static int rarch_main_data_http_iterate_transfer_parse(http_handle_t *http) { size_t len = 0; char *data = (char*)net_http_data(http->handle, &len, false); if (data && http->cb) http->cb(data, len); net_http_delete(http->handle); http->handle = NULL; msg_queue_clear(http->msg_queue); return 0; } static int cb_http_conn_default(void *data_, size_t len) { http_handle_t *http = (http_handle_t*)data_; if (!http) return -1; http->handle = net_http_new(http->connection.handle); if (!http->handle) { RARCH_ERR("Could not create new HTTP session handle.\n"); return -1; } http->cb = NULL; if (http->connection.elem1[0] != '\0') { if (!strcmp(http->connection.elem1, "cb_core_updater_download")) http->cb = &cb_core_updater_download; if (!strcmp(http->connection.elem1, "cb_core_updater_list")) http->cb = &cb_core_updater_list; } return 0; } /** * rarch_main_data_http_iterate_poll: * * Polls HTTP message queue to see if any new URLs * are pending. * * If handle is freed, will set up a new http handle. * The transfer will be started on the next frame. * * Returns: 0 when an URL has been pulled and we will * begin transferring on the next frame. Returns -1 if * no HTTP URL has been pulled. Do nothing in that case. **/ static int rarch_main_data_http_iterate_poll(http_handle_t *http) { char elem0[PATH_MAX_LENGTH]; struct string_list *str_list = NULL; const char *url = msg_queue_pull(http->msg_queue); if (!url) return -1; /* Can only deal with one HTTP transfer at a time for now */ if (http->handle) return -1; str_list = string_split(url, "|"); if (!str_list) return -1; if (str_list->size > 0) strlcpy(elem0, str_list->elems[0].data, sizeof(elem0)); http->connection.handle = net_http_connection_new(elem0); if (!http->connection.handle) return -1; http->connection.cb = &cb_http_conn_default; if (str_list->size > 1) strlcpy(http->connection.elem1, str_list->elems[1].data, sizeof(http->connection.elem1)); string_list_free(str_list); return 0; } /** * rarch_main_data_http_iterate_transfer: * * Resumes HTTP transfer update. * * Returns: 0 when finished, -1 when we should continue * with the transfer on the next frame. **/ static int rarch_main_data_http_iterate_transfer(void *data) { http_handle_t *http = (http_handle_t*)data; size_t pos = 0, tot = 0; int percent = 0; if (!net_http_update(http->handle, &pos, &tot)) { if(tot != 0) percent=(unsigned long long)pos*100/(unsigned long long)tot; else percent=0; if (percent > 0) { char tmp[PATH_MAX_LENGTH]; snprintf(tmp, sizeof(tmp), "Download progress: %d%%", percent); data_runloop_osd_msg(tmp, sizeof(tmp)); } return -1; } return 0; } void rarch_main_data_http_iterate(bool is_thread, void *data) { data_runloop_t *runloop = (data_runloop_t*)data; http_handle_t *http = runloop ? &runloop->http : NULL; if (!http) return; switch (http->status) { case HTTP_STATUS_CONNECTION_TRANSFER_PARSE: rarch_main_data_http_conn_iterate_transfer_parse(http); http->status = HTTP_STATUS_TRANSFER; break; case HTTP_STATUS_CONNECTION_TRANSFER: if (!rarch_main_data_http_con_iterate_transfer(http)) http->status = HTTP_STATUS_CONNECTION_TRANSFER_PARSE; break; case HTTP_STATUS_TRANSFER_PARSE: rarch_main_data_http_iterate_transfer_parse(http); http->status = HTTP_STATUS_POLL; break; case HTTP_STATUS_TRANSFER: if (!rarch_main_data_http_iterate_transfer(http)) http->status = HTTP_STATUS_TRANSFER_PARSE; break; case HTTP_STATUS_POLL: default: if (rarch_main_data_http_iterate_poll(http) == 0) http->status = HTTP_STATUS_CONNECTION_TRANSFER; break; } }