home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
octave-1.1.1p1-src.tgz
/
tar.out
/
fsf
/
octave
/
src
/
unwind-prot.cc
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
6KB
|
318 lines
// unwind-prot.cc -*- C++ -*-
/*
Copyright (C) 1992, 1993, 1994, 1995 John W. Eaton
This file is part of Octave.
Octave 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, or (at your option) any
later version.
Octave 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 Octave; see the file COPYING. If not, write to the Free
Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stddef.h>
#include "SLStack.h"
#include "CMatrix.h"
#include "unwind-prot.h"
#include "error.h"
#include "utils.h"
unwind_elem::unwind_elem (void)
{
unwind_elem_tag = 0;
unwind_elem_fptr = 0;
unwind_elem_ptr = 0;
}
unwind_elem::unwind_elem (char *t)
{
unwind_elem_tag = strsave (t);
unwind_elem_fptr = 0;
unwind_elem_ptr = 0;
}
unwind_elem::unwind_elem (cleanup_func f, void *p)
{
unwind_elem_tag = 0;
unwind_elem_fptr = f;
unwind_elem_ptr = p;
}
unwind_elem::unwind_elem (const unwind_elem& el)
{
unwind_elem_tag = strsave (el.unwind_elem_tag);
unwind_elem_fptr = el.unwind_elem_fptr;
unwind_elem_ptr = el.unwind_elem_ptr;
}
unwind_elem::~unwind_elem (void)
{
delete [] unwind_elem_tag;
}
unwind_elem&
unwind_elem::operator = (const unwind_elem& el)
{
unwind_elem_tag = strsave (el.unwind_elem_tag);
unwind_elem_fptr = el.unwind_elem_fptr;
unwind_elem_ptr = el.unwind_elem_ptr;
return *this;
}
char *
unwind_elem::tag (void)
{
return unwind_elem_tag;
}
cleanup_func
unwind_elem::fptr (void)
{
return unwind_elem_fptr;
}
void *
unwind_elem::ptr (void)
{
return unwind_elem_ptr;
}
static SLStack <unwind_elem> unwind_protect_list;
void
add_unwind_protect (cleanup_func fptr, void *ptr)
{
unwind_elem el (fptr, ptr);
unwind_protect_list.push (el);
}
void
run_unwind_protect (void)
{
unwind_elem el = unwind_protect_list.pop ();
cleanup_func f = el.fptr ();
if (f)
f (el.ptr ());
}
void
discard_unwind_protect (void)
{
unwind_protect_list.pop ();
}
void
begin_unwind_frame (char *tag)
{
unwind_elem elem (tag);
unwind_protect_list.push (elem);
}
void
run_unwind_frame (char *tag)
{
while (! unwind_protect_list.empty ())
{
unwind_elem el = unwind_protect_list.pop ();
cleanup_func f = el.fptr ();
if (f)
f (el.ptr ());
char *t = el.tag ();
if (t && strcmp (t, tag) == 0)
break;
}
}
void
discard_unwind_frame (char *tag)
{
while (! unwind_protect_list.empty ())
{
unwind_elem el = unwind_protect_list.pop ();
char *t = el.tag ();
if (t && strcmp (t, tag) == 0)
break;
}
}
void
run_all_unwind_protects (void)
{
while (! unwind_protect_list.empty ())
{
unwind_elem el = unwind_protect_list.pop ();
cleanup_func f = el.fptr ();
if (f)
f (el.ptr ());
}
}
void
discard_all_unwind_protects (void)
{
unwind_protect_list.clear ();
}
void
matrix_cleanup (void *m)
{
delete [] (double *) m;
}
void
complex_matrix_cleanup (void *cm)
{
delete [] (ComplexMatrix *) cm;
}
class saved_variable
{
public:
enum var_type { integer, generic_ptr, generic };
saved_variable (void);
saved_variable (int *p, int v);
saved_variable (void **p, void *v);
saved_variable (void *p, void *v, size_t sz);
~saved_variable (void);
void restore_value (void);
private:
union
{
int *ptr_to_int;
void *gen_ptr;
void **ptr_to_gen_ptr;
};
union
{
int int_value;
void *gen_ptr_value;
};
var_type type_tag;
size_t size;
};
saved_variable::saved_variable (void)
{
gen_ptr = 0;
gen_ptr_value = 0;
type_tag = generic;
size = 0;
}
saved_variable::saved_variable (int *p, int v)
{
type_tag = integer;
ptr_to_int = p;
int_value = v;
size = sizeof (int);
}
saved_variable::saved_variable (void **p, void *v)
{
type_tag = generic_ptr;
ptr_to_gen_ptr = p;
gen_ptr_value = v;
size = sizeof (void *);
}
saved_variable::saved_variable (void *p, void *v, size_t sz)
{
gen_ptr = v;
gen_ptr_value = new char [sz];
memcpy (gen_ptr_value, v, sz);
size = sz;
}
saved_variable::~saved_variable (void)
{
if (type_tag == generic)
delete [] gen_ptr_value;
}
void
saved_variable::restore_value (void)
{
switch (type_tag)
{
case integer:
*ptr_to_int = int_value;
break;
case generic_ptr:
*ptr_to_gen_ptr = gen_ptr_value;
break;
case generic:
memcpy (gen_ptr, gen_ptr_value, size);
break;
default:
panic_impossible ();
break;
}
}
static void
restore_saved_variable (void *s)
{
saved_variable *sv = (saved_variable *) s;
sv->restore_value ();
delete sv;
}
void
unwind_protect_int_internal (int *ptr, int value)
{
saved_variable *s = new saved_variable (ptr, value);
add_unwind_protect (restore_saved_variable, (void *) s);
}
void
unwind_protect_ptr_internal (void **ptr, void *value)
{
saved_variable *s = new saved_variable (ptr, value);
add_unwind_protect (restore_saved_variable, (void *) s);
}
void
unwind_protect_var_internal (void *ptr, void *value, size_t size)
{
saved_variable *s = new saved_variable (ptr, value, size);
add_unwind_protect (restore_saved_variable, (void *) s);
}
/*
;;; Local Variables: ***
;;; mode: C++ ***
;;; page-delimiter: "^/\\*" ***
;;; End: ***
*/