File: Buffer.h

package info (click to toggle)
squeak-vm 1%3A4.10.2.2614%2B20120917~dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 11,144 kB
  • sloc: ansic: 72,193; objc: 5,494; sh: 3,061; asm: 1,533; cpp: 449; pascal: 372; makefile: 300; awk: 103; cs: 11
file content (98 lines) | stat: -rw-r--r-- 1,307 bytes parent folder | download | duplicates (8)
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>


enum {
  Block_Free;
  Block_Busy;
  Block_Full;
  Block_Done;
};


typedef struct
{
  int	 state;
  int	 capacity;
  int	 size;
  char	*data;
} Block;


Block *Block_new(int size)
{
  size &= ~(4 * sizeof(double) - 1);
  Block *b= (Block *)calloc(1, sizeof(Block));
  if (b)
    {
      b->state= Block_Free;
      b->capacity= size;
      if ((b->data= (char *)calloc(1, size)))
	return b;
      free(b);
    }
  return 0;
}


void Block_delete(Block *b)
{
  free(b->data);
  free(b);
}


void Block_reset(Block *b)
{
  b->state= Block_Free;
  b->size=  0;
}


typedef struct
{
  Block *input;
  Block *output;
} Buffer;


Buffer *Buffer_new(int size)
{
  Buffer *b= (Buffer *)calloc(1, sizeof(Buffer));
  if (b)
    {
      if ((b->input= Block_new(size)))
	{
	  if ((b->output= Block_new(size)))
	    return b;
	  Buffer_delete(b->input);
	}
      free(b);
    }
  return 0;
}


void Buffer_delete(Buffer *b)
{
  Block_delete(b->input);
  Block_delete(b->output);
  delete(b);
}


int Buffer_swap(Buffer *b)
{
  if (input->state == Block_Full)
    {
      Block *b= input;
      Block_reset(b->output);
      b->input= b->output;
      b->output= b->input;
      return 1;
    }
  output->state= Block_done;
  return 0;
}