| 1 | /*
|
|---|
| 2 | * Copyright (c) 2010 Stanislav Kozina
|
|---|
| 3 | * All rights reserved.
|
|---|
| 4 | *
|
|---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 6 | * modification, are permitted provided that the following conditions
|
|---|
| 7 | * are met:
|
|---|
| 8 | *
|
|---|
| 9 | * - Redistributions of source code must retain the above copyright
|
|---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 13 | * documentation and/or other materials provided with the distribution.
|
|---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 15 | * derived from this software without specific prior written permission.
|
|---|
| 16 | *
|
|---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 27 | */
|
|---|
| 28 |
|
|---|
| 29 | /** @addtogroup top
|
|---|
| 30 | * @brief Top utility.
|
|---|
| 31 | * @{
|
|---|
| 32 | */
|
|---|
| 33 | /**
|
|---|
| 34 | * @file
|
|---|
| 35 | */
|
|---|
| 36 |
|
|---|
| 37 | #include <stdio.h>
|
|---|
| 38 | #include <io/console.h>
|
|---|
| 39 | #include <vfs/vfs.h>
|
|---|
| 40 | #include <load.h>
|
|---|
| 41 | #include "screen.h"
|
|---|
| 42 | #include "top.h"
|
|---|
| 43 |
|
|---|
| 44 | static void resume_normal(void)
|
|---|
| 45 | {
|
|---|
| 46 | fflush(stdout);
|
|---|
| 47 | console_set_rgb_color(fphone(stdout), 0, 0xf0f0f0);
|
|---|
| 48 | }
|
|---|
| 49 |
|
|---|
| 50 | void screen_init(void)
|
|---|
| 51 | {
|
|---|
| 52 | console_cursor_visibility(fphone(stdout), 0);
|
|---|
| 53 | resume_normal();
|
|---|
| 54 | clear_screen();
|
|---|
| 55 | }
|
|---|
| 56 |
|
|---|
| 57 | void clear_screen(void)
|
|---|
| 58 | {
|
|---|
| 59 | console_clear(fphone(stdout));
|
|---|
| 60 | moveto(0, 0);
|
|---|
| 61 | }
|
|---|
| 62 |
|
|---|
| 63 | void moveto(int r, int c)
|
|---|
| 64 | {
|
|---|
| 65 | fflush(stdout);
|
|---|
| 66 | console_goto(fphone(stdout), c, r);
|
|---|
| 67 | }
|
|---|
| 68 |
|
|---|
| 69 | static inline void print_time(data_t *data)
|
|---|
| 70 | {
|
|---|
| 71 | printf("%02d:%02d:%02d ", data->hours, data->minutes, data->seconds);
|
|---|
| 72 | }
|
|---|
| 73 |
|
|---|
| 74 | static inline void print_uptime(data_t *data)
|
|---|
| 75 | {
|
|---|
| 76 | printf("up %4d days, %02d:%02d:%02d, ", data->uptime_d, data->uptime_h,
|
|---|
| 77 | data->uptime_m, data->uptime_s);
|
|---|
| 78 | }
|
|---|
| 79 |
|
|---|
| 80 | static inline void print_load(data_t *data)
|
|---|
| 81 | {
|
|---|
| 82 | puts("load avarage: ");
|
|---|
| 83 | print_load_fragment(data->load[0], 2);
|
|---|
| 84 | puts(" ");
|
|---|
| 85 | print_load_fragment(data->load[1], 2);
|
|---|
| 86 | puts(" ");
|
|---|
| 87 | print_load_fragment(data->load[2], 2);
|
|---|
| 88 | }
|
|---|
| 89 |
|
|---|
| 90 | static inline void print_taskstat(data_t *data)
|
|---|
| 91 | {
|
|---|
| 92 | puts("Tasks: ");
|
|---|
| 93 | printf("%4u total", data->task_count);
|
|---|
| 94 | }
|
|---|
| 95 |
|
|---|
| 96 | void print_data(data_t *data)
|
|---|
| 97 | {
|
|---|
| 98 | clear_screen();
|
|---|
| 99 | fflush(stdout);
|
|---|
| 100 | printf("top - ");
|
|---|
| 101 | print_time(data);
|
|---|
| 102 | print_uptime(data);
|
|---|
| 103 | print_load(data);
|
|---|
| 104 | puts("\n");
|
|---|
| 105 | print_taskstat(data);
|
|---|
| 106 | puts("\n");
|
|---|
| 107 | fflush(stdout);
|
|---|
| 108 | }
|
|---|
| 109 |
|
|---|
| 110 | /** @}
|
|---|
| 111 | */
|
|---|