gcteste.cpp 7.58 KB
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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
/***************************************************************************
 *   Copyright (C) 2005 by Jeff Ferr                                       *
 *   root@sat                                                              *
 *                                                                         *
 *   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.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/
#include "jgc.h"

#ifndef _SMGC_POOR_STL
#include <cstdlib>
#include <iostream>
#else
#include <stdlib.h>
#include <iostream.h>
#endif

using namespace jcommon;
using namespace std;

inline static void do_nothing() 
{
}

//#define opt_collect jcommon::collect
#define opt_collect do_nothing

template<typename T>struct bst
{
	typedef gc_ptr<bst<T> > subtree;
	typedef const_gc_ptr<bst<T> > const_subtree;

	//template<typename U>
	//friend class bst;

	subtree left, right;
	T val;
	bool empty;

	bst(): 
		empty(true) 
	{
	}

	bst(const bst &b): 
		empty(false), val(b.val), left(b.left), right(b.right) 
	{
	}

	template<typename U>explicit bst(const U &v): val(v), empty(false) 
	{
	}

	template<typename U>bst<T>& operator =(const U &v)
	{
		if(empty) {
			val = v;
			empty = false;
		} else if(v < val) {
			if(!left)
				left = new(GC) bst<T>;
			*left = v;
		} else if(val < v) {
			if(!right)
				right = new(GC) bst<T>;
			*right = v;
		} else {
			//cerr << "Duplicate bst node!" << endl;
			if(!right)
				right = new(GC) bst<T>;
			*right = v;
		}

		return *this;
	}

	const T& operator *() const 
	{
	   	return val; 
	}
	
	const T* operator ->() const 
	{
	   	return &val; 
	}
	
	T& operator *() 
	{
	   	return val; 
	}
	
	T* operator ->() 
	{
	   	return &val; 
	}

};

template <typename T>ostream& operator <<(ostream &o, bst<T> &b)
{
	o << "(";
	if(b.left)
		o << *(b.left) << " ";
	if(b.val)
		o << b.val;
	if(b.right)
		o << " " << *(b.right);
	o << ")";

	return o;
}

template<typename T, typename U>gc_ptr<bst<T> >& find(gc_ptr<bst<T> >& tree, const U &v)
{
	static gc_ptr<bst<T> > nothing;

	if(!tree)
		return nothing;
	if(!(tree->empty) && (tree->val == v))
		return tree;
	else if(tree->left && (v < tree->val))
		return find(tree->left, v);
	else if(tree->right && (tree->val < v))
		return find(tree->right, v);
	else
		return nothing;
}

class base1
{
	public:
		virtual ~base1() 
		{
		}

	protected:
		int b1;
};

class base2
{
	public:
		virtual ~base2() 
		{
		}

	protected:
		int b2;
};

class inherits: public base1, public base2
{
	public:
		virtual ~inherits() {}
	public:
		inherits() { b1 = 1; b2 =2; }
};


void testmulti()
{
	try
	{
		cout << "making base1(inherits)" << endl;
		gc_ptr<base1> b1(new(GC) inherits);
		cout << "making base2(inherits)" << endl;
		gc_ptr<base2> b2(new(GC) inherits);
		gc_ptr<inherits> inh(new(GC) inherits);
		b2 = inh;
		const gc_ptr<base2> &bb = b2;
		inh = dynamic_cast_gc_ptr<inherits>(bb);
		cout << "inherits done" << endl;
	}
	catch(...)
	{
		cerr << "Invalid use of multiinheritance" << endl;
	}
}



struct cnt
{
	static unsigned count;
	
	cnt() 
	{
	   	++count; cout << " (+)" << cnt::count << flush; 
	}
	
	cnt(const cnt&) 
	{
	   	++count; cout << " (*)" << cnt::count << flush; 
	}
	
	virtual ~cnt() 
	{
	   	--count; cout << " (-)" << cnt::count << flush; 
	}
};

unsigned cnt::count = 0;

const gc_ptr<int> pass(const gc_ptr<int> p)
{
	return p;
}

gc_ptr<int> multipass(gc_ptr<int> p)
{
	return pass(pass(pass(p)));
}

const cnt pass(const cnt p)
{
	return p;
}

cnt multipass(cnt p)
{
	return pass(pass(pass(p)));
}


void testcompiler()
{
	cout << "Testing compiler validity..." << endl;

	{
		const cnt c = cnt();
		const cnt r = multipass(c);
	}

	cout << endl;
	cout << "cnt::count = " << cnt::count << endl;
	if(cnt::count) {
		cout << "your compiler (probably gcc 3.2.x) has a bug!" << endl;
		return;
	}

	{
		const_gc_ptr<int> r = multipass(new(GC) int(13));
	}
}


class contain
{
	gc_ptr<cnt> a;

	public:
		contain()
		{
			a = new(GC) cnt();
		}

		~contain()
		{
			cout << "~contain" << endl;
		}

		void check()
		{
			cout << "check" << endl;
		}
};


void testcontain()
{
	cout << "Testing containers" << endl;
	cout << endl;
	cout << "0. cnt::count = " << cnt::count << endl;

	{
		gc_ptr<contain> c = new(GC) contain();
		cout << endl;
		cout << "1. cnt::count = " << cnt::count << endl;
		cout << endl;
		cout << "collecting..." << endl;
		collect();
		cout << endl;
		cout << "2. cnt::count = " << cnt::count << endl;
		c->check();
	}

	cout << endl;
	cout << "collecting..." << endl;
	collect();
	cout << endl;
	cout << "3. cnt::count = " << cnt::count << endl;
}


void subfun()
{
	size_t i, j=0;

	gc_arr<gc_ptr<int> > arr(new(GC) gc_ptr<int>[200000]);
	//gc_ptr<int> arr[20000];
	gc_arr<const_wk_ptr<int> > wk(new(GC) const_wk_ptr<int>[400000]);

	for(i=0; i<200000; i++) {
		arr[i] = new(GC) int(i);
		wk[j++] = arr[i];
	}

	opt_collect();
	cout << "arr(1):" << flush;
	for(i=0; i<200000; i++) {
		cout << " " << *(arr[i]);// << flush;
		if(*(arr[i]) != (int)i) {
			cout << "Error(1)!" << endl;
			exit(20);
		}
	}
	cout << endl;
	opt_collect();

	for(i=0; i<200000; i++) {
		arr[i] = new(GC) int(-i);
		wk[j++] = arr[i];
	}

	jcommon::collect();
	cout << "arr(2):" << flush;
	for(i=0; i<200000; i++) {
		cout << " " << *(arr[i]);// << flush;
		if(*(arr[i]) != (int)-i) {
			cout << "Error(2)!" << endl;
			exit(20);
		}
	}
	cout << endl;

	j=0;
	cout << "wk:" << flush;
	for(i=0; i<400000; i++) {
		const_gc_ptr<int> w = wk[i].get();
		if(w) {
			cout << " " << *w;// << flush;
			j++;
		} else {
			cout << " NULL";
		}
	}

	cout << endl;
}

int main(int argc, char *argv[])
{
	//jcommon::set_threshold(0);
	testcontain();

	gc_ptr<int> a,b,c,d;
	size_t i,j;
	int v=0, w=0;

	if(argc>1)
		j = atoi(argv[1]);
	else
		j = 27890;

	testmulti();
	testcompiler();
	subfun();
	opt_collect();

	srand(123456);
	a = new(GC) int(1);
	b = new(GC) int(2);
	c = new(GC) int(3);
	d = a;
	gc_ptr<int> e(b);
	gc_ptr<int> f(new(GC) int(3));

	cout << "abcdef: " << *a << *b << *c << *d << *e << *f << endl;

	gc_ptr<bst<int> > tree(new(GC) bst<int>);

	cout << "data:";
	for(i=0; i<128; ++i) {
		v = rand();
		*tree = v;
		cout << " " << v;
		if(i == 100)
			w = v;
	}

	cout << endl;
	cout << "tree: " << *tree << endl;

	opt_collect();
	tree = find(tree, w);
	cout << "tree[w]: " << *tree << endl;

	opt_collect();

	cout << "data(2):";
	for(i=0; i<163840; ++i) {
		v = rand();
		*tree = v;
		cout << " " << i << ":" << v << flush;
		if(i == j)
			w = v;
	}
	cout << endl;
	cout << "tree(2): " << *tree << endl;

	tree = find(tree, w);
	cout << "tree[w](2): " << *tree << endl;

	cout << jcommon::get_threshold() << endl;
	cout << jcommon::get_dynamic_threshold() << endl;

	return 0;
}