summaryrefslogtreecommitdiff
path: root/zmq-camera.c
blob: 8ce015a8fe3b1a70b03f4ece92b30c3d41f01895 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
/*
    Copyright (c) 2010 Martin Lucina

    This file is part of zeromq-examples.

    zeromq-examples is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    zeromq-examples is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include <arpa/inet.h>
#include <assert.h>
#include <pthread.h>
#include <signal.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>

#include <unicap.h>
#include <ucil.h>

#include <SDL/SDL.h>

#include <zmq.h>

/*
 *  Overall architecture:
 *
 *  zmq-camera uses 3 application threads:
 *
 *  1) the main thread, which receives and displays video from either the
 *     sender thread using inproc://local-camera if running in sender mode (-s)
 *     or from a remote endpoint specified by the user if running in 
 *     receive-only mode (-r).
 *
 *     the main thread also receives and handles signals and timers, 
 *     using inproc://local-signal and periodically polls for UI events.
 *
 *  2) the signal handling thread, which handles all signals synchronously
 *     using a sigwait() loop and sends a single message for each signal
 *     received to the main thread.
 *
 *  3) the sender thread which does the actual video capture and sends one
 *     message per raw video frame both to inproc://local-camera so that the
 *     user sees what they are sending and to the remote endpoint specified.
 *
 *  Message formats:
 *
 *  inproc://local-signal
 *
 *  [ signo (int) ]
 *
 *  Video data:
 *
 *  [ width (uint32_t in network byte order),
 *    height (uint32_t in network byte order),
 *    (RGB24 pixel data) ]
 *
 */

#define FOURCC(a,b,c,d) (unsigned int)((((unsigned int)d)<<24)+\
    (((unsigned int)c)<<16)+(((unsigned int)b)<<8)+a)

/* inproc endpoint used to provide the "local loopback" view of the camera */
const char local_camera[] = "inproc://local-camera";

/* inproc endpoint used for signalling the main thread */
const char local_signal[] = "inproc://local-signal";

/*
 *  Sender thread
 */

/* Sender thread initialiser */
struct sender_args_t
{
    const char *endpoint;
    void *ctx;
    int frame_rate;
};

