libaltos: Build the linux library targets when doing a 'fat' build
[fw/altos] / libaltos / libaltos.c
1 /*
2  * Copyright © 2010 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include "libaltos.h"
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22
23 #define BLUETOOTH_PRODUCT_TELEBT        "TeleBT"
24
25 #define USE_POLL
26
27 PUBLIC int
28 altos_init(void)
29 {
30         return LIBALTOS_SUCCESS;
31 }
32
33 PUBLIC void
34 altos_fini(void)
35 {
36 }
37
38 static struct altos_error last_error;
39
40 static void
41 altos_set_last_error(int code, char *string)
42 {
43         last_error.code = code;
44         strncpy(last_error.string, string, sizeof (last_error.string) -1);
45         last_error.string[sizeof(last_error.string)-1] = '\0';
46 }
47
48 PUBLIC void
49 altos_get_last_error(struct altos_error *error)
50 {
51         *error = last_error;
52 }
53
54 #ifdef DARWIN
55
56 #undef USE_POLL
57
58 /* Mac OS X don't have strndup even if _GNU_SOURCE is defined */
59 static char *
60 altos_strndup (const char *s, size_t n)
61 {
62     size_t len = strlen (s);
63     char *ret;
64
65     if (len <= n)
66        return strdup (s);
67     ret = malloc(n + 1);
68     strncpy(ret, s, n);
69     ret[n] = '\0';
70     return ret;
71 }
72
73 #else
74 #define altos_strndup strndup
75 #endif
76
77 #ifdef POSIX_TTY
78
79 #include <stdio.h>
80 #include <stdlib.h>
81 #include <fcntl.h>
82 #include <termios.h>
83 #include <errno.h>
84
85 #define USB_BUF_SIZE    64
86
87 struct altos_file {
88         int                             fd;
89 #ifdef USE_POLL
90         int                             pipe[2];
91 #else
92         int                             out_fd;
93 #endif
94         unsigned char                   out_data[USB_BUF_SIZE];
95         int                             out_used;
96         unsigned char                   in_data[USB_BUF_SIZE];
97         int                             in_used;
98         int                             in_read;
99 };
100
101 static void
102 altos_set_last_posix_error(void)
103 {
104         altos_set_last_error(errno, strerror(errno));
105 }
106
107 PUBLIC struct altos_file *
108 altos_open(struct altos_device *device)
109 {
110         struct altos_file       *file = calloc (sizeof (struct altos_file), 1);
111         int                     ret;
112         struct termios          term;
113
114         if (!file) {
115                 altos_set_last_posix_error();
116                 return NULL;
117         }
118
119 //      altos_set_last_error(12, "yeah yeah, failed again");
120 //      free(file);
121 //      return NULL;
122
123         file->fd = open(device->path, O_RDWR | O_NOCTTY);
124         if (file->fd < 0) {
125                 altos_set_last_posix_error();
126                 free(file);
127                 return NULL;
128         }
129 #ifdef USE_POLL
130         pipe(file->pipe);
131 #else
132         file->out_fd = open(device->path, O_RDWR | O_NOCTTY);
133         if (file->out_fd < 0) {
134                 altos_set_last_posix_error();
135                 close(file->fd);
136                 free(file);
137                 return NULL;
138         }
139 #endif
140         ret = tcgetattr(file->fd, &term);
141         if (ret < 0) {
142                 altos_set_last_posix_error();
143                 close(file->fd);
144 #ifndef USE_POLL
145                 close(file->out_fd);
146 #endif
147                 free(file);
148                 return NULL;
149         }
150         cfmakeraw(&term);
151         cfsetospeed(&term, B9600);
152         cfsetispeed(&term, B9600);
153 #ifdef USE_POLL
154         term.c_cc[VMIN] = 1;
155         term.c_cc[VTIME] = 0;
156 #else
157         term.c_cc[VMIN] = 0;
158         term.c_cc[VTIME] = 1;
159 #endif
160         ret = tcsetattr(file->fd, TCSAFLUSH, &term);
161         if (ret < 0) {
162                 altos_set_last_posix_error();
163                 close(file->fd);
164 #ifndef USE_POLL
165                 close(file->out_fd);
166 #endif
167                 free(file);
168                 return NULL;
169         }
170         return file;
171 }
172
173 PUBLIC void
174 altos_close(struct altos_file *file)
175 {
176         if (file->fd != -1) {
177                 int     fd = file->fd;
178                 file->fd = -1;
179 #ifdef USE_POLL
180                 write(file->pipe[1], "\r", 1);
181 #else
182                 close(file->out_fd);
183                 file->out_fd = -1;
184 #endif
185                 close(fd);
186         }
187 }
188
189 PUBLIC void
190 altos_free(struct altos_file *file)
191 {
192         altos_close(file);
193         free(file);
194 }
195
196 PUBLIC int
197 altos_flush(struct altos_file *file)
198 {
199         if (file->out_used && 0) {
200                 printf ("flush \"");
201                 fwrite(file->out_data, 1, file->out_used, stdout);
202                 printf ("\"\n");
203         }
204         while (file->out_used) {
205                 int     ret;
206
207                 if (file->fd < 0)
208                         return -EBADF;
209 #ifdef USE_POLL
210                 ret = write (file->fd, file->out_data, file->out_used);
211 #else
212                 ret = write (file->out_fd, file->out_data, file->out_used);
213 #endif
214                 if (ret < 0) {
215                         altos_set_last_posix_error();
216                         return -last_error.code;
217                 }
218                 if (ret) {
219                         memmove(file->out_data, file->out_data + ret,
220                                 file->out_used - ret);
221                         file->out_used -= ret;
222                 }
223         }
224         return 0;
225 }
226
227 PUBLIC int
228 altos_putchar(struct altos_file *file, char c)
229 {
230         int     ret;
231
232         if (file->out_used == USB_BUF_SIZE) {
233                 ret = altos_flush(file);
234                 if (ret) {
235                         return ret;
236                 }
237         }
238         file->out_data[file->out_used++] = c;
239         ret = 0;
240         if (file->out_used == USB_BUF_SIZE)
241                 ret = altos_flush(file);
242         return ret;
243 }
244
245 #ifdef USE_POLL
246 #include <poll.h>
247 #endif
248
249 static int
250 altos_fill(struct altos_file *file, int timeout)
251 {
252         int             ret;
253 #ifdef USE_POLL
254         struct pollfd   fd[2];
255 #endif
256
257         if (timeout == 0)
258                 timeout = -1;
259         while (file->in_read == file->in_used) {
260                 if (file->fd < 0)
261                         return LIBALTOS_ERROR;
262 #ifdef USE_POLL
263                 fd[0].fd = file->fd;
264                 fd[0].events = POLLIN|POLLERR|POLLHUP|POLLNVAL;
265                 fd[1].fd = file->pipe[0];
266                 fd[1].events = POLLIN;
267                 ret = poll(fd, 2, timeout);
268                 if (ret < 0) {
269                         altos_set_last_posix_error();
270                         return LIBALTOS_ERROR;
271                 }
272                 if (ret == 0)
273                         return LIBALTOS_TIMEOUT;
274
275                 if (fd[0].revents & (POLLHUP|POLLERR|POLLNVAL))
276                         return LIBALTOS_ERROR;
277                 if (fd[0].revents & POLLIN)
278 #endif
279                 {
280                         ret = read(file->fd, file->in_data, USB_BUF_SIZE);
281                         if (ret < 0) {
282                                 altos_set_last_posix_error();
283                                 return LIBALTOS_ERROR;
284                         }
285                         file->in_read = 0;
286                         file->in_used = ret;
287 #ifndef USE_POLL
288                         if (ret == 0 && timeout > 0)
289                                 return LIBALTOS_TIMEOUT;
290 #endif
291                 }
292         }
293         if (file->in_used && 0) {
294                 printf ("fill \"");
295                 fwrite(file->in_data, 1, file->in_used, stdout);
296                 printf ("\"\n");
297         }
298         return 0;
299 }
300
301 PUBLIC int
302 altos_getchar(struct altos_file *file, int timeout)
303 {
304         int     ret;
305         while (file->in_read == file->in_used) {
306                 if (file->fd < 0)
307                         return LIBALTOS_ERROR;
308                 ret = altos_fill(file, timeout);
309                 if (ret)
310                         return ret;
311         }
312         return file->in_data[file->in_read++];
313 }
314
315 #endif /* POSIX_TTY */
316
317 /*
318  * Scan for Altus Metrum devices by looking through /sys
319  */
320
321 #ifdef LINUX
322
323 #define _GNU_SOURCE
324 #include <ctype.h>
325 #include <dirent.h>
326 #include <stdio.h>
327 #include <stdlib.h>
328 #include <string.h>
329 #include <bluetooth/bluetooth.h>
330 #include <bluetooth/hci.h>
331 #include <bluetooth/hci_lib.h>
332 #include <bluetooth/rfcomm.h>
333
334 static char *
335 cc_fullname (char *dir, char *file)
336 {
337         char    *new;
338         int     dlen = strlen (dir);
339         int     flen = strlen (file);
340         int     slen = 0;
341
342         if (dir[dlen-1] != '/')
343                 slen = 1;
344         new = malloc (dlen + slen + flen + 1);
345         if (!new)
346                 return 0;
347         strcpy(new, dir);
348         if (slen)
349                 strcat (new, "/");
350         strcat(new, file);
351         return new;
352 }
353
354 static char *
355 cc_basename(char *file)
356 {
357         char *b;
358
359         b = strrchr(file, '/');
360         if (!b)
361                 return file;
362         return b + 1;
363 }
364
365 static char *
366 load_string(char *dir, char *file)
367 {
368         char    *full = cc_fullname(dir, file);
369         char    line[4096];
370         char    *r;
371         FILE    *f;
372         int     rlen;
373
374         f = fopen(full, "r");
375         free(full);
376         if (!f)
377                 return NULL;
378         r = fgets(line, sizeof (line), f);
379         fclose(f);
380         if (!r)
381                 return NULL;
382         rlen = strlen(r);
383         if (r[rlen-1] == '\n')
384                 r[rlen-1] = '\0';
385         return strdup(r);
386 }
387
388 static int
389 load_hex(char *dir, char *file)
390 {
391         char    *line;
392         char    *end;
393         long    i;
394
395         line = load_string(dir, file);
396         if (!line)
397                 return -1;
398         i = strtol(line, &end, 16);
399         free(line);
400         if (end == line)
401                 return -1;
402         return i;
403 }
404
405 static int
406 load_dec(char *dir, char *file)
407 {
408         char    *line;
409         char    *end;
410         long    i;
411
412         line = load_string(dir, file);
413         if (!line)
414                 return -1;
415         i = strtol(line, &end, 10);
416         free(line);
417         if (end == line)
418                 return -1;
419         return i;
420 }
421
422 static int
423 dir_filter_tty_colon(const struct dirent *d)
424 {
425         return strncmp(d->d_name, "tty:", 4) == 0;
426 }
427
428 static int
429 dir_filter_tty(const struct dirent *d)
430 {
431         return strncmp(d->d_name, "tty", 3) == 0;
432 }
433
434 struct altos_usbdev {
435         char    *sys;
436         char    *tty;
437         char    *manufacturer;
438         char    *product_name;
439         int     serial; /* AltOS always uses simple integer serial numbers */
440         int     idProduct;
441         int     idVendor;
442 };
443
444 static char *
445 usb_tty(char *sys)
446 {
447         char *base;
448         int num_configs;
449         int config;
450         struct dirent **namelist;
451         int interface;
452         int num_interfaces;
453         char endpoint_base[20];
454         char *endpoint_full;
455         char *tty_dir;
456         int ntty;
457         char *tty;
458
459         base = cc_basename(sys);
460         num_configs = load_hex(sys, "bNumConfigurations");
461         num_interfaces = load_hex(sys, "bNumInterfaces");
462         for (config = 1; config <= num_configs; config++) {
463                 for (interface = 0; interface < num_interfaces; interface++) {
464                         sprintf(endpoint_base, "%s:%d.%d",
465                                 base, config, interface);
466                         endpoint_full = cc_fullname(sys, endpoint_base);
467
468
469                         /* Check for tty:ttyACMx style names
470                          */
471                         ntty = scandir(endpoint_full, &namelist,
472                                        dir_filter_tty_colon,
473                                        alphasort);
474                         if (ntty > 0) {
475                                 free(endpoint_full);
476                                 tty = cc_fullname("/dev", namelist[0]->d_name + 4);
477                                 free(namelist);
478                                 return tty;
479                         }
480
481                         /* Check for tty/ttyACMx style names
482                          */
483                         tty_dir = cc_fullname(endpoint_full, "tty");
484                         ntty = scandir(tty_dir, &namelist,
485                                        dir_filter_tty,
486                                        alphasort);
487                         free (tty_dir);
488                         if (ntty > 0) {
489                                 tty = cc_fullname("/dev", namelist[0]->d_name);
490                                 free(endpoint_full);
491                                 free(namelist);
492                                 return tty;
493                         }
494
495                         /* Check for ttyACMx style names
496                          */
497                         ntty = scandir(endpoint_full, &namelist,
498                                        dir_filter_tty,
499                                        alphasort);
500                         free(endpoint_full);
501                         if (ntty > 0) {
502                                 tty = cc_fullname("/dev", namelist[0]->d_name);
503                                 free(namelist);
504                                 return tty;
505                         }
506
507                 }
508         }
509         return NULL;
510 }
511
512 static struct altos_usbdev *
513 usb_scan_device(char *sys)
514 {
515         struct altos_usbdev *usbdev;
516         char *tty;
517
518         tty = usb_tty(sys);
519         if (!tty)
520                 return NULL;
521         usbdev = calloc(1, sizeof (struct altos_usbdev));
522         if (!usbdev)
523                 return NULL;
524         usbdev->sys = strdup(sys);
525         usbdev->manufacturer = load_string(sys, "manufacturer");
526         usbdev->product_name = load_string(sys, "product");
527         usbdev->serial = load_dec(sys, "serial");
528         usbdev->idProduct = load_hex(sys, "idProduct");
529         usbdev->idVendor = load_hex(sys, "idVendor");
530         usbdev->tty = tty;
531         return usbdev;
532 }
533
534 static void
535 usbdev_free(struct altos_usbdev *usbdev)
536 {
537         free(usbdev->sys);
538         free(usbdev->manufacturer);
539         free(usbdev->product_name);
540         /* this can get used as a return value */
541         if (usbdev->tty)
542                 free(usbdev->tty);
543         free(usbdev);
544 }
545
546 #define USB_DEVICES     "/sys/bus/usb/devices"
547
548 static int
549 dir_filter_dev(const struct dirent *d)
550 {
551         const char      *n = d->d_name;
552         char    c;
553
554         while ((c = *n++)) {
555                 if (isdigit(c))
556                         continue;
557                 if (c == '-')
558                         continue;
559                 if (c == '.' && n != d->d_name + 1)
560                         continue;
561                 return 0;
562         }
563         return 1;
564 }
565
566 struct altos_list {
567         struct altos_usbdev     **dev;
568         int                     current;
569         int                     ndev;
570 };
571
572 struct altos_list *
573 altos_list_start(void)
574 {
575         int                     e;
576         struct dirent           **ents;
577         char                    *dir;
578         struct altos_usbdev     *dev;
579         struct altos_list       *devs;
580         int                     n;
581
582         devs = calloc(1, sizeof (struct altos_list));
583         if (!devs)
584                 return NULL;
585
586         n = scandir (USB_DEVICES, &ents,
587                      dir_filter_dev,
588                      alphasort);
589         if (!n)
590                 return 0;
591         for (e = 0; e < n; e++) {
592                 dir = cc_fullname(USB_DEVICES, ents[e]->d_name);
593                 dev = usb_scan_device(dir);
594                 if (!dev)
595                         continue;
596                 free(dir);
597                 if (devs->dev)
598                         devs->dev = realloc(devs->dev,
599                                             (devs->ndev + 1) * sizeof (struct usbdev *));
600                 else
601                         devs->dev = malloc (sizeof (struct usbdev *));
602                 devs->dev[devs->ndev++] = dev;
603         }
604         free(ents);
605         devs->current = 0;
606         return devs;
607 }
608
609 PUBLIC struct altos_list *
610 altos_ftdi_list_start(void)
611 {
612         return altos_list_start();
613 }
614
615 int
616 altos_list_next(struct altos_list *list, struct altos_device *device)
617 {
618         struct altos_usbdev *dev;
619         if (list->current >= list->ndev) {
620                 return 0;
621         }
622         dev = list->dev[list->current];
623         strcpy(device->name, dev->product_name);
624         device->vendor = dev->idVendor;
625         device->product = dev->idProduct;
626         strcpy(device->path, dev->tty);
627         device->serial = dev->serial;
628         list->current++;
629         return 1;
630 }
631
632 void
633 altos_list_finish(struct altos_list *usbdevs)
634 {
635         int     i;
636
637         if (!usbdevs)
638                 return;
639         for (i = 0; i < usbdevs->ndev; i++)
640                 usbdev_free(usbdevs->dev[i]);
641         free(usbdevs);
642 }
643
644 struct altos_bt_list {
645         inquiry_info    *ii;
646         int             sock;
647         int             dev_id;
648         int             rsp;
649         int             num_rsp;
650 };
651
652 #define INQUIRY_MAX_RSP 255
653
654 struct altos_bt_list *
655 altos_bt_list_start(int inquiry_time)
656 {
657         struct altos_bt_list    *bt_list;
658
659         bt_list = calloc(1, sizeof (struct altos_bt_list));
660         if (!bt_list)
661                 goto no_bt_list;
662
663         bt_list->ii = calloc(INQUIRY_MAX_RSP, sizeof (inquiry_info));
664         if (!bt_list->ii)
665                 goto no_ii;
666         bt_list->dev_id = hci_get_route(NULL);
667         if (bt_list->dev_id < 0)
668                 goto no_dev_id;
669
670         bt_list->sock = hci_open_dev(bt_list->dev_id);
671         if (bt_list->sock < 0)
672                 goto no_sock;
673
674         bt_list->num_rsp = hci_inquiry(bt_list->dev_id,
675                                        inquiry_time,
676                                        INQUIRY_MAX_RSP,
677                                        NULL,
678                                        &bt_list->ii,
679                                        IREQ_CACHE_FLUSH);
680         if (bt_list->num_rsp < 0)
681                 goto no_rsp;
682
683         bt_list->rsp = 0;
684         return bt_list;
685
686 no_rsp:
687         close(bt_list->sock);
688 no_sock:
689 no_dev_id:
690         free(bt_list->ii);
691 no_ii:
692         free(bt_list);
693 no_bt_list:
694         return NULL;
695 }
696
697 int
698 altos_bt_list_next(struct altos_bt_list *bt_list,
699                    struct altos_bt_device *device)
700 {
701         inquiry_info    *ii;
702
703         if (bt_list->rsp >= bt_list->num_rsp)
704                 return 0;
705
706         ii = &bt_list->ii[bt_list->rsp];
707         ba2str(&ii->bdaddr, device->addr);
708         memset(&device->name, '\0', sizeof (device->name));
709         if (hci_read_remote_name(bt_list->sock, &ii->bdaddr,
710                                  sizeof (device->name),
711                                  device->name, 0) < 0) {
712                 strcpy(device->name, "[unknown]");
713         }
714         bt_list->rsp++;
715         return 1;
716 }
717
718 void
719 altos_bt_list_finish(struct altos_bt_list *bt_list)
720 {
721         close(bt_list->sock);
722         free(bt_list->ii);
723         free(bt_list);
724 }
725
726 void
727 altos_bt_fill_in(char *name, char *addr, struct altos_bt_device *device)
728 {
729         strncpy(device->name, name, sizeof (device->name));
730         device->name[sizeof(device->name)-1] = '\0';
731         strncpy(device->addr, addr, sizeof (device->addr));
732         device->addr[sizeof(device->addr)-1] = '\0';
733 }
734
735 struct altos_file *
736 altos_bt_open(struct altos_bt_device *device)
737 {
738         struct sockaddr_rc addr = { 0 };
739         int     status, i;
740         struct altos_file *file;
741
742         file = calloc(1, sizeof (struct altos_file));
743         if (!file)
744                 goto no_file;
745         addr.rc_family = AF_BLUETOOTH;
746         addr.rc_channel = 1;
747         str2ba(device->addr, &addr.rc_bdaddr);
748
749         for (i = 0; i < 5; i++) {
750                 file->fd = socket(AF_BLUETOOTH, SOCK_STREAM, BTPROTO_RFCOMM);
751                 if (file->fd < 0) {
752                         altos_set_last_posix_error();
753                         goto no_sock;
754                 }
755
756                 status = connect(file->fd,
757                                  (struct sockaddr *)&addr,
758                                  sizeof(addr));
759                 if (status >= 0 || errno != EBUSY)
760                         break;
761                 close(file->fd);
762                 usleep(100 * 1000);
763         }
764         if (status < 0) {
765                 altos_set_last_posix_error();
766                 goto no_link;
767         }
768         usleep(100 * 1000);
769
770 #ifdef USE_POLL
771         pipe(file->pipe);
772 #else
773         file->out_fd = dup(file->fd);
774 #endif
775         return file;
776 no_link:
777         close(file->fd);
778 no_sock:
779         free(file);
780 no_file:
781         return NULL;
782 }
783
784 #endif
785
786 #ifdef DARWIN
787
788 #include <IOKitLib.h>
789 #include <IOKit/usb/USBspec.h>
790 #include <sys/param.h>
791 #include <paths.h>
792 #include <CFNumber.h>
793 #include <IOBSD.h>
794 #include <string.h>
795 #include <stdio.h>
796 #include <stdlib.h>
797
798 struct altos_list {
799         io_iterator_t iterator;
800         int ftdi;
801 };
802
803 static int
804 get_string(io_object_t object, CFStringRef entry, char *result, int result_len)
805 {
806         CFTypeRef entry_as_string;
807         Boolean got_string;
808
809         entry_as_string = IORegistryEntrySearchCFProperty (object,
810                                                            kIOServicePlane,
811                                                            entry,
812                                                            kCFAllocatorDefault,
813                                                            kIORegistryIterateRecursively);
814         if (entry_as_string) {
815                 got_string = CFStringGetCString(entry_as_string,
816                                                 result, result_len,
817                                                 kCFStringEncodingASCII);
818     
819                 CFRelease(entry_as_string);
820                 if (got_string)
821                         return 1;
822         }
823         return 0;
824 }
825
826 static int
827 get_number(io_object_t object, CFStringRef entry, int *result)
828 {
829         CFTypeRef entry_as_number;
830         Boolean got_number;
831         
832         entry_as_number = IORegistryEntrySearchCFProperty (object,
833                                                            kIOServicePlane,
834                                                            entry,
835                                                            kCFAllocatorDefault,
836                                                            kIORegistryIterateRecursively);
837         if (entry_as_number) {
838                 got_number = CFNumberGetValue(entry_as_number,
839                                               kCFNumberIntType,
840                                               result);
841                 if (got_number)
842                         return 1;
843         }
844         return 0;
845 }
846
847 PUBLIC struct altos_list *
848 altos_list_start(void)
849 {
850         struct altos_list *list = calloc (sizeof (struct altos_list), 1);
851         CFMutableDictionaryRef matching_dictionary = IOServiceMatching("IOUSBDevice");
852         io_iterator_t tdIterator;
853         io_object_t tdObject;
854         kern_return_t ret;
855         int i;
856
857         ret = IOServiceGetMatchingServices(kIOMasterPortDefault, matching_dictionary, &list->iterator);
858         if (ret != kIOReturnSuccess) {
859                 free(list);
860                 return NULL;
861         }
862         list->ftdi = 0;
863         return list;
864 }
865
866 PUBLIC struct altos_list *
867 altos_ftdi_list_start(void)
868 {
869         struct altos_list *list = altos_list_start();
870
871         if (list)
872                 list->ftdi = 1;
873         return list;
874 }
875
876 PUBLIC int
877 altos_list_next(struct altos_list *list, struct altos_device *device)
878 {
879         io_object_t object;
880         char serial_string[128];
881
882         for (;;) {
883                 object = IOIteratorNext(list->iterator);
884                 if (!object)
885                         return 0;
886   
887                 if (!get_number (object, CFSTR(kUSBVendorID), &device->vendor) ||
888                     !get_number (object, CFSTR(kUSBProductID), &device->product))
889                         continue;
890                 if (list->ftdi) {
891                         if (device->vendor != 0x0403)
892                                 continue;
893                 } else {
894                         if (device->vendor != 0xfffe)
895                                 continue;
896                         if (device->product < 0x000a || 0x0013 < device->product)
897                                 continue;
898                 }
899                 if (get_string (object, CFSTR("IOCalloutDevice"), device->path, sizeof (device->path)) &&
900                     get_string (object, CFSTR("USB Product Name"), device->name, sizeof (device->name)) &&
901                     get_string (object, CFSTR("USB Serial Number"), serial_string, sizeof (serial_string))) {
902                         device->serial = atoi(serial_string);
903                         return 1;
904                 }
905         }
906 }
907
908 PUBLIC void
909 altos_list_finish(struct altos_list *list)
910 {
911         IOObjectRelease (list->iterator);
912         free(list);
913 }
914
915 struct altos_bt_list {
916         int             sock;
917         int             dev_id;
918         int             rsp;
919         int             num_rsp;
920 };
921
922 #define INQUIRY_MAX_RSP 255
923
924 struct altos_bt_list *
925 altos_bt_list_start(int inquiry_time)
926 {
927         return NULL;
928 }
929
930 int
931 altos_bt_list_next(struct altos_bt_list *bt_list,
932                    struct altos_bt_device *device)
933 {
934         return 0;
935 }
936
937 void
938 altos_bt_list_finish(struct altos_bt_list *bt_list)
939 {
940 }
941
942 void
943 altos_bt_fill_in(char *name, char *addr, struct altos_bt_device *device)
944 {
945         strncpy(device->name, name, sizeof (device->name));
946         device->name[sizeof(device->name)-1] = '\0';
947         strncpy(device->addr, addr, sizeof (device->addr));
948         device->addr[sizeof(device->addr)-1] = '\0';
949 }
950
951 struct altos_file *
952 altos_bt_open(struct altos_bt_device *device)
953 {
954         return NULL;
955 }
956
957 #endif
958
959
960 #ifdef WINDOWS
961
962 #include <stdlib.h>
963 #include <windows.h>
964 #include <setupapi.h>
965
966 struct altos_list {
967         HDEVINFO        dev_info;
968         int             index;
969         int             ftdi;
970 };
971
972 #define USB_BUF_SIZE    64
973
974 struct altos_file {
975         HANDLE                          handle;
976         unsigned char                   out_data[USB_BUF_SIZE];
977         int                             out_used;
978         unsigned char                   in_data[USB_BUF_SIZE];
979         int                             in_used;
980         int                             in_read;
981         OVERLAPPED                      ov_read;
982         BOOL                            pend_read;
983         OVERLAPPED                      ov_write;
984 };
985
986 #include <stdarg.h>
987
988 static void
989 log_message(char *fmt, ...)
990 {
991         static  FILE *log = NULL;
992         va_list a;
993
994         if (!log)
995                 log = fopen("\\temp\\altos.txt", "w");
996         if (log) {
997                 va_start(a, fmt);
998                 vfprintf(log, fmt, a);
999                 va_end(a);
1000                 fflush(log);
1001         }
1002 }
1003
1004 static void
1005 _altos_set_last_windows_error(char *file, int line)
1006 {
1007         DWORD   error = GetLastError();
1008         TCHAR   message[1024];
1009         FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM,
1010                       0,
1011                       error,
1012                       0,
1013                       message,
1014                       sizeof (message) / sizeof (TCHAR),
1015                       NULL);
1016         if (error != ERROR_SUCCESS)
1017                 log_message ("%s:%d %s\n", file, line, message);
1018         altos_set_last_error(error, message);
1019 }
1020
1021 #define altos_set_last_windows_error() _altos_set_last_windows_error(__FILE__, __LINE__)
1022
1023 PUBLIC struct altos_list *
1024 altos_list_start(void)
1025 {
1026         struct altos_list       *list = calloc(1, sizeof (struct altos_list));
1027
1028         if (!list)
1029                 return NULL;
1030         list->dev_info = SetupDiGetClassDevs(NULL, "USB", NULL,
1031                                              DIGCF_ALLCLASSES|DIGCF_PRESENT);
1032         if (list->dev_info == INVALID_HANDLE_VALUE) {
1033                 altos_set_last_windows_error();
1034                 free(list);
1035                 return NULL;
1036         }
1037         list->index = 0;
1038         list->ftdi = 0;
1039         return list;
1040 }
1041
1042 PUBLIC struct altos_list *
1043 altos_ftdi_list_start(void)
1044 {
1045         struct altos_list       *list = calloc(1, sizeof (struct altos_list));
1046
1047         if (!list)
1048                 return NULL;
1049         list->dev_info = SetupDiGetClassDevs(NULL, "FTDIBUS", NULL,
1050                                              DIGCF_ALLCLASSES|DIGCF_PRESENT);
1051         if (list->dev_info == INVALID_HANDLE_VALUE) {
1052                 altos_set_last_windows_error();
1053                 free(list);
1054                 return NULL;
1055         }
1056         list->index = 0;
1057         list->ftdi = 1;
1058         return list;
1059 }
1060
1061 PUBLIC int
1062 altos_list_next(struct altos_list *list, struct altos_device *device)
1063 {
1064         SP_DEVINFO_DATA dev_info_data;
1065         BYTE            port[128];
1066         DWORD           port_len;
1067         char            friendlyname[256];
1068         BYTE            symbolic[256];
1069         DWORD           symbolic_len;
1070         HKEY            dev_key;
1071         unsigned int    vid, pid;
1072         int             serial;
1073         HRESULT         result;
1074         DWORD           friendlyname_type;
1075         DWORD           friendlyname_len;
1076
1077         dev_info_data.cbSize = sizeof (SP_DEVINFO_DATA);
1078         while(SetupDiEnumDeviceInfo(list->dev_info, list->index,
1079                                     &dev_info_data))
1080         {
1081                 list->index++;
1082
1083                 dev_key = SetupDiOpenDevRegKey(list->dev_info, &dev_info_data,
1084                                                DICS_FLAG_GLOBAL, 0, DIREG_DEV,
1085                                                KEY_READ);
1086                 if (dev_key == INVALID_HANDLE_VALUE) {
1087                         altos_set_last_windows_error();
1088                         continue;
1089                 }
1090
1091                 if (list->ftdi) {
1092                         vid = 0x0403;
1093                         pid = 0x6015;
1094                         serial = 0;
1095                 } else {
1096                         /* Fetch symbolic name for this device and parse out
1097                          * the vid/pid/serial info */
1098                         symbolic_len = sizeof(symbolic);
1099                         result = RegQueryValueEx(dev_key, "SymbolicName", NULL, NULL,
1100                                                  symbolic, &symbolic_len);
1101                         if (result != 0) {
1102                                 altos_set_last_windows_error();
1103                                 RegCloseKey(dev_key);
1104                                 continue;
1105                         }
1106                         vid = pid = serial = 0;
1107                         sscanf((char *) symbolic + sizeof("\\??\\USB#VID_") - 1,
1108                                "%04X", &vid);
1109                         sscanf((char *) symbolic + sizeof("\\??\\USB#VID_XXXX&PID_") - 1,
1110                                "%04X", &pid);
1111                         sscanf((char *) symbolic + sizeof("\\??\\USB#VID_XXXX&PID_XXXX#") - 1,
1112                                "%d", &serial);
1113                 }
1114
1115                 /* Fetch the com port name */
1116                 port_len = sizeof (port);
1117                 result = RegQueryValueEx(dev_key, "PortName", NULL, NULL,
1118                                          port, &port_len);
1119                 RegCloseKey(dev_key);
1120                 if (result != 0) {
1121                         altos_set_last_windows_error();
1122                         continue;
1123                 }
1124
1125                 /* Fetch the device description which is the device name,
1126                  * with firmware that has unique USB ids */
1127                 friendlyname_len = sizeof (friendlyname);
1128                 if(!SetupDiGetDeviceRegistryProperty(list->dev_info,
1129                                                      &dev_info_data,
1130                                                      SPDRP_FRIENDLYNAME,
1131                                                      &friendlyname_type,
1132                                                      (BYTE *)friendlyname,
1133                                                      sizeof(friendlyname),
1134                                                      &friendlyname_len))
1135                 {
1136                         altos_set_last_windows_error();
1137                         continue;
1138                 }
1139                 device->vendor = vid;
1140                 device->product = pid;
1141                 device->serial = serial;
1142                 strcpy(device->name, friendlyname);
1143
1144                 strcpy(device->path, (char *) port);
1145                 return 1;
1146         }
1147         result = GetLastError();
1148         if (result != ERROR_NO_MORE_ITEMS)
1149                 altos_set_last_windows_error();
1150         return 0;
1151 }
1152
1153 PUBLIC void
1154 altos_list_finish(struct altos_list *list)
1155 {
1156         SetupDiDestroyDeviceInfoList(list->dev_info);
1157         free(list);
1158 }
1159
1160 static int
1161 altos_queue_read(struct altos_file *file)
1162 {
1163         DWORD   got;
1164         if (file->pend_read)
1165                 return LIBALTOS_SUCCESS;
1166
1167         if (!ReadFile(file->handle, file->in_data, USB_BUF_SIZE, &got, &file->ov_read)) {
1168                 if (GetLastError() != ERROR_IO_PENDING) {
1169                         altos_set_last_windows_error();
1170                         return LIBALTOS_ERROR;
1171                 }
1172                 file->pend_read = TRUE;
1173         } else {
1174                 file->pend_read = FALSE;
1175                 file->in_read = 0;
1176                 file->in_used = got;
1177         }
1178         return LIBALTOS_SUCCESS;
1179 }
1180
1181 static int
1182 altos_wait_read(struct altos_file *file, int timeout)
1183 {
1184         DWORD   ret;
1185         DWORD   got;
1186
1187         if (!file->pend_read)
1188                 return LIBALTOS_SUCCESS;
1189
1190         if (!timeout)
1191                 timeout = INFINITE;
1192
1193         ret = WaitForSingleObject(file->ov_read.hEvent, timeout);
1194         switch (ret) {
1195         case WAIT_OBJECT_0:
1196                 if (!GetOverlappedResult(file->handle, &file->ov_read, &got, FALSE)) {
1197                         altos_set_last_windows_error();
1198                         return LIBALTOS_ERROR;
1199                 }
1200                 file->pend_read = FALSE;
1201                 file->in_read = 0;
1202                 file->in_used = got;
1203                 break;
1204         case WAIT_TIMEOUT:
1205                 return LIBALTOS_TIMEOUT;
1206                 break;
1207         default:
1208                 altos_set_last_windows_error();
1209                 return LIBALTOS_ERROR;
1210         }
1211         return LIBALTOS_SUCCESS;
1212 }
1213
1214 static int
1215 altos_fill(struct altos_file *file, int timeout)
1216 {
1217         int     ret;
1218
1219         if (file->in_read < file->in_used)
1220                 return LIBALTOS_SUCCESS;
1221
1222         file->in_read = file->in_used = 0;
1223
1224         ret = altos_queue_read(file);
1225         if (ret)
1226                 return ret;
1227         ret = altos_wait_read(file, timeout);
1228         if (ret)
1229                 return ret;
1230
1231         return LIBALTOS_SUCCESS;
1232 }
1233
1234 PUBLIC int
1235 altos_flush(struct altos_file *file)
1236 {
1237         DWORD           put;
1238         unsigned char   *data = file->out_data;
1239         int             used = file->out_used;
1240         DWORD           ret;
1241
1242         while (used) {
1243                 if (!WriteFile(file->handle, data, used, &put, &file->ov_write)) {
1244                         if (GetLastError() != ERROR_IO_PENDING) {
1245                                 altos_set_last_windows_error();
1246                                 return LIBALTOS_ERROR;
1247                         }
1248                         ret = WaitForSingleObject(file->ov_write.hEvent, INFINITE);
1249                         switch (ret) {
1250                         case WAIT_OBJECT_0:
1251                                 if (!GetOverlappedResult(file->handle, &file->ov_write, &put, FALSE)) {
1252                                         altos_set_last_windows_error();
1253                                         return LIBALTOS_ERROR;
1254                                 }
1255                                 break;
1256                         default:
1257                                 altos_set_last_windows_error();
1258                                 return LIBALTOS_ERROR;
1259                         }
1260                 }
1261                 data += put;
1262                 used -= put;
1263         }
1264         file->out_used = 0;
1265         return LIBALTOS_SUCCESS;
1266 }
1267
1268 static HANDLE
1269 open_serial(char *full_name)
1270 {
1271         HANDLE  handle;
1272         DCB     dcb;
1273
1274         handle = CreateFile(full_name, GENERIC_READ|GENERIC_WRITE,
1275                             0, NULL, OPEN_EXISTING,
1276                             FILE_FLAG_OVERLAPPED, NULL);
1277
1278         if (handle == INVALID_HANDLE_VALUE) {
1279                 altos_set_last_windows_error();
1280                 return INVALID_HANDLE_VALUE;
1281         }
1282
1283         if (!GetCommState(handle, &dcb)) {
1284                 altos_set_last_windows_error();
1285                 CloseHandle(handle);
1286                 return INVALID_HANDLE_VALUE;
1287         }
1288         dcb.BaudRate = CBR_9600;
1289         dcb.fBinary = TRUE;
1290         dcb.fParity = FALSE;
1291         dcb.fOutxCtsFlow = FALSE;
1292         dcb.fOutxDsrFlow = FALSE;
1293         dcb.fDtrControl = DTR_CONTROL_ENABLE;
1294         dcb.fDsrSensitivity = FALSE;
1295         dcb.fTXContinueOnXoff = FALSE;
1296         dcb.fOutX = FALSE;
1297         dcb.fInX = FALSE;
1298         dcb.fErrorChar = FALSE;
1299         dcb.fNull = FALSE;
1300         dcb.fRtsControl = RTS_CONTROL_ENABLE;
1301         dcb.fAbortOnError = FALSE;
1302         dcb.XonLim = 10;
1303         dcb.XoffLim = 10;
1304         dcb.ByteSize = 8;
1305         dcb.Parity = NOPARITY;
1306         dcb.StopBits = ONESTOPBIT;
1307         dcb.XonChar = 17;
1308         dcb.XoffChar = 19;
1309 #if 0
1310         dcb.ErrorChar = 0;
1311         dcb.EofChar = 0;
1312         dcb.EvtChar = 0;
1313 #endif
1314         if (!SetCommState(handle, &dcb)) {
1315                 altos_set_last_windows_error();
1316                 CloseHandle(handle);
1317                 return INVALID_HANDLE_VALUE;
1318         }
1319         return handle;
1320 }
1321
1322 PUBLIC struct altos_file *
1323 altos_open(struct altos_device *device)
1324 {
1325         struct altos_file       *file = calloc (1, sizeof (struct altos_file));
1326         char    full_name[64];
1327         COMMTIMEOUTS timeouts;
1328         int i;
1329
1330         if (!file)
1331                 return NULL;
1332
1333         strcpy(full_name, "\\\\.\\");
1334         strcat(full_name, device->path);
1335
1336         file->handle = INVALID_HANDLE_VALUE;
1337
1338         for (i = 0; i < 5; i++) {
1339                 file->handle = open_serial(full_name);
1340                 if (file->handle != INVALID_HANDLE_VALUE)
1341                         break;
1342                 Sleep(100);
1343         }
1344         
1345         if (file->handle == INVALID_HANDLE_VALUE) {
1346                 free(file);
1347                 return NULL;
1348         }
1349
1350         /* The FTDI driver doesn't appear to work right unless you open it twice */
1351         if (device->vendor == 0x0403) {
1352                 CloseHandle(file->handle);
1353                 file->handle = open_serial(full_name);
1354                 if (file->handle == INVALID_HANDLE_VALUE) {
1355                         free(file);
1356                         return NULL;
1357                 }
1358         }
1359
1360         timeouts.ReadIntervalTimeout = MAXDWORD;
1361         timeouts.ReadTotalTimeoutMultiplier = MAXDWORD;
1362         timeouts.ReadTotalTimeoutConstant = 1 << 30;    /* almost forever */
1363         timeouts.WriteTotalTimeoutMultiplier = 0;
1364         timeouts.WriteTotalTimeoutConstant = 0;
1365         SetCommTimeouts(file->handle, &timeouts);
1366
1367         file->ov_read.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
1368         file->ov_write.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
1369
1370         return file;
1371 }
1372
1373 PUBLIC void
1374 altos_close(struct altos_file *file)
1375 {
1376         if (file->handle != INVALID_HANDLE_VALUE) {
1377                 CloseHandle(file->handle);
1378                 file->handle = INVALID_HANDLE_VALUE;
1379                 SetEvent(file->ov_read.hEvent);
1380                 SetEvent(file->ov_write.hEvent);
1381                 CloseHandle(file->ov_read.hEvent);
1382                 CloseHandle(file->ov_write.hEvent);
1383         }
1384 }
1385
1386 PUBLIC void
1387 altos_free(struct altos_file *file)
1388 {
1389         altos_close(file);
1390         free(file);
1391 }
1392
1393 PUBLIC int
1394 altos_putchar(struct altos_file *file, char c)
1395 {
1396         int     ret;
1397
1398         if (file->out_used == USB_BUF_SIZE) {
1399                 ret = altos_flush(file);
1400                 if (ret)
1401                         return ret;
1402         }
1403         file->out_data[file->out_used++] = c;
1404         if (file->out_used == USB_BUF_SIZE)
1405                 return altos_flush(file);
1406         return LIBALTOS_SUCCESS;
1407 }
1408
1409 PUBLIC int
1410 altos_getchar(struct altos_file *file, int timeout)
1411 {
1412         int     ret;
1413         while (file->in_read == file->in_used) {
1414                 if (file->handle == INVALID_HANDLE_VALUE) {
1415                         altos_set_last_windows_error();
1416                         return LIBALTOS_ERROR;
1417                 }
1418                 ret = altos_fill(file, timeout);
1419                 if (ret)
1420                         return ret;
1421         }
1422         return file->in_data[file->in_read++];
1423 }
1424
1425 struct altos_bt_list *
1426 altos_bt_list_start(int inquiry_time)
1427 {
1428         return NULL;
1429 }
1430
1431 int
1432 altos_bt_list_next(struct altos_bt_list *bt_list,
1433                    struct altos_bt_device *device)
1434 {
1435         return 0;
1436 }
1437
1438 void
1439 altos_bt_list_finish(struct altos_bt_list *bt_list)
1440 {
1441         free(bt_list);
1442 }
1443
1444 void
1445 altos_bt_fill_in(char *name, char *addr, struct altos_bt_device *device)
1446 {
1447         strncpy(device->name, name, sizeof (device->name));
1448         device->name[sizeof(device->name)-1] = '\0';
1449         strncpy(device->addr, addr, sizeof (device->addr));
1450         device->addr[sizeof(device->addr)-1] = '\0';
1451 }
1452
1453 struct altos_file *
1454 altos_bt_open(struct altos_bt_device *device)
1455 {
1456         return NULL;
1457 }
1458
1459 #endif