/*
 * Copyright (c) 2010 Stanislav Kozina
 * Copyright (c) 2010 Martin Decky
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * - Redistributions of source code must retain the above copyright
 *   notice, this list of conditions and the following disclaimer.
 * - Redistributions in binary form must reproduce the above copyright
 *   notice, this list of conditions and the following disclaimer in the
 *   documentation and/or other materials provided with the distribution.
 * - The name of the author may not be used to endorse or promote products
 *   derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

/** @addtogroup top
 * @{
 */

#ifndef TOP_TOP_H_
#define TOP_TOP_H_

#include <task.h>
#include <stats.h>
#include <time.h>

#define FRACTION_TO_FLOAT(float, a, b) \
	do { \
		if ((b) != 0) { \
			(float).upper = (a); \
			(float).lower = (b); \
		} else { \
			(float).upper = 0; \
			(float).lower = 1; \
		} \
	} while (0)

typedef enum {
	OP_TASKS,
	OP_IPC,
	OP_EXCS,
	OP_HELP
} op_mode_t;

typedef enum {
	SORT_TASK_CYCLES
} sort_mode_t;

extern op_mode_t op_mode;
extern sort_mode_t sort_mode;
extern bool excs_all;

typedef struct {
	uint64_t upper;
	uint64_t lower;
} fixed_float;

typedef struct {
	fixed_float idle;
	fixed_float busy;
} perc_cpu_t;

typedef struct {
	fixed_float virtmem;
	fixed_float ucycles;
	fixed_float kcycles;
} perc_task_t;

typedef struct {
	fixed_float cycles;
	fixed_float count;
} perc_exc_t;

typedef struct {
	time_t hours;
	time_t minutes;
	time_t seconds;
	
	sysarg_t udays;
	sysarg_t uhours;
	sysarg_t uminutes;
	sysarg_t useconds;
	
	size_t load_count;
	load_t *load;
	
	size_t cpus_count;
	stats_cpu_t *cpus;
	perc_cpu_t *cpus_perc;
	
	size_t tasks_count;
	stats_task_t *tasks;
	perc_task_t *tasks_perc;
	size_t *tasks_map;
	
	size_t threads_count;
	stats_thread_t *threads;
	
	size_t exceptions_count;
	stats_exc_t *exceptions;
	perc_exc_t *exceptions_perc;
	
	stats_physmem_t *physmem;
	
	uint64_t *ucycles_diff;
	uint64_t *kcycles_diff;
	uint64_t *ecycles_diff;
	uint64_t *ecount_diff;
} data_t;

#endif

/**
 * @}
 */
