+#include "commands.h"
+
+static int send_binary(int s, char *buf, int len)
+{
+ int ret;
+
+ while(len > 0) {
+ ret = write(s, buf, len);
+ if (ret == -1) {
+ perror("write");
+ return ret;
+ }
+ buf += ret;
+ len -= ret;
+ }
+
+ return 0;
+}
+
+static int send_text(int s, char *buf)
+{
+ return send_binary(s, buf, strlen(buf));
+}
+
+static void serve_index(int s)
+{
+ send_text(s, "HTTP/1.0 200 OK");
+ send_text(s, "Content-type: text/html\n\n");
+ send_text(s, "<html><head><title>Rigol DS1000</title></head><body bgcolor=\"#ffffff\" text=\"#000000\">\n");
+ send_text(s, "<img src=\"/lcd.png\" height=\"234\" width=\"320\">\n");
+ send_text(s, "</body></html>\n");
+}
+
+static void serve_lcd(int s, struct usb_dev_handle *sc)
+{
+ char buf[256];
+ int imglen;
+ unsigned char *png;
+
+ usbtmc_claim(sc);
+ png = get_lcd(sc, &imglen, 0);
+ usbtmc_release(sc);
+
+ if (png == NULL)
+ return;
+
+
+ send_text(s, "HTTP/1.0 200 OK");
+ send_text(s, "Content-type: image/png\n");
+ snprintf(buf, sizeof(buf), "Content-length: %u\n\n", imglen);
+ send_text(s, buf);
+ send_binary(s, (char*)png, imglen);
+ free(png);
+}
+
+static void parse_request(int s, struct usb_dev_handle *sc)
+{
+ int ret;
+ char buf[1024];
+ char file[1024];
+ const char delim[] = " \t\x0d\x0a";
+ const char crlf[] = "\x0d\x0a";
+ char *saveptr;
+ char *token;
+
+ ret=read(s, buf, sizeof(buf)-1);
+ if (ret == -1) {
+ perror("read");
+ return;
+ }
+ buf[ret] = 0;
+
+ token = strtok_r(buf, delim, &saveptr);
+ /* TODO: Only GET... */
+ token = strtok_r(NULL, delim, &saveptr);
+ bzero(&file, sizeof(file));
+ strncpy(file, token, sizeof(file)-1);
+
+ do {
+ token = strtok_r(NULL, crlf, &saveptr);
+ /* TODO: FIXME */
+ #if 0
+ if (token == NULL) {
+ ret=read(s, buf, sizeof(buf)-1);
+ if (ret == -1) {
+ perror("read");
+ return;
+ }
+ buf[ret] = 0;
+ token = strtok_r(buf, crlf, &saveptr);
+ }
+ #endif
+ } while(token != NULL);
+
+ if (strcmp("/", file) == 0) {
+ serve_index(s);
+ } else if (strcmp("/lcd.png", file) == 0) {
+ serve_lcd(s, sc);
+ }
+}