/*
 * Copyright (C) 2012 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.deskclock.stopwatch;

import android.content.Context;

import com.android.deskclock.R;

import java.text.DecimalFormatSymbols;

/**
 * Stopwatch utility class providing access to stopwatch resources and data formatting strings of
 * stopwatch data.
 */
public class Stopwatches {
    // Actions processed by stopwatch receiver
    public static final String START_STOPWATCH = "start_stopwatch";
    public static final String LAP_STOPWATCH = "lap_stopwatch";
    public static final String STOP_STOPWATCH = "stop_stopwatch";
    public static final String RESET_STOPWATCH = "reset_stopwatch";
    public static final String SHARE_STOPWATCH = "share_stopwatch";
    public static final String RESET_AND_LAUNCH_STOPWATCH = "reset_and_launch_stopwatch";
    public static final String MESSAGE_TIME = "message_time";
    public static final String SHOW_NOTIF = "show_notification";
    public static final String KILL_NOTIF = "kill_notification";
    public static final String PREF_START_TIME  = "sw_start_time";
    public static final String PREF_ACCUM_TIME = "sw_accum_time";
    public static final String PREF_STATE = "sw_state";
    public static final String PREF_LAP_NUM = "sw_lap_num";
    public static final String PREF_LAP_TIME = "sw_lap_time_";
    public static final String PREF_UPDATE_CIRCLE = "sw_update_circle";
    public static final String NOTIF_CLOCK_BASE = "notif_clock_base";
    public static final String NOTIF_CLOCK_ELAPSED = "notif_clock_elapsed";
    public static final String NOTIF_CLOCK_RUNNING = "notif_clock_running";
    public static final String KEY = "sw";

    public static final int STOPWATCH_RESET = 0;
    public static final int STOPWATCH_RUNNING = 1;
    public static final int STOPWATCH_STOPPED = 2;

    public static final int MAX_LAPS = 99;
    public static final int NO_LAP_NUMBER = -1;

    /**
     * Pull a random jocular title
     * @param context context with resources
     * @return the random title
     */
    public static String getShareTitle(Context context) {
        String [] mLabels = context.getResources().getStringArray(R.array.sw_share_strings);
        return mLabels[(int)(Math.random() * mLabels.length)];
    }

    /**
     * Create a multi-line text with the stopwatch lap data
     * @param context context with resources
     * @param time total elapsed time
     * @param laps array of times
     * @return formatted text
     */
    public static String buildShareResults(Context context, String time, long[] laps) {
        StringBuilder b = new StringBuilder (context.getString(R.string.sw_share_main, time));
        b.append("\n");

        int lapsNum = laps == null? 0 : laps.length;
        if (lapsNum == 0) {
            return b.toString();
        }

        b.append(context.getString(R.string.sw_share_laps));
        b.append("\n");
        for (int i = 1; i <= lapsNum; i ++) {
            b.append(getTimeText(context, laps[lapsNum-i], i));
            b.append("\n");
        }
        return b.toString();
    }

    /**
     * Create a multi-line text with the stopwatch lap data
     * @param context context with resources
     * @param time total elapsed time
     * @param laps array of times
     * @return formatted text
     */
    public static String buildShareResults(Context context, long time, long[] laps) {
        return buildShareResults(context, getTimeText(context, time, NO_LAP_NUMBER), laps);
    }

    /***
     * Format the string of the time running on the stopwatch up to hundred of a second accuracy
     * @param context context with resources
     * @param time - in hundreds of a second since the stopwatch started
     * @param lap lap number
     * @return formatted text
     */
    public static String getTimeText(Context context, long time, int lap) {
        if (time < 0) {
            time = 0;
        }
        String[] formats;
        if (lap != NO_LAP_NUMBER) {
            formats = context.getResources().getStringArray(R.array.shared_laps_format_set);
        } else {
            formats = context.getResources().getStringArray(R.array.stopwatch_format_set);
        }
        char decimalSeparator = DecimalFormatSymbols.getInstance().getDecimalSeparator();
        int formatIndex;

        long hundreds, seconds, minutes, hours;
        seconds = time / 1000;
        hundreds = (time - seconds * 1000) / 10;
        minutes = seconds / 60;
        seconds = seconds - minutes * 60;
        hours = minutes / 60;
        minutes = minutes - hours * 60;
        if (hours >= 100) {
          formatIndex = 4;
        } else if (hours >= 10) {
            formatIndex = 3;
        } else if (hours > 0) {
          formatIndex = 2;
        } else if (minutes >= 10) {
          formatIndex = 1;
        } else {
          formatIndex = 0;
        }
        return String.format(formats[formatIndex], hours, minutes,
                seconds, hundreds, decimalSeparator, lap);
    }

    /***
     * Sets the string of the time running on the stopwatch up to hundred of a second accuracy
     * @param time - in hundreds of a second since the stopwatch started
     */
    public static String formatTimeText(long time, final String format) {
        if (time < 0) {
            time = 0;
        }
        long hundreds, seconds, minutes, hours;
        seconds = time / 1000;
        hundreds = (time - seconds * 1000) / 10;
        minutes = seconds / 60;
        seconds = seconds - minutes * 60;
        hours = minutes / 60;
        minutes = minutes - hours * 60;
        char decimalSeparator = DecimalFormatSymbols.getInstance().getDecimalSeparator();
        return String.format(format, hours, minutes, seconds, hundreds, decimalSeparator);
    }
}