void *sender_thread (void *arg)
{
    struct sender_args_t *sender_args;
    void *s;
    int rc;
    unicap_handle_t handle;
    unicap_device_t device;
    unicap_format_t src_format;
    unicap_format_t dest_format;
    unicap_data_buffer_t src_buffer;
    unicap_data_buffer_t dest_buffer;
    unicap_data_buffer_t *returned_buffer;
    int conversion_found = 0;
    int index = 0;

    sender_args = (struct sender_args_t *)arg;

    /* Create a ZMQ_PUB socket for sending video data and connect it to both
       an inproc endpoint for the local loopback view and bind to the remote
       endpoint specified by the user. */
    s = zmq_socket (sender_args->ctx, ZMQ_PUB);
    assert (s);
    rc = zmq_connect (s, local_camera);
    assert (rc == 0);
    rc = zmq_bind (s, sender_args->endpoint);
    if (rc != 0) {
        fprintf (stderr, "zmq_bind (\"%s\"): %s\n", sender_args->endpoint,
            zmq_strerror (errno));
        exit (1);
    }

    /* Open first available video capture device. */
    if (!SUCCESS (unicap_enumerate_devices (NULL, &device, 0))) {
        fprintf (stderr, "Could not enumerate devices\n");
        exit (1);
    }
    if (!SUCCESS (unicap_open (&handle, &device))) {
        fprintf (stderr, "Failed to open device: %s\n", device.identifier);
        exit (1);
    }
    printf( "Opened video capture device: %s\n", device.identifier );

    /* Find a suitable video format that we can convert to RGB24. */
    while (SUCCESS (unicap_enumerate_formats (handle, NULL, &src_format,
          index))) {
        printf ("Trying video format: %s\n", src_format.identifier);
        if (ucil_conversion_supported (FOURCC ('R', 'G', 'B', '3'), 
            src_format.fourcc)) {
            conversion_found = 1;
            break;
        }
        index++;
    }
    if (!conversion_found) {
        fprintf (stderr, "Could not find a suitable video format\n\n");
        fprintf (stderr, "This probably means you have a cheap camera.\n");
        fprintf (stderr, "Feel free to either get a better camera, or improve\n");
        fprintf (stderr, "the colorspace conversion code in this example.\n");
        exit (1);
    }
    src_format.buffer_type = UNICAP_BUFFER_TYPE_USER;
    if (!SUCCESS (unicap_set_format (handle, &src_format))) {
        fprintf (stderr, "Failed to set video format\n");
        exit (1);
    }
    printf ("Using video format: %s [%dx%d]\n", 
        src_format.identifier, 
        src_format.size.width, 
        src_format.size.height);

    /* Clone destination format with equal dimensions, but RGB24 colorspace. */
    unicap_copy_format (&dest_format, &src_format);
    strcpy (dest_format.identifier, "RGB 24bpp");
    dest_format.fourcc = FOURCC ('R', 'G', 'B', '3');
    dest_format.bpp = 24;
    dest_format.buffer_size = dest_format.size.width *
        dest_format.size.height * 3;
    
    /* Initialise image buffers. */
    memset (&src_buffer, 0, sizeof (unicap_data_buffer_t));
    src_buffer.data = (unsigned char*) malloc (src_format.buffer_size);
    src_buffer.buffer_size = src_format.buffer_size;
    memset (&dest_buffer, 0, sizeof (unicap_data_buffer_t));
    dest_buffer.data = (unsigned char*) malloc (dest_format.buffer_size);
    dest_buffer.buffer_size = dest_format.buffer_size;
    dest_buffer.format = dest_format;

    /* Start video capture. */
    if (!SUCCESS (unicap_start_capture (handle))) {
        fprintf (stderr, "Failed to start capture on device: %s\n",
            device.identifier);
        exit (1);
    }

    /* Loop, publising one message per raw video frame. */
    while (1) {
        zmq_msg_t msg;
        size_t msg_size;
        uint32_t image_width, image_height;
        unsigned char *data;

        /* Queue buffer for video capture. */
        if (!SUCCESS (unicap_queue_buffer (handle, &src_buffer))) {
            fprintf (stderr, "Failed to queue a buffer on device: %s\n",
                device.identifier);
            exit (1);
        }

        /* Wait until buffer is ready. */
        if (!SUCCESS (unicap_wait_buffer (handle, &returned_buffer))) {
            fprintf (stderr, "Failed to wait for buffer on device: %s\n",
                device.identifier);
            exit (1);
        }

        /* Convert colorspace. */
        if (!SUCCESS (ucil_convert_buffer (&dest_buffer, &src_buffer))) {
            /* TODO: This fails sometimes for unknown reasons,
               just skip the frame for now. */
            /* fprintf (stderr, "Failed to convert video buffer\n"); */
        }

        /* Create 0MQ message and fill in data. */
        msg_size = dest_format.buffer_size + (2 * sizeof (uint32_t));
        rc = zmq_msg_init_size (&msg, msg_size);
        assert (rc == 0);
        data = (unsigned char *)zmq_msg_data (&msg);

        /* Image width (uint32_t in network byte order) */
        image_width = htonl (dest_format.size.width);
        memcpy (data, &image_width, sizeof (uint32_t));
        data += sizeof (uint32_t);

        /* Image height (uint32_t in network byte order) */
        image_height = htonl (dest_format.size.height);
        memcpy (data, &image_height, sizeof (uint32_t));
        data += sizeof (uint32_t);

        /* RGB24 image data. */
        memcpy (data, dest_buffer.data, dest_format.buffer_size);
        
        /* Send message to network. */
        rc = zmq_send (s, &msg, 0);
        assert (rc == 0);
        zmq_msg_close (&msg);

        /* Limit to maximum frame rate if requested */
        if (sender_args->frame_rate > 1)
            usleep (1000000 / sender_args->frame_rate);
    }
    
    return NULL;
}

