little simplification and improvement of $nvidia
[monky] / src / nvidia.c
1 /* Conky, a system monitor, based on torsmo
2  *
3  * Any original torsmo code is licensed under the BSD license
4  *
5  * All code written since the fork of torsmo is licensed under the GPL
6  *
7  * Please see COPYING for details
8  *
9  * Copyright (c) 2008 Markus Meissner
10  * Copyright (c) 2005-2008 Brenden Matthews, Philip Kovacs, et. al.
11  *      (see AUTHORS)
12  * All rights reserved.
13  *
14  * This program is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation, either version 3 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  * You should have received a copy of the GNU General Public License
24  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
25  *
26  * $Id$
27  */
28
29 #include "nvidia.h"
30
31 int get_nvidia_value(QUERY_ID qid, Display *dpy){
32         int tmp;
33         if(!XNVCTRLQueryAttribute(dpy, 0, 0, qid, &tmp)){
34                 return -1;
35         }
36         /* FIXME: when are the low 2 bytes of NV_GPU_FREQ needed? */
37         if (qid == NV_GPU_FREQ)
38                 return tmp >> 16;
39         return tmp;
40 }
41
42 int set_nvidia_type(struct nvidia_s *nvidia, const char *arg)
43 {
44         if (!arg || !arg[0] || !arg[1])
45                 return 1;
46
47         nvidia->print_as_float = 0;
48         switch(arg[0]) {
49                 case 't':                              // temp or threshold
50                         nvidia->print_as_float = 1;
51                         if (arg[1] == 'e')
52                                 nvidia->type = NV_TEMP;
53                         else if (arg[1] == 'h')
54                                 nvidia->type = NV_TEMP_THRESHOLD;
55                         else
56                                 return 1;
57                         break;
58                 case 'g':                              // gpufreq
59                         nvidia->type = NV_GPU_FREQ;
60                         break;
61                 case 'm':                              // memfreq
62                         nvidia->type = NV_MEM_FREQ;
63                         break;
64                 case 'i':                              // imagequality
65                         nvidia->type = NV_IMAGE_QUALITY;
66                         break;
67                 default:
68                         return 1;
69         }
70         return 0;
71 }