aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-operation.c
blob: 4433fa5d1a6c926f78eec4b21bffc6b85df94e85 (plain) (blame)
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
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdio.h>
#ifdef ENABLE_THREADS
#include <pthread.h>
#endif

#include <sys/time.h>
#include <unistd.h>

#include <glib.h>
#include "camel-operation.h"
#include "e-util/e-msgport.h"

#define d(x)

/* ********************************************************************** */

struct _status_stack {
    guint32 flags;
    char *msg;
    int pc;             /* last pc reported */
    unsigned int stamp;     /* last stamp reported */
};

struct _CamelOperation {
    pthread_t id;       /* id of running thread */
    guint32 flags;      /* cancelled ? */
    int blocked;        /* cancellation blocked depth */
    int refcount;

    CamelOperationStatusFunc status;
    void *status_data;
    unsigned int status_update;

    /* stack of status messages (struct _status_stack *) */
    GSList *status_stack;
    struct _status_stack *lastreport;

#ifdef ENABLE_THREADS
    EMsgPort *cancel_port;
    int cancel_fd;
    pthread_mutex_t lock;
#endif
};

#define CAMEL_OPERATION_CANCELLED (1<<0)
#define CAMEL_OPERATION_TRANSIENT (1<<1)

#ifdef ENABLE_THREADS
#define CAMEL_OPERATION_LOCK(cc) pthread_mutex_lock(&cc->lock)
#define CAMEL_OPERATION_UNLOCK(cc) pthread_mutex_unlock(&cc->lock)
#define CAMEL_ACTIVE_LOCK() pthread_mutex_lock(&operation_active_lock)
#define CAMEL_ACTIVE_UNLOCK() pthread_mutex_unlock(&operation_active_lock)
static pthread_mutex_t operation_active_lock = PTHREAD_MUTEX_INITIALIZER;
#else
#define CAMEL_OPERATION_LOCK(cc)
#define CAMEL_OPERATION_UNLOCK(cc)
#define CAMEL_ACTIVE_LOCK()
#define CAMEL_ACTIVE_UNLOCK()
#endif

static GHashTable *operation_active;

typedef struct _CamelOperationMsg {
    EMsg msg;
} CamelOperationMsg ;

/**
 * camel_operation_new:
 * @status: Callback for receiving status messages.
 * @status_data: User data.
 * 
 * Create a new camel operation handle.  Camel operation handles can
 * be used in a multithreaded application (or a single operation
 * handle can be used in a non threaded appliation) to cancel running
 * operations and to obtain notification messages of the internal
 * status of messages.
 * 
 * Return value: A new operation handle.
 **/
CamelOperation *camel_operation_new(CamelOperationStatusFunc status, void *status_data)
{
    CamelOperation *cc;

    cc = g_malloc0(sizeof(*cc));

    cc->flags = 0;
    cc->blocked = 0;
    cc->refcount = 1;
    cc->status = status;
    cc->status_data = status_data;
#ifdef ENABLE_THREADS
    cc->id = ~0;
    cc->cancel_port = e_msgport_new();
    cc->cancel_fd = e_msgport_fd(cc->cancel_port);
    pthread_mutex_init(&cc->lock, NULL);
#endif

    return cc;
}

/**
 * camel_operation_reset:
 * @cc: 
 * 
 * Resets an operation cancel state and message.
 **/
void camel_operation_reset(CamelOperation *cc)
{
    GSList *n;

#ifdef ENABLE_THREADS
    CamelOperationMsg *msg;

    while ((msg = (CamelOperationMsg *)e_msgport_get(cc->cancel_port)))
        g_free(msg);
#endif

    n = cc->status_stack;
    while (n) {
        g_free(n->data);
        n = n->next;
    }
    g_slist_free(cc->status_stack);
    cc->status_stack = NULL;

    cc->flags = 0;
    cc->blocked = 0;
}

/**
 * camel_operation_ref:
 * @cc: 
 * 
 * Add a reference to the CamelOperation @cc.
 **/
void camel_operation_ref(CamelOperation *cc)
{
    CAMEL_OPERATION_LOCK(cc);
    cc->refcount++;
    CAMEL_OPERATION_UNLOCK(cc);
}

/**
 * camel_operation_unref:
 * @cc: 
 * 
 * Unref and potentially free @cc.
 **/
void camel_operation_unref(CamelOperation *cc)
{
    GSList *n;
#ifdef ENABLE_THREADS
    CamelOperationMsg *msg;

    if (cc->refcount == 1) {
        while ((msg = (CamelOperationMsg *)e_msgport_get(cc->cancel_port)))
            g_free(msg);

        e_msgport_destroy(cc->cancel_port);
#endif
        n = cc->status_stack;
        while (n) {
            g_warning("Camel operation status stack non empty: %s", (char *)n->data);
            g_free(n->data);
            n = n->next;
        }
        g_slist_free(cc->status_stack);

        g_free(cc);
    } else {
        CAMEL_OPERATION_LOCK(cc);
        cc->refcount--;
        CAMEL_OPERATION_UNLOCK(cc);
    }
}