/*
 *  Signal handling thread
 */

/* Signal thread initialiser */
struct signal_args_t
{
    void *ctx;
};

void *signal_thread (void *arg)
{
    sigset_t wait_set;
    int rc, signo;
    struct signal_args_t *signal_args;
    void *s;
    zmq_msg_t msg;

    signal_args = (struct signal_args_t *)arg;
    
    /* Create a ZMQ_PUB socket for publising signal events back to the
       main thread */
    s = zmq_socket (signal_args->ctx, ZMQ_PUB);
    assert (s);
    rc = zmq_connect (s, local_signal);
    assert (rc == 0);

    /* Handle various termination signals and SIGALRM for alarm timer */
    sigemptyset (&wait_set);
    sigaddset (&wait_set, SIGTERM);
    sigaddset (&wait_set, SIGINT);
    sigaddset (&wait_set, SIGQUIT);
    sigaddset (&wait_set, SIGALRM);

    /* Loop and send a message to the main thread for each signal received */
    while (1) {
        rc = sigwait (&wait_set, &signo);
        assert (rc == 0);
        rc = zmq_msg_init_size (&msg, sizeof (int));
        assert (rc == 0);
        memcpy (zmq_msg_data (&msg), &signo, sizeof (int));
        rc = zmq_send (s, &msg, 0);
        assert (rc == 0);
        zmq_msg_close (&msg);
    }
}

/*
 *  Main thread
 */

/* Print usage and exit. */
void err_usage(char *error)
{
    const char usage[] = \
        "Usage: zmq-camera [OPTIONS] -r | -s ENDPOINT\n"
        "Sends or receives video using 0MQ.\n"
        "\n"
        "Mode:\n"
        "  -r        receive video from ENDPOINT\n"
        "  -s        send video to ENDPOINT\n"
        "\n"
        "ENDPOINT is any 0MQ endpoint valid for a ZMQ_PUB/ZMQ_SUB socket.\n"
        "\n"
        "Options:\n"
        "  -f RATE   limit maximum frame rate to RATE\n"
        "\n"
        "Examples:\n"
        "\n"
        "  zmq-camera -s tcp://eth0:5555\n"
        "  zmq-camera -r tcp://eth0:5555\n";
   
    if (error)
        fprintf (stderr, "Error: %s\n", error);
    fprintf (stderr, "%s", usage);
    exit (1);
}

