forked from gnachman/iTerm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DVR.m
executable file
·109 lines (98 loc) · 2.8 KB
/
DVR.m
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
// -*- mode:objc -*-
/*
** DVR.m
**
** Copyright 2010
**
** Author: George Nachman
**
** Project: iTerm2
**
** Description: Implements a "digital video recorder" for iTerm2.
** This is used by the "instant replay" feature to record and
** play back the screen contents.
**
** 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 "DVR.h"
#import "DVRIndexEntry.h"
#include <sys/time.h>
@implementation DVR
- (id)initWithBufferCapacity:(int)bytes
{
self = [super init];
if (self) {
buffer_ = [DVRBuffer alloc];
[buffer_ initWithBufferCapacity:bytes];
capacity_ = bytes;
decoders_ = [[NSMutableArray alloc] init];
encoder_ = [DVREncoder alloc];
[encoder_ initWithBuffer:buffer_];
}
return self;
}
- (void)dealloc
{
[decoders_ release];
[encoder_ release];
[buffer_ release];
[super dealloc];
}
- (void)appendFrame:(char*)buffer length:(int)length info:(DVRFrameInfo*)info
{
if (length > [buffer_ capacity] / 2) {
// Protect the buffer from overflowing if you have a really big window.
return;
}
int prevFirst = [buffer_ firstKey];
if ([encoder_ reserve:length]) {
// Leading frames were freed. Invalidate them in all decoders.
for (DVRDecoder* decoder in decoders_) {
int newFirst = [buffer_ firstKey];
for (int i = prevFirst; i < newFirst; ++i) {
[decoder invalidateIndex:i];
}
}
}
[encoder_ appendFrame:buffer length:length info:info];
}
- (DVRDecoder*)getDecoder
{
DVRDecoder* decoder = [[DVRDecoder alloc] initWithBuffer:buffer_];
[decoders_ addObject:decoder];
[decoder release];
return decoder;
}
- (void)releaseDecoder:(DVRDecoder*)decoder
{
[decoders_ removeObject:decoder];
}
- (long long)lastTimeStamp
{
DVRIndexEntry* entry = [buffer_ entryForKey:[buffer_ lastKey]];
if (!entry) {
return 0;
}
return entry->info.timestamp;
}
- (long long)firstTimeStamp
{
DVRIndexEntry* entry = [buffer_ entryForKey:[buffer_ firstKey]];
if (!entry) {
return 0;
}
return entry->info.timestamp;
}
@end