Imported Upstream version 0.6.2.17
[psensor-pkg-debian.git] / src / lib / hdd.c
1 /*
2  * Copyright (C) 2010-2012 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19 #include <locale.h>
20 #include <libintl.h>
21 #define _(str) gettext(str)
22
23 /*
24   Following code is based on GNOME sensors applet code hddtemp-plugin.c
25   see http://sensors-applet.sourceforge.net/
26 */
27 #include <stdlib.h>
28 #include <string.h>
29 #include <stdio.h>
30 #include <sys/types.h>
31 #include <sys/socket.h>
32 #include <netinet/in.h>
33 #include <arpa/inet.h>
34 #include <unistd.h>
35
36 #include "psensor.h"
37
38 #define HDDTEMP_SERVER_IP_ADDRESS "127.0.0.1"
39 #define HDDTEMP_PORT_NUMBER 7634
40 #define HDDTEMP_OUTPUT_BUFFER_LENGTH 4048
41
42 struct hdd_info {
43         char *name;
44         int temp;
45 };
46
47 static char *fetch()
48 {
49         int sockfd;
50         ssize_t n = 1;
51         int output_length = 0;
52         char *pc;
53         char *buffer;
54         struct sockaddr_in address;
55
56         sockfd = socket(AF_INET, SOCK_STREAM, 0);
57         if (sockfd == -1) {
58                 fprintf(stderr, _("ERROR: hdd fetch, failed to open socket\n"));
59                 return NULL;
60         }
61
62         address.sin_family = AF_INET;
63         address.sin_addr.s_addr = inet_addr(HDDTEMP_SERVER_IP_ADDRESS);
64         address.sin_port = htons(HDDTEMP_PORT_NUMBER);
65
66         buffer = NULL;
67
68         if (connect(sockfd,
69                     (struct sockaddr *)&address,
70                     (socklen_t) sizeof(address)) == -1) {
71                 fprintf(stderr,
72                         _("ERROR: hdd fetch, failed to open connection\n"));
73         } else {
74                 buffer = malloc(HDDTEMP_OUTPUT_BUFFER_LENGTH);
75
76                 pc = buffer;
77                 while ((n = read(sockfd,
78                                  pc,
79                                  HDDTEMP_OUTPUT_BUFFER_LENGTH -
80                                  output_length)) > 0) {
81
82                         output_length += n;
83                         pc = &pc[n];
84                 }
85
86                 buffer[output_length] = '\0';
87         }
88
89         close(sockfd);
90
91         return buffer;
92 }
93
94 static int str_index(char *str, char d)
95 {
96         char *c;
97         int i;
98
99         if (!str || *str == '\0')
100                 return -1;
101
102         c = str;
103
104         i = 0;
105         while (*c) {
106                 if (*c == d)
107                         return i;
108                 i++;
109                 c++;
110         }
111
112         return -1;
113 }
114
115 static struct psensor *
116 create_sensor(char *id, char *name, int values_max_length)
117 {
118         return psensor_create(id, name, SENSOR_TYPE_HDD_TEMP,
119                               values_max_length);
120 }
121
122 static char *next_hdd_info(char *string, struct hdd_info *info)
123 {
124         char *c;
125         int idx_name_n, i, temp;
126
127         if (!string || strlen(string) <= 5      /* at least 5 pipes */
128             || string[0] != '|')
129                 return NULL;
130
131         /* skip first pipe */
132         c = string + 1;
133
134         /* name */
135         idx_name_n = str_index(c, '|');
136
137         if (idx_name_n == -1)
138                 return NULL;
139         c = c + idx_name_n + 1;
140
141         /* skip label */
142         i = str_index(c, '|');
143         if (i == -1)
144                 return NULL;
145         c = c + i + 1;
146
147         /* temp */
148         i = str_index(c, '|');
149         if (i == -1)
150                 return NULL;
151         temp = atoi(c);
152         c = c + i + 1;
153
154         /* skip unit  */
155         i = str_index(c, '|');
156         if (i == -1)
157                 return NULL;
158         c = c + i + 1;
159
160         info->name = malloc(idx_name_n + 1);
161         strncpy(info->name, string + 1, idx_name_n);
162         info->name[idx_name_n] = '\0';
163
164         info->temp = temp;
165
166         return c;
167 }
168
169 struct psensor **hdd_psensor_list_add(struct psensor **sensors,
170                                       int values_max_length)
171 {
172         char *hddtemp_output = fetch();
173         char *c;
174         struct hdd_info info;
175         struct psensor **result;
176
177         if (!hddtemp_output)
178                 return sensors;
179
180         if (hddtemp_output[0] != '|') {
181                 fprintf(stderr,
182                         _("ERROR: wrong hdd string: %s"), hddtemp_output);
183
184                 free(hddtemp_output);
185
186                 return sensors;
187         }
188
189         c = hddtemp_output;
190
191         result = sensors;
192
193         while (c && (c = next_hdd_info(c, &info))) {
194                 struct psensor *sensor;
195                 struct psensor **tmp_sensors;
196
197                 char *id = malloc(strlen("hdd ") + strlen(info.name) + 1);
198                 strcpy(id, "hdd ");
199                 strcat(id, info.name);
200
201                 sensor = create_sensor(id, info.name, values_max_length);
202
203                 tmp_sensors = psensor_list_add(result, sensor);
204
205                 if (result != sensors)
206                         free(result);
207
208                 result = tmp_sensors;
209         }
210
211         free(hddtemp_output);
212
213         return result;
214 }
215
216 static void update(struct psensor **sensors, struct hdd_info *info)
217 {
218         struct psensor **sensor_cur = sensors;
219
220         while (*sensor_cur) {
221                 if ((*sensor_cur)->type == SENSOR_TYPE_HDD_TEMP
222                     && !strcmp((*sensor_cur)->id + 4, info->name))
223                         psensor_set_current_value(*sensor_cur,
224                                                   (float)info->temp);
225
226                 sensor_cur++;
227         }
228 }
229
230 void hdd_psensor_list_update(struct psensor **sensors)
231 {
232         char *hddtemp_output = fetch();
233
234         if (!hddtemp_output)
235                 return;
236
237         if (hddtemp_output[0] == '|') {
238
239                 char *c = hddtemp_output;
240                 struct hdd_info info;
241                 info.name = NULL;
242                 info.temp = 0;
243
244                 while (c && (c = next_hdd_info(c, &info))) {
245
246                         update(sensors, &info);
247
248                         free(info.name);
249                 }
250         } else {
251                 fprintf(stderr,
252                         _("ERROR: wrong hdd string: %s\n"), hddtemp_output);
253         }
254
255         free(hddtemp_output);
256 }