/**
 * camel_operation_cancel_block:
 * @cc: 
 * 
 * Block cancellation for this operation.  If @cc is NULL, then the
 * current thread is blocked.
 **/
void camel_operation_cancel_block(CamelOperation *cc)
{
    CAMEL_ACTIVE_LOCK();
    if (operation_active == NULL)
        operation_active = g_hash_table_new(NULL, NULL);

    if (cc == NULL)
        cc = g_hash_table_lookup(operation_active, (void *)pthread_self());
    CAMEL_ACTIVE_UNLOCK();

    if (cc) {
        CAMEL_OPERATION_LOCK(cc);
        cc->blocked++;
        CAMEL_OPERATION_UNLOCK(cc);
    }
}

/**
 * camel_operation_cancel_unblock:
 * @cc: 
 * 
 * Unblock cancellation, when the unblock count reaches the block
 * count, then this operation can be cancelled.  If @cc is NULL, then
 * the current thread is unblocked.
 **/
void camel_operation_cancel_unblock(CamelOperation *cc)
{
    CAMEL_ACTIVE_LOCK();
    if (operation_active == NULL)
        operation_active = g_hash_table_new(NULL, NULL);

    if (cc == NULL)
        cc = g_hash_table_lookup(operation_active, (void *)pthread_self());
    CAMEL_ACTIVE_UNLOCK();

    if (cc) {
        CAMEL_OPERATION_LOCK(cc);
        cc->blocked--;
        CAMEL_OPERATION_UNLOCK(cc);
    }
}

static void
cancel_thread(void *key, CamelOperation *cc, void *data)
{
    if (cc)
        camel_operation_cancel(cc);
}

/**
 * camel_operation_cancel:
 * @cc: 
 * 
 * Cancel a given operation.  If @cc is NULL then all outstanding
 * operations are cancelled.
 **/
void camel_operation_cancel(CamelOperation *cc)
{
    CamelOperationMsg *msg;

    if (cc == NULL) {
        if (operation_active) {
            CAMEL_ACTIVE_LOCK();
            g_hash_table_foreach(operation_active, (GHFunc)cancel_thread, NULL);
            CAMEL_ACTIVE_UNLOCK();
        }
    } else if ((cc->flags & CAMEL_OPERATION_CANCELLED) == 0) {
        d(printf("cancelling thread %d\n", cc->id));

        CAMEL_OPERATION_LOCK(cc);
        msg = g_malloc0(sizeof(*msg));
        e_msgport_put(cc->cancel_port, (EMsg *)msg);
        cc->flags |= CAMEL_OPERATION_CANCELLED;
        CAMEL_OPERATION_UNLOCK(cc);
    }
}

/**
 * camel_operation_register:
 * @cc: 
 * 
 * Register a thread or the main thread for cancellation through @cc.
 * If @cc is NULL, then a new cancellation is created for this thread,
 * but may only be cancelled from the same thread.
 *
 * All calls to operation_register() should be matched with calls to
 * operation_unregister(), or resources will be lost.
 **/
void camel_operation_register(CamelOperation *cc)
{
    pthread_t id = pthread_self();

    CAMEL_ACTIVE_LOCK();

    if (operation_active == NULL)
        operation_active = g_hash_table_new(NULL, NULL);

    if (cc == NULL) {
        cc = g_hash_table_lookup(operation_active, (void *)id);
        if (cc == NULL) {
            cc = camel_operation_new(NULL, NULL);
        }
    }

    cc->id = id;
    g_hash_table_insert(operation_active, (void *)id, cc);

    d(printf("registering thread %ld for cancellation\n", id));

    CAMEL_ACTIVE_UNLOCK();

    camel_operation_ref(cc);
}

/**
 * camel_operation_unregister:
 * @cc: 
 * 
 * Unregister a given operation from being cancelled.  If @cc is NULL,
 * then the current thread is used.
 **/
void camel_operation_unregister(CamelOperation *cc)
{
    CAMEL_ACTIVE_LOCK();

    if (operation_active == NULL)
        operation_active = g_hash_table_new(NULL, NULL);

    if (cc == NULL) {
        cc = g_hash_table_lookup(operation_active, (void *)pthread_self());
        if (cc == NULL) {
            g_warning("Trying to unregister a thread that was never registered for cancellation");
        }
    }

    if (cc)
        g_hash_table_remove(operation_active, (void *)cc->id);

    CAMEL_ACTIVE_UNLOCK();

    d({if (cc) printf("unregistering thread %d for cancellation\n", cc->id);});

    if (cc)
        camel_operation_unref(cc);
}

/**
 * camel_operation_cancel_check:
 * @cc: 
 * 
 * Check if cancellation has been applied to @cc.  If @cc is NULL,
 * then the CamelOperation registered for the current thread is used.
 * 
 * Return value: TRUE if the operation has been cancelled.
 **/
gboolean camel_operation_cancel_check(CamelOperation *cc)
{
    CamelOperationMsg *msg;

    d(printf("checking for cancel in thread %d\n", pthread_self()));

    if (cc == NULL) {
        if (operation_active) {
            CAMEL_ACTIVE_LOCK();
            cc = g_hash_table_lookup(operation_active, (void *)pthread_self());
            CAMEL_ACTIVE_UNLOCK();
        }
        if (cc == NULL)
            return FALSE;
    }

    if (cc->blocked > 0) {
        d(printf("ahah!  cancellation is blocked\n"));
        return FALSE;
    }

    if (cc->flags & CAMEL_OPERATION_CANCELLED) {
        d(printf("previously cancelled\n"));
        return TRUE;
    }

    msg = (CamelOperationMsg *)e_msgport_get(cc->cancel_port);
    if (msg) {
        d(printf("Got cancellation message\n"));
        CAMEL_OPERATION_LOCK(cc);
        cc->flags |= CAMEL_OPERATION_CANCELLED;
        CAMEL_OPERATION_UNLOCK(cc);
        return TRUE;
    }
    return FALSE;
}

/**
 * camel_operation_cancel_fd:
 * @cc: 
 * 
 * Retrieve a file descriptor that can be waited on (select, or poll)
 * for read, to asynchronously detect cancellation.
 * 
 * Return value: The fd, or -1 if cancellation is not available
 * (blocked, or has not been registered for this thread).
 **/
int camel_operation_cancel_fd(CamelOperation *cc)
{
    if (cc == NULL) {
        if (operation_active) {
            CAMEL_ACTIVE_LOCK();
            cc = g_hash_table_lookup(operation_active, (void *)pthread_self());
            CAMEL_ACTIVE_UNLOCK();
        }
        if (cc == NULL)
            return -1;
    }
    if (cc->blocked)
        return -1;

    return cc->cancel_fd;
}

/**
 * camel_operation_start:
 * @cc: 
 * @what: 
 * @: 
 * 
 * Report the start of an operation.  All start operations should have
 * similar end operations.
 **/
void camel_operation_start(CamelOperation *cc, char *what, ...)
{
    va_list ap;
    char *msg;
    struct _status_stack *s;

    if (operation_active == NULL)
        return;

    if (cc == NULL) {
        CAMEL_ACTIVE_LOCK();
        cc = g_hash_table_lookup(operation_active, (void *)pthread_self());
        CAMEL_ACTIVE_UNLOCK();
        if (cc == NULL)
            return;
    }

    if (cc->status == NULL)
        return;

    va_start(ap, what);
    msg = g_strdup_vprintf(what, ap);
    va_end(ap);
    cc->status(cc, msg, CAMEL_OPERATION_START, cc->status_data);
    cc->status_update = 0;
    s = g_malloc0(sizeof(*s));
    s->msg = msg;
    s->flags = 0;
    cc->lastreport = s;
    cc->status_stack = g_slist_prepend(cc->status_stack, s);
    d(printf("start '%s'\n", msg, pc));
}

/**
 * camel_operation_start_transient:
 * @cc: 
 * @what: 
 * @: 
 * 
 * Start a transient event.  We only update this to the display if it
 * takes very long to process, and if we do, we then go back to the
 * previous state when finished.
 **/
void camel_operation_start_transient(CamelOperation *cc, char *what, ...)
{
    va_list ap;
    char *msg;
    struct _status_stack *s;

    if (operation_active == NULL)
        return;

    if (cc == NULL) {
        CAMEL_ACTIVE_LOCK();
        cc = g_hash_table_lookup(operation_active, (void *)pthread_self());
        CAMEL_ACTIVE_UNLOCK();
        if (cc == NULL)
            return;
    }

    if (cc->status == NULL)
        return;

    va_start(ap, what);
    msg = g_strdup_vprintf(what, ap);
    va_end(ap);
    /* we dont report it yet */
    /*cc->status(cc, msg, CAMEL_OPERATION_START, cc->status_data);*/
    cc->status_update = 0;
    s = g_malloc0(sizeof(*s));
    s->msg = msg;
    s->flags = CAMEL_OPERATION_TRANSIENT;
    s->stamp = stamp();
    cc->status_stack = g_slist_prepend(cc->status_stack, s);
    d(printf("start '%s'\n", msg, pc));
}

static unsigned int stamp(void)
{
    struct timeval tv;

    gettimeofday(&tv, NULL);
    /* update 4 times/second */
    return (tv.tv_sec * 4) + tv.tv_usec / (1000000/4);
}

/**
 * camel_operation_progress:
 * @cc: Operation to report to.
 * @pc: Percent complete, 0 to 100.
 * 
 * Report progress on the current operation.  If @cc is NULL, then the
 * currently registered operation is used.  @pc reports the current
 * percentage of completion, which should be in the range of 0 to 100.
 *
 * If the total percentage is not know, then use
 * camel_operation_progress_count().
 **/
void camel_operation_progress(CamelOperation *cc, int pc)
{
    unsigned int now;
    struct _status_stack *s;

    if (operation_active == NULL)
        return;

    if (cc == NULL) {
        CAMEL_ACTIVE_LOCK();
        cc = g_hash_table_lookup(operation_active, (void *)pthread_self());
        CAMEL_ACTIVE_UNLOCK();
        if (cc == NULL)
            return;
    }

    if (cc->status == NULL)
        return;

    if (cc->status_stack == NULL)
        return;

    s = cc->status_stack->data;
    s->pc = pc;

    now = stamp();
    if (cc->status_update != now) {
        if (s->flags & CAMEL_OPERATION_TRANSIENT) {
            if (s->stamp/16 < now/16) {
                s->stamp = now;
                cc->status(cc, s->msg, pc, cc->status_data);
                cc->status_update = now;
                cc->lastreport = s;
            }
        } else {
            cc->status(cc, s->msg, pc, cc->status_data);
            d(printf("progress '%s' %d %%\n", s->msg, pc));
            s->stamp = cc->status_update = now;
            cc->lastreport = s;
        }
    }
}

void camel_operation_progress_count(CamelOperation *cc, int sofar)
{
    unsigned int now;
    struct _status_stack *s;

    if (operation_active == NULL)
        return;

    if (cc == NULL) {
        CAMEL_ACTIVE_LOCK();
        cc = g_hash_table_lookup(operation_active, (void *)pthread_self());
        CAMEL_ACTIVE_UNLOCK();
        if (cc == NULL)
            return;
    }

    if (cc->status == NULL)
        return;

    if (cc->status_stack == NULL)
        return;

    /* FIXME: generate some meaningful pc value */
    s = cc->status_stack->data;
    s->pc = sofar;
    now = stamp();
    if (cc->status_update != now) {
        if (s->flags & CAMEL_OPERATION_TRANSIENT) {
            if (s->stamp/16 < now/16) {
                s->stamp = now;
                cc->status(cc, s->msg, sofar, cc->status_data);
                cc->status_update = now;
                cc->lastreport = s;
            }
        } else {
            cc->status(cc, s->msg, sofar, cc->status_data);
            d(printf("progress '%s' %d done\n", msg, sofar));
            s->stamp = cc->status_update = now;
            cc->lastreport = s;
        }
    }
}

/**
 * camel_operation_end:
 * @cc: 
 * @what: Format string.
 * @: 
 * 
 * Report the end of an operation.  If @cc is NULL, then the currently
 * registered operation is notified.
 **/
void camel_operation_end(CamelOperation *cc)
{
    struct _status_stack *s, *p;
    unsigned int now;

    if (operation_active == NULL)
        return;

    if (cc == NULL) {
        CAMEL_ACTIVE_LOCK();
        cc = g_hash_table_lookup(operation_active, (void *)pthread_self());
        CAMEL_ACTIVE_UNLOCK();
        if (cc == NULL)
            return;
    }

    if (cc->status == NULL)
        return;

    if (cc->status_stack == NULL)
        return;

    /* so what we do here is this.  If the operation that just
     * ended was transient, see if we have any other transient
     * messages that haven't been updated yet above us, otherwise,
     * re-update as a non-transient at the last reported pc */
    now = stamp();
    s = cc->status_stack->data;
    if (s->flags & CAMEL_OPERATION_TRANSIENT) {
        if (cc->lastreport == s) {
            GSList *l = cc->status_stack->next;
            while (l) {
                p = l->data;
                if (p->flags & CAMEL_OPERATION_TRANSIENT) {
                    if (p->stamp/16 < now/16) {
                        cc->status(cc, p->msg, p->pc, cc->status_data);
                        cc->lastreport = p;
                        break;
                    }
                } else {
                    cc->status(cc, p->msg, p->pc, cc->status_data);
                    cc->lastreport = p;
                    break;
                }
                l = l->next;
            }
        }
    } else {
        cc->status(cc, s->msg, CAMEL_OPERATION_END, cc->status_data);
        cc->lastreport = s;
    }
    g_free(s->msg);
    g_free(s);
    cc->status_stack = g_slist_remove_link(cc->status_stack, cc->status_stack);
}