fe6b2f584ac64661cc25806bde1605b09fb44e82
[monky] / src / temphelper.c
1 /* temphelper.c:  aid in converting temperature units
2  *
3  * Copyright (C) 2008 Phil Sutter <Phil@nwl.cc>
4  *
5  * This library is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301
18  * USA.
19  *
20  */
21 #include "config.h"
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <ctype.h>
26 #include <sys/types.h>
27 #include "temphelper.h"
28 #include "conky.h"
29
30 /* default to output in celsius */
31 static enum TEMP_UNIT output_unit = TEMP_CELSIUS;
32
33 static double fahrenheit_to_celsius(double n)
34 {
35         return ((n - 32) * 5 / 9);
36 }
37
38 static double celsius_to_fahrenheit(double n)
39 {
40         return ((n * 9 / 5) + 32);
41 }
42
43 int set_temp_output_unit(const char *name)
44 {
45         long i;
46         int rc = 0;
47         char *buf;
48
49         if (!name)
50                 return 1;
51
52         buf = strdup(name);
53         for (i = 0; i < (long)strlen(name); i++)
54                 buf[i] = tolower(name[i]);
55
56         if (!strcmp(buf, "celsius"))
57                 output_unit = TEMP_CELSIUS;
58         else if (!strcmp(buf, "fahrenheit"))
59                 output_unit = TEMP_FAHRENHEIT;
60         else
61                 rc = 1;
62         free(buf);
63         return rc;
64 }
65
66 static double convert_temp_output(double n, enum TEMP_UNIT input_unit)
67 {
68         if (input_unit == output_unit)
69                 return n;
70
71         switch(output_unit) {
72                 case TEMP_CELSIUS:
73                         return fahrenheit_to_celsius(n);
74                 case TEMP_FAHRENHEIT:
75                         return celsius_to_fahrenheit(n);
76         }
77         /* NOT REACHED */
78         return 0.0;
79 }
80
81 int temp_print(char *p, size_t p_max_size, double n, enum TEMP_UNIT input_unit)
82 {
83         int out;
84         size_t plen;
85
86         out = round_to_int_temp(convert_temp_output(n, input_unit));
87         plen = spaced_print(p, p_max_size, "%d", 3, out);
88
89         return !(plen >= p_max_size);
90 }