/* Main program. */
int main (int argc, char *argv [])
{
    void *ctx;
    void *s_video; /* Video socket */
    void *s_signal; /* Signalling socket */
    int rc;
    int opt;
    int opt_sender; /* Sender mode? */
    int opt_receiver;
    int opt_frame_rate, frame_rate;
    char *endpoint = NULL;
    SDL_Surface *screen = NULL;
    SDL_Surface *rgb_surface = NULL;
    SDL_Event event; /* Event from UI */
    uint32_t image_width, image_height;
    int sdl_initialised = 0;
    int quit = 0;
    sigset_t block_set;
    struct itimerval alarm_timer;
    uint64_t received_fps = 0; /* Frames received in the last second */
    uint64_t received_bps = 0; /* Bytes received in the last second */
    double received_mbps; /* Video bandwidth in megabits per second */
    char window_title[80];
    zmq_msg_t msg;
    size_t msg_size;
    unsigned char *data;
    pthread_t signal_pthread, sender_pthread;
    struct signal_args_t signal_args;
    struct sender_args_t sender_args;
    int received_signo; /* signo received from signal thread */

    /* Parse command line. */
    opt_sender = opt_receiver = opt_frame_rate = frame_rate = 0;
    while ((opt = getopt (argc, argv, "rsf:")) != -1) {
        switch (opt) {
        case 'r':
            opt_receiver = 1;
            break;
        case 's':
            opt_sender = 1;
            break;
        case 'f':
            opt_frame_rate = 1;
            frame_rate = atoi (optarg);
            if (frame_rate < 1)
                err_usage ("RATE must be numeric and non-zero");
            printf ("Limiting frame rate to %d fps\n", frame_rate);
            break;
        default:
            err_usage (NULL);
        }
    }
    if (optind >= argc)
        err_usage ("Expected ENDPOINT argument after options");
    if (opt_receiver && opt_sender)
        err_usage ("Please specify either the -r or -s option");
    if ((opt_receiver == 0) && (opt_sender == 0))
        err_usage ("Please specify either the -r or -s option");
    endpoint = argv [optind];

    /* Block signal handling in all application and 0MQ threads */
    sigfillset (&block_set);
    pthread_sigmask (SIG_SETMASK, &block_set, NULL);

    /* Initialise 0MQ infrastructure for 3 application threads and 
       a single I/O thread */
    ctx = zmq_init (3, 1, ZMQ_POLL);
    assert (ctx);
   
    /* Create a ZMQ_SUB socket to receive signal events and start the
       signal handling thread */
    s_signal = zmq_socket (ctx, ZMQ_SUB);
    assert (s_signal);
    rc = zmq_bind (s_signal, local_signal);
    assert (rc == 0);
    
    signal_args.ctx = ctx;
    rc = pthread_create (&signal_pthread, NULL, signal_thread, 
        (void *)&signal_args);
    assert (rc == 0);

    /* Create a ZMQ_SUB socket to receive video data. If we're sending video, 
       bind to an inproc: endpoint that the sender thread will connect to, 
       otherwise connect to the remote endpoint the user specified. */
    s_video = zmq_socket (ctx, ZMQ_SUB);
    assert (s_video);
    if (opt_sender) {
        rc = zmq_bind (s_video, local_camera);
        assert (rc == 0);
    
        /* Start the sender thread after binding to the inproc: endpoint
           since this must exist for it to connect. */
        sender_args.endpoint = endpoint;
        sender_args.ctx = ctx;
        sender_args.frame_rate = frame_rate;
        rc = pthread_create (&sender_pthread, NULL, sender_thread,
            (void *)&sender_args);
        assert (rc == 0);
    } 
    else {
        rc = zmq_connect (s_video, endpoint);
        if (rc != 0) {
            fprintf (stderr, "zmq_connect (\"%s\"): %s\n", endpoint,
                zmq_strerror (errno));
            exit (1);
        }
    }

    /* Subscribe to all messages on video and signal sockets. */
    rc = zmq_setsockopt (s_video, ZMQ_SUBSCRIBE, "", 0);
    assert (rc == 0);
    rc = zmq_setsockopt (s_signal, ZMQ_SUBSCRIBE, "", 0);
    assert (rc == 0);
    
    /* Set up an interval timer to fire SIGALRM once a second so that
       we can update bandwidth and fps statistics */
    alarm_timer.it_interval.tv_sec = 1;
    alarm_timer.it_interval.tv_usec = 0;
    alarm_timer.it_value.tv_sec = 1;
    alarm_timer.it_value.tv_usec = 0;
    rc = setitimer (ITIMER_REAL, &alarm_timer, NULL);
    assert (rc == 0);

    /* Intial window title is the endpoint we are receiving from */
    snprintf (window_title, 80, "%s", opt_sender ? local_camera : endpoint);

    /* Set up pollset */
    zmq_pollitem_t items[2];
    items[0].socket = s_video;
    items[0].events = ZMQ_POLLIN;
    items[1].socket = s_signal;
    items[1].events = ZMQ_POLLIN;

    /*
     *  Main event loop
     */
    while (!quit) {

        /* Poll for incoming messages on either the video or 
           signalling socket */
        rc = zmq_poll (items, 2, 100000);
        assert (rc >= 0);

        /*
         *  Signal received
         */
        if (items[1].revents == ZMQ_POLLIN) {
            rc = zmq_msg_init (&msg);
            assert (rc == 0);
            rc = zmq_recv (s_signal, &msg, 0);
            assert (rc == 0);
            assert (zmq_msg_size (&msg) == sizeof (int));
            memcpy (&received_signo, zmq_msg_data (&msg), sizeof (int));

            switch (received_signo) {
                /* Termination request */
                case SIGTERM:
                case SIGINT:
                case SIGQUIT:
                    fprintf (stderr, "Exiting.\n");
                    exit (1);
                /* Alarm timer fired, update bandwidth statistics */
                case SIGALRM:
                    received_mbps = (double)received_bps * 8 / (1<<20);
                    snprintf (window_title, 80, "%s (%llu fps, %.2lf Mbps)", 
                        opt_sender ? local_camera : endpoint,
                        (long long unsigned int) received_fps, received_mbps);
                    if (sdl_initialised)
                        SDL_WM_SetCaption (window_title, window_title);
                    received_fps = received_bps = 0;
                    break;
                /* Ignore anything else */
                default:
                    ; 
            }

            zmq_msg_close (&msg);
        }

        /*
         *  Video frame received
         */
        if (items[0].revents == ZMQ_POLLIN) {
            rc = zmq_msg_init (&msg);
            assert (rc == 0);
            rc = zmq_recv (s_video, &msg, 0);
            assert (rc == 0);

            /* Parse message data. */
            data = (unsigned char*) zmq_msg_data (&msg);
            /* Sanity check that we have at least the width, height in 
               the message data */
            msg_size = zmq_msg_size (&msg);
            assert (msg_size >= sizeof (uint32_t) + sizeof (uint32_t));

            /* Get image width in pixels. */
            memcpy (&image_width, data, sizeof (uint32_t));
            image_width = ntohl (image_width);
            data += sizeof (uint32_t);

            /* Get image height in pixels. */
            memcpy (&image_height, data, sizeof (uint32_t));
            image_height = ntohl (image_height);
            data += sizeof (uint32_t);

            /* Sanity check message size again */
            assert (msg_size >= image_width * image_height * 3);

            /* data now points to RGB24 pixel data. */

            if (!sdl_initialised) {

                /* Initialise SDL if not already done.
                   We need to have received at least one message, so that we
                   know what the image size being sent is. */
                if (SDL_Init (SDL_INIT_VIDEO) < 0)
                {
                    fprintf (stderr, "Failed to initialize SDL:  %s\n",
                        SDL_GetError());
                    exit (1);
                }
                screen = SDL_SetVideoMode (image_width, image_height, 32,
                    SDL_HWSURFACE);
                if (screen == NULL) {
                   fprintf (stderr, "Unable to set video mode: %s\n",
                       SDL_GetError ());
                   SDL_Quit ();
                   exit (1);
                }
                /* Set initial window title */
                SDL_WM_SetCaption (window_title, window_title);

                sdl_initialised = 1;
            }

            /* Create RGB surface. */
            rgb_surface = SDL_CreateRGBSurfaceFrom (
                data,                       /* Pixel data */
                image_width,                /* Width */
                image_height,               /* Height */
                24,                         /* Depth */
                image_width * 3,            /* Scanline pitch */
                0, 0, 0, 0);                /* TODO: RGBA mask */

            /* Blit surface to screen. */
            SDL_BlitSurface (rgb_surface, NULL, screen, NULL);
            SDL_UpdateRect (screen, 0, 0, 0, 0);
            SDL_FreeSurface (rgb_surface);

            /* Free zmq_msg we received */
            zmq_msg_close (&msg);
            
            /* Update statistics */
            received_fps += 1;
            received_bps += msg_size;
        }

        /*
         *  Poll for UI events
         */
        while (sdl_initialised && SDL_PollEvent (&event))
        {
            if (event.type == SDL_QUIT)
                quit = 1;
            if (event.type == SDL_KEYDOWN)
                if (event.key.keysym.sym == SDLK_ESCAPE)
                    quit = 1;
        }
    }

    /* TODO: Send a 'stop' message to sender thread rather than killing it
             forcefully by terminating the main thread. This would allow it
             to call zmq_close() correctly and us to call zmq_term() here. */

    /* Cleanup */
    SDL_Quit ();
    
    return 0;
}