1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
|
/* Copyright (C) 2009 Wildfire Games.
* This file is part of 0 A.D.
*
* 0 A.D. 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.
*
* 0 A.D. 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 0 A.D. If not, see <http://www.gnu.org/licenses/>.
*/
// FIFO queue of load 'functors' with time limit; enables displaying
// load progress without resorting to threads (complicated).
#include "precompiled.h"
#include <deque>
#include <numeric>
#include "lib/timer.h"
#include "CStr.h"
#include "Loader.h"
#include "LoaderThunks.h"
// set by LDR_EndRegistering; may be 0 during development when
// estimated task durations haven't yet been set.
static double total_estimated_duration;
// total time spent loading so far, set by LDR_ProgressiveLoad.
// we need a persistent counter so it can be reset after each load.
// this also accumulates less errors than:
// progress += task_estimated / total_estimated.
static double estimated_duration_tally;
// needed for report of how long each individual task took.
static double task_elapsed_time;
// main purpose is to indicate whether a load is in progress, so that
// LDR_ProgressiveLoad can return 0 iff loading just completed.
// the REGISTERING state allows us to detect 2 simultaneous loads (bogus);
// FIRST_LOAD is used to skip the first timeslice (see LDR_ProgressiveLoad).
static enum
{
IDLE,
REGISTERING,
FIRST_LOAD,
LOADING
}
state = IDLE;
// holds all state for one load request; stored in queue.
struct LoadRequest
{
// member documentation is in LDR_Register (avoid duplication).
LoadFunc func;
void* param;
CStrW description;
// rationale for storing as CStrW here:
// - needs to be WCS because it's user-visible and will be translated.
// - don't just store a pointer - the caller's string may be volatile.
// - the module interface must work in C, so we get/set as wchar_t*.
int estimated_duration_ms;
// LDR_Register gets these as parameters; pack everything together.
LoadRequest(LoadFunc func_, void* param_, const wchar_t* desc_, int ms_)
: func(func_), param(param_), description(desc_),
estimated_duration_ms(ms_)
{
}
};
typedef std::deque<LoadRequest> LoadRequests;
static LoadRequests load_requests;
// std::accumulate binary op; used by LDR_EndRegistering to sum up all
// estimated durations (for % progress calculation)
struct DurationAdder: public std::binary_function<double, const LoadRequest&, double>
{
double operator()(double partial_result, const LoadRequest& lr) const
{
return partial_result + lr.estimated_duration_ms*1e-3;
}
};
// call before starting to register load requests.
// this routine is provided so we can prevent 2 simultaneous load operations,
// which is bogus. that can happen by clicking the load button quickly,
// or issuing via console while already loading.
void LDR_BeginRegistering()
{
ENSURE(state == IDLE);
state = REGISTERING;
load_requests.clear();
}
// register a task (later processed in FIFO order).
// <func>: function that will perform the actual work; see LoadFunc.
// <param>: (optional) parameter/persistent state; must be freed by func.
// <description>: user-visible description of the current task, e.g.
// "Loading Textures".
// <estimated_duration_ms>: used to calculate progress, and when checking
// whether there is enough of the time budget left to process this task
// (reduces timeslice overruns, making the main loop more responsive).
void LDR_Register(LoadFunc func, void* param, const wchar_t* description,
int estimated_duration_ms)
{
ENSURE(state == REGISTERING); // must be called between LDR_(Begin|End)Register
const LoadRequest lr(func, param, description, estimated_duration_ms);
load_requests.push_back(lr);
}
// call when finished registering tasks; subsequent calls to
// LDR_ProgressiveLoad will then work off the queued entries.
void LDR_EndRegistering()
{
ENSURE(state == REGISTERING);
ENSURE(!load_requests.empty());
state = FIRST_LOAD;
estimated_duration_tally = 0.0;
task_elapsed_time = 0.0;
total_estimated_duration = std::accumulate(load_requests.begin(), load_requests.end(), 0.0, DurationAdder());
}
// immediately cancel this load; no further tasks will be processed.
// used to abort loading upon user request or failure.
// note: no special notification will be returned by LDR_ProgressiveLoad.
void LDR_Cancel()
{
// the queue doesn't need to be emptied now; that'll happen during the
// next LDR_StartRegistering. for now, it is sufficient to set the
// state, so that LDR_ProgressiveLoad is a no-op.
state = IDLE;
}
// helper routine for LDR_ProgressiveLoad.
// tries to prevent starting a long task when at the end of a timeslice.
static bool HaveTimeForNextTask(double time_left, double time_budget, int estimated_duration_ms)
{
// have already exceeded our time budget
if(time_left <= 0.0)
return false;
// we haven't started a request yet this timeslice. start it even if
// it's longer than time_budget to make sure there is progress.
if(time_left == time_budget)
return true;
// check next task length. we want a lengthy task to happen in its own
// timeslice so that its description is displayed beforehand.
const double estimated_duration = estimated_duration_ms*1e-3;
if(time_left+estimated_duration > time_budget*1.20)
return false;
return true;
}
// process as many of the queued tasks as possible within <time_budget> [s].
// if a task is lengthy, the budget may be exceeded. call from the main loop.
//
// passes back a description of the next task that will be undertaken
// ("" if finished) and the current progress value.
//
// return semantics:
// - if the final load task just completed, return INFO::ALL_COMPLETE.
// - if loading is in progress but didn't finish, return ERR::TIMED_OUT.
// - if not currently loading (no-op), return 0.
// - any other value indicates a failure; the request has been de-queued.
//
// string interface rationale: for better interoperability, we avoid C++
// std::wstring and PS CStr. since the registered description may not be
// persistent, we can't just store a pointer. returning a pointer to
// our copy of the description doesn't work either, since it's freed when
// the request is de-queued. that leaves writing into caller's buffer.
Status LDR_ProgressiveLoad(double time_budget, wchar_t* description, size_t max_chars, int* progress_percent)
{
Status ret; // single exit; this is returned
double progress = 0.0; // used to set progress_percent
double time_left = time_budget;
// don't do any work the first time around so that a graphics update
// happens before the first (probably lengthy) timeslice.
if(state == FIRST_LOAD)
{
state = LOADING;
ret = ERR::TIMED_OUT; // make caller think we did something
// progress already set to 0.0; that'll be passed back.
goto done;
}
// we're called unconditionally from the main loop, so this isn't
// an error; there is just nothing to do.
if(state != LOADING)
return INFO::OK;
while(!load_requests.empty())
{
// get next task; abort if there's not enough time left for it.
const LoadRequest& lr = load_requests.front();
const double estimated_duration = lr.estimated_duration_ms*1e-3;
if(!HaveTimeForNextTask(time_left, time_budget, lr.estimated_duration_ms))
{
ret = ERR::TIMED_OUT;
goto done;
}
// call this task's function and bill elapsed time.
const double t0 = timer_Time();
int status = lr.func(lr.param, time_left);
const bool timed_out = ldr_was_interrupted(status);
const double elapsed_time = timer_Time() - t0;
time_left -= elapsed_time;
task_elapsed_time += elapsed_time;
// either finished entirely, or failed => remove from queue.
if(!timed_out)
{
debug_printf("LOADER| completed %s in %g ms; estimate was %g ms\n", utf8_from_wstring(lr.description).c_str(), task_elapsed_time*1e3, estimated_duration*1e3);
task_elapsed_time = 0.0;
estimated_duration_tally += estimated_duration;
load_requests.pop_front();
}
// calculate progress (only possible if estimates have been given)
if(total_estimated_duration != 0.0)
{
double current_estimate = estimated_duration_tally;
// function interrupted itself; add its estimated progress.
// note: monotonicity is guaranteed since we never add more than
// its estimated_duration_ms.
if(timed_out)
current_estimate += estimated_duration * status/100.0;
progress = current_estimate / total_estimated_duration;
}
// do we need to continue?
// .. function interrupted itself, i.e. timed out; abort.
if(timed_out)
{
ret = ERR::TIMED_OUT;
goto done;
}
// .. failed; abort. loading will continue when we're called in
// the next iteration of the main loop.
// rationale: bail immediately instead of remembering the first
// error that came up so we can report all errors that happen.
else if(status < 0)
{
ret = (Status)status;
goto done;
}
// .. function called LDR_Cancel; abort. return OK since this is an
// intentional cancellation, not an error.
else if(state != LOADING)
{
ret = INFO::OK;
goto done;
}
// .. succeeded; continue and process next queued task.
}
// queue is empty, we just finished.
state = IDLE;
ret = INFO::ALL_COMPLETE;
// set output params (there are several return points above)
done:
*progress_percent = (int)(progress * 100.0);
ENSURE(0 <= *progress_percent && *progress_percent <= 100);
// we want the next task, instead of what just completed:
// it will be displayed during the next load phase.
const wchar_t* new_description = L""; // assume finished
if(!load_requests.empty())
new_description = load_requests.front().description.c_str();
wcscpy_s(description, max_chars, new_description);
debug_printf("LOADER| returning; desc=%s progress=%d\n", utf8_from_wstring(description).c_str(), *progress_percent);
return ret;
}
// immediately process all queued load requests.
// returns 0 on success or a negative error code.
Status LDR_NonprogressiveLoad()
{
const double time_budget = 100.0;
// large enough so that individual functions won't time out
// (that'd waste time).
wchar_t description[100];
int progress_percent;
for(;;)
{
Status ret = LDR_ProgressiveLoad(time_budget, description, ARRAY_SIZE(description), &progress_percent);
switch(ret)
{
case INFO::OK:
debug_warn(L"No load in progress");
return INFO::OK;
case INFO::ALL_COMPLETE:
return INFO::OK;
case ERR::TIMED_OUT:
break; // continue loading
default:
WARN_RETURN_STATUS_IF_ERR(ret); // failed; complain
}
}
}
|