aboutsummaryrefslogtreecommitdiff
path: root/src/tests/nids.cpp
blob: 22bf4507f47f8036302f58df11e43c3f3152d78c (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
/*
 * 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/file.h"
#include "bu/nids.h"
#include "bu/nidsstream.h"

int main( int argc, char *argv[] )
{
	if( argc < 3 )
	{
		printf("usage: %s [r|w] <output>\n\n", argv[0] );
		return 1;
	}

	if( argv[1][0] == 'w' )
	{
		Bu::File fOut( argv[2],
			Bu::File::ReadWrite|Bu::File::Create|Bu::File::Truncate );
		Bu::Nids n( fOut );

		n.initialize( 32, 1 );
/*		Bu::NidsStream s = n.openStream( n.createStream() );

		Bu::FString sBuf( 350 );
		memset( sBuf.getStr(), 'a', 350 );
		s.write( sBuf );*/
	}
	else if( argv[1][0] == 'r' )
	{
		Bu::File fOut( argv[2], Bu::File::Read );
		Bu::Nids n( fOut );
		n.initialize();
/*
		Bu::NidsStream s = n.openStream( 0 );
		char buf[75];
		for( int j = 0; j < 3; j++ )
		{
			int iRead = s.read( buf, 75 );
			fwrite( buf, 1, iRead, stdout );
			printf("\n(read %d chars)\n", iRead );
		}
		printf("Position:  %ld\n", s.tell() );
		*/
	}
	else
	{
		printf("r or w, those are your choices.\n");
	}

	return 0;
}