Usenet.com

www.Usenet.com

Group Index

Comp Thread Archive from Usenet.com

<-- __Chronological__ --> <-- __Thread__ -->

Deallocation & Tagged Types



Hi,

I've got a situation involving deallocating an object from a proxy and am a bit stuck... Namely how to deallocate an object belonging to a particular class but not knowing the specific type.

The example is not from the code, it just highlights the problem...


-- a vehicles package -- package Vehicles is

   type Vehicle is abstract tagged null record;
   type Vehicle_Access is access all Vehicle'class;

procedure Destroy (V : in out Vehicle) is abstract;

end Vehicles;

-- proxies for vehicles
--
package Vehicle_Proxy is

type Proxy is new Vehicle with private;

procedure Destroy (V : in out Proxy);

private
   type Proxy is new Vehicle with record
      Actual : Vehicle_Access;
   end record;

end Vehicle_Proxy;

package body Vehicle_Proxy is

   procedure Destroy (V : in out Proxy) is
   begin
      Destroy (V.Actual.all);

      -- now what???
   end Destroy;

end Vehicle_Proxy;



If V.Actual isn't properly disposed of, the proxy will leak. What's the best way to handle this? One way I can think of is to do something like this...

type Vehicle_Deallocator
   is access procedure (V : in out Vehicle_Access);

and revise type Proxy to the following,

   type Proxy is new Vehicle with record
      Actual  : Vehicle_Access;
      Dealloc : Vehicle_Deallocator;
   end record;

and Destroy to

   procedure Destroy (V : in out Proxy) is
   begin
      Destroy (V.Actual.all);
      V.Dealloc (V.Actual);
      V.Actual := null;
   end Destroy;


Is there another way that I'm missing or is this how people do this in their code? I also came up against this when making a container type (a container for rasters in the real code). Namely if you stuff Raster_Access into a container (an Image) and destroy the Image container, you need to deallocate the rasters. That means you need to have a deallocator capable of handling the types derived from Raster. If you miss one, the code breaks.


The alternative is to deallocate each raster outside of the image container, but you still need someway of handling each subclass of raster.



Cheers,
Chris




<-- __Chronological__ --> <-- __Thread__ -->


Usenet.com

Please check out one of the Premium USENET Services below: