summaryrefslogtreecommitdiff
path: root/src/queue.h
blob: 5e6d0f86478d338c1d33fdc05db6c8a045861e03 (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
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
 * RTVideoRec Realtime video recoder and encoder for Linux
 *
 * Copyright (C) 2004  Bent Bisballe
 * Copyright (C) 2004  B. Stultiens
 *
 * This program 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 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <config.h>
#ifndef __RTVIDEOREC_QUEUE_H
#define __RTVIDEOREC_QUEUE_H

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <avformat.h>
#include <avcodec.h>

#include "thread.h"
#include "util.h"

typedef struct __buf_t {
  struct __buf_t *next;
  struct __buf_t *prev;
  void *data;
} buf_t;


template<typename T>
class Queue {
public:
  Queue(int glimit = 0);
  ~Queue();

  void push(T *t);
  T *pop();
  
  void plength();

private:
  int limit;
  buf_t *head;
  buf_t *tail;
  int count;
  pthread_mutex_t mutex;
  T *_pop();
};

/**
 * Initialize queue
 */
template<typename T>
Queue<T>::Queue(int glimit)
{
  pthread_mutex_init (&mutex, NULL);
  limit = glimit;
  count = 0;
  head = NULL;
  tail = NULL;
}

/**
 * Clean up queue.
 */
template<typename T>
Queue<T>::~Queue()
{ 
  if(count != 0) {
    fprintf(stderr, "Queue not empty (%d)\n", count);
    while(T *t = _pop()) delete t;
  }
  pthread_mutex_destroy(&mutex);
}

/**
 * Push element on queue.
 */
template<typename T>
void Queue<T>::push(T *t)
{
  pthread_mutex_lock(&mutex);

  buf_t *b = (buf_t*)xmalloc(sizeof(*b));
  b->data = (void*)t;

  assert(b != NULL);
  
  if(limit && count > 0) {
    T* tmp = (T*)_pop();
    delete tmp;
  }
  
  if(!head) {
    head = tail = b;
    b->next = b->prev = NULL;
    count = 1;
    pthread_mutex_unlock(&mutex);
    return;
  }
  
  b->next = tail;
  b->prev = NULL;
  if(tail)
    tail->prev = b;
  tail = b;
  count++;
  
  pthread_mutex_unlock(&mutex);
}

/**
 * Pop element from queue.
 * If queue is empty, NULL is returned.
 */
template<typename T>
T *Queue<T>::pop()
{
  pthread_mutex_lock(&mutex);
  T *d = _pop();
  pthread_mutex_unlock(&mutex);
  return d;
}

/**
 * Pop helper method
 * If queue is empty, NULL is returned.
 */
template<typename T>
T *Queue<T>::_pop()
{
  T *d;
  buf_t *b;

  assert(count >= 0);
  
  if(count == 0) {
    return NULL;
  }
  
  b = head;
  if(b->prev)
    b->prev->next = NULL;
  head = b->prev;
  if(b == tail)
    tail = NULL;
  count--;
  
  d = (T*)b->data;
  free(b);
  
  return d;
}

/**
 * Print current length of queue
 */
template<typename T>
void Queue<T>::plength()
{
  pthread_mutex_lock(&mutex);
  fprintf(stderr, "[ql: %d]", count);
  fflush(stderr);
  pthread_mutex_unlock(&mutex);
}

#endif