/* * Copyright (c) 2000, 2001, Red Hat, Inc. * * This program 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 Foundation; either version 2 of the License, or * (at your option) any later version. * * A copy of the GNU General Public License can be found at * http://www.gnu.org/ * * Written by DJ Delorie * */ /* The purpose of this file is to download all the files we need to do the installation. */ static char *cvsid = "\n%%% $Id$\n"; #include "win32.h" #include #include "resource.h" #include "msg.h" #include "ini.h" #include "dialog.h" #include "concat.h" #include "geturl.h" #include "state.h" #include "mkdir.h" #include "log.h" #define pi (package[i].info[package[i].trust]) DWORD get_file_size (char *name) { HANDLE h; WIN32_FIND_DATA buf; DWORD ret = 0; h = FindFirstFileA (name, &buf); if (h != INVALID_HANDLE_VALUE) { if (buf.nFileSizeHigh == 0) ret = buf.nFileSizeLow; FindClose (h); } return ret; } static int download_one (char *name, int expected_size) { char *local = name; int errors = 0; DWORD size; if ((size = get_file_size (local)) > 0) if (size == expected_size) return 0; mkdir_p (0, local); if (get_url_to_file (concat (MIRROR_SITE, "/", name, 0), concat (local, ".tmp", 0), expected_size)) { note (IDS_DOWNLOAD_FAILED, name); return 1; } else { size = get_file_size (concat (local, ".tmp", 0)); if (size == expected_size) { log (0, "Downloaded %s", local); rename (concat (local, ".tmp", 0), local); } else { log (0, "Download %s wrong size (%d actual vs %d expected)", local, size, expected_size); note (IDS_DOWNLOAD_SHORT, local, size, expected_size); return 1; } } return 0; } void do_download (HINSTANCE h) { int i; int errors = 0; total_download_bytes = 0; total_download_bytes_sofar = 0; for (i=0; i