aboutsummaryrefslogtreecommitdiff
path: root/src/tests/queuebuf.cpp
blob: 0cb8b48116a1fb867282cde06aa398f7e12e64fd (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
/*
 * Copyright (C) 2007-2010 Xagasoft, All rights reserved.
 *
 * This file is part of the libbu++ library and is released under the
 * terms of the license contained in the file LICENSE.
 */

#include <bu/queuebuf.h>
#include <bu/sio.h>

using namespace Bu;

int main()
{
	static const char *src = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789%#";
	QueueBuf qb;

	for( int j = 0; j < 8; j++ )
	{
		qb.write( src, 60 );
	}

	char buf[11], bufp[11];
	while( !qb.isEos() )
	{
		int iAmntPeek = qb.peek( bufp, 9 );
		int iAmntRead = qb.read( buf, 9 );
		if( iAmntPeek != iAmntRead )
			sio << "Differ: " << iAmntPeek << " vs " << iAmntRead << sio.nl;
		buf[iAmntRead] = '\0';
		bufp[iAmntPeek] = '\0';
		if( memcmp( buf, bufp, iAmntPeek ) )
		{
			sio << "Buffers differ" << sio.nl
				<< "  " << buf << sio.nl
				<< "  " << bufp << sio.nl;
		}
		else
			sio << "Read: >>" << buf << "<<" << sio.nl;
	}

	sio << sio.nl << sio.nl << sio.nl << "Seek test:" << sio.nl << sio.nl;

	for( int j = 0; j < 5; j++ )
	{
		qb.write( src, 25 );
		qb.write( src+10, 25 );
	}

	char bufa[26];
	char bufb[26];
	::memcpy( bufb, src+10, 15 );
	::memcpy( bufb+15, src+10, 10 );
	bufb[25] = '\0';
	sio << "Comparing to '" << bufb << "'" << sio.nl;
	qb.seek( 10 );
	while( !qb.isEos() )
	{
		bufa[qb.read( bufa, 25 )] = '\0';
		qb.seek( 25 );
		if( memcmp( bufa, bufb, 25 ) )
			sio << "Differ?" << sio.nl;
		sio << "=== '" << bufa << "' == '" << bufb << "'" << sio.nl;
	}
}