Files
harbour-core/tests/destruct.prg
2017-09-14 01:12:12 +00:00

127 lines
2.5 KiB
Plaintext

/*
* example/test code for object destructors
*
* Copyright 2006 Przemyslaw Czerpak <druzus / at / priv.onet.pl>
*
*/
#include "hbclass.ch"
MEMVAR P
PROCEDURE Main()
LOCAL bError
PUBLIC P := NIL
bError := ErrorBlock( {| oErr | myErrorHandler( oErr ) } )
? "First simple tests when object is not destroyed by GC"
? "====================================================="
SIMPLETEST( 0 )
SIMPLETEST( 1 )
SIMPLETEST( 2 )
SIMPLETEST( 3 )
?
? "Now object will be destroyed by GC"
? "=================================="
GCFREETEST( 0 )
GCFREETEST( 1 )
GCFREETEST( 2 )
GCFREETEST( 3 )
ErrorBlock( bError )
?
? "*** END OF TEST ***"
RETURN
STATIC PROCEDURE SIMPLETEST( type )
LOCAL o
?
? "=> o := myClass():new( " + hb_ntos( type ) + " )"
o := myClass():new( type )
? "=> o:className() ->", o:className()
? "=> o := NIL"
BEGIN SEQUENCE
o := NIL
END SEQUENCE
RETURN
STATIC PROCEDURE GCFREETEST( type )
LOCAL o, a
?
? "=> o := myClass():new( " + hb_ntos( type ) + " )"
o := myClass():new( type )
? "=> o:className() ->", o:className()
? "=> create corss reference: a := { o, NIL }; a[ 2 ] := a; a := NIL"
a := { o, NIL }; a[ 2 ] := a; a := NIL
? "=> o := NIL"
BEGIN SEQUENCE
o := NIL
END SEQUENCE
? "=> hb_gcAll()"
BEGIN SEQUENCE
hb_gcAll()
END SEQUENCE
RETURN
STATIC FUNCTION myErrorHandler( oErr )
? "Error ->", hb_ntos( oErr:gencode ), ;
oErr:description + ":", oErr:operation
BREAK oErr
RETURN NIL
CREATE CLASS myClass
VAR TYPE
VAR var1
CLASS VAR var2
METHOD INIT
DESTRUCTOR dtor
END CLASS
METHOD INIT( type ) CLASS myClass
? "Hi, I'm INIT method of class:", Self:classname()
::type := type
RETURN Self
PROCEDURE DTOR CLASS myClass
? " Hi, I'm desturctor of class: ", Self:classname()
IF ::type == 1
? " I'm storing reference to Self in instance variable."
? " Bad practice but safe in Harbour because it will be destroyed."
::var1 := Self
ELSEIF ::Type == 2
? " I'm storing reference to Self in class variable."
? " It's programmer bug which should cause RT error."
::var2 := Self
ELSEIF ::Type == 3
? " I'm storing reference to Self in public variable."
? " It's programmer bug which should cause RT error."
P := Self
ELSE
? " I do not store any references to Self."
? " It's a safe destructor."
ENDIF
RETURN