Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- |
michael@0 | 2 | * vim: sw=2 ts=8 et : |
michael@0 | 3 | */ |
michael@0 | 4 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 5 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, |
michael@0 | 6 | * You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 7 | |
michael@0 | 8 | #include <assert.h> |
michael@0 | 9 | #include <stdio.h> |
michael@0 | 10 | |
michael@0 | 11 | #include <string> |
michael@0 | 12 | |
michael@0 | 13 | #include "android/log.h" |
michael@0 | 14 | |
michael@0 | 15 | #include "progressui.h" |
michael@0 | 16 | |
michael@0 | 17 | #define LOG(args...) __android_log_print(ANDROID_LOG_INFO, "GeckoUpdater" , ## args) |
michael@0 | 18 | |
michael@0 | 19 | using namespace std; |
michael@0 | 20 | |
michael@0 | 21 | int InitProgressUI(int *argc, char ***argv) |
michael@0 | 22 | { |
michael@0 | 23 | return 0; |
michael@0 | 24 | } |
michael@0 | 25 | |
michael@0 | 26 | int ShowProgressUI() |
michael@0 | 27 | { |
michael@0 | 28 | LOG("Starting to apply update ...\n"); |
michael@0 | 29 | return 0; |
michael@0 | 30 | } |
michael@0 | 31 | |
michael@0 | 32 | void QuitProgressUI() |
michael@0 | 33 | { |
michael@0 | 34 | LOG("Finished applying update\n"); |
michael@0 | 35 | } |
michael@0 | 36 | |
michael@0 | 37 | void UpdateProgressUI(float progress) |
michael@0 | 38 | { |
michael@0 | 39 | assert(0.0f <= progress && progress <= 100.0f); |
michael@0 | 40 | |
michael@0 | 41 | static const size_t kProgressBarLength = 50; |
michael@0 | 42 | static size_t sLastNumBars; |
michael@0 | 43 | size_t numBars = size_t(float(kProgressBarLength) * progress / 100.0f); |
michael@0 | 44 | if (numBars == sLastNumBars) { |
michael@0 | 45 | return; |
michael@0 | 46 | } |
michael@0 | 47 | sLastNumBars = numBars; |
michael@0 | 48 | |
michael@0 | 49 | size_t numSpaces = kProgressBarLength - numBars; |
michael@0 | 50 | string bars(numBars, '='); |
michael@0 | 51 | string spaces(numSpaces, ' '); |
michael@0 | 52 | LOG("Progress [ %s%s ]\n", bars.c_str(), spaces.c_str()); |
michael@0 | 53 | } |