forked from gnachman/iTerm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DVRBuffer.h
executable file
·118 lines (93 loc) · 3.24 KB
/
DVRBuffer.h
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
// -*- mode:objc -*-
/*
** DVRBuffer.h
**
** Copyright 20101
**
** Author: George Nachman
**
** Project: iTerm2
**
** Description: Implements a circular in-memory buffer for storing
** screen images plus some metadata associated with each frame.
**
** 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#import <Cocoa/Cocoa.h>
#import "DVRIndexEntry.h"
// Sequences in a diff frame begin with one byte indicating the type of content
// that follows. The values come from this enum:
enum {
kSameSequence,
kDiffSequence
};
// Types of frames that DVREncoder and DVRDecoder use.
struct timeval;
typedef enum {
DVRFrameTypeKeyFrame,
DVRFrameTypeDiffFrame
} DVRFrameType;
@interface DVRBuffer : NSObject
{
@private
// Points to start of large circular buffer.
char* store_;
// Points into store_ after -[reserve:] is called.
char* scratch_;
// Total size of storage in bytes.
long long capacity_;
// Maps a frame key number to DVRIndexEntry*.
NSMutableDictionary* index_;
// First key in index.
long long firstKey_;
// Next key number to add to index.
long long nextKey_;
// begin may be before or after end. If "-" is an allocated byte and "." is
// a free byte then you can have one of two cases:
//
// begin------end.....
// ----end....begin---
// Beginning of circular buffer's used region.
long long begin_;
// Non-inclusive end of circular buffer's used regino.
long long end_;
// this must always equal index_.
id sanityCheck; // TODO(georgen): remove this after the source of corruption of index_ is found
}
- (id)initWithBufferCapacity:(long long)capacity;
- (void)dealloc;
// Reserve a chunk of memory. Returns true if blocks had to be freed to make room.
// You can get a pointer to the reserved memory with -[scratch].
- (BOOL)reserve:(long long)length;
- (char*)scratch;
// Allocate a block. Returns the assigned key. You must have called -[reserve] first.
// length may less than reserved amount.
- (long long)allocateBlock:(long long)length;
// Free the first block.
- (void)deallocateBlock;
// Return a pointer to the memory for some key or null if it doesn't exist.
- (void*)blockForKey:(long long)key;
// Returns true if there's enough free space without deallocating a block.
- (BOOL)hasSpaceAvailable:(long long)length;
// Returns first/last used keys.
- (long long)firstKey;
- (long long)lastKey;
// Look up an index entry by key.
- (DVRIndexEntry*)entryForKey:(long long)key;
// Total size of storage.
- (long long)capacity;
// Are there no frames?
- (BOOL)isEmpty;
@end