Question about mixing c++ exception handling & c code
Hi,
I was looking thru code in my organisation. same dll is sharingcode is
mixing c++ code & c code, which is being again called by some other c+
+ dll.
Only issue I am not too sure about exception handling in this case -
here is trimmed code snippet -
include.h
typedef void (func*)(void *,bool);
struct scriptparams
{
func callback;
void *obj;
};
test.cpp
class execption
{
public:
virtual void printerror(){//do something};
};
class foo
{
public:
foo(){};
void dosomething(bool arg)
{
cout>>"do something">>endl;
if(!arg) throw execption;
//if valid do something
};
};
extern "C" void dosomethingwrapper(void *obj_,bool arg)
{
foo *fooptr = reinterpret_cast<foo*>obj_;
fooptr->dosomething(arg);
};
test1.c
#include <include.h>
void
executescript(scriptparams* params)
{
bool ifValid = false;
//calculate something to get value of
params->callback(params->obj,ifValid);
}
test2.cpp
#include <include.h>
class scriptexecuter
{
public:
scriptexecuter(char* arg1,char* arg2)
{// get these args & do someprocessing};
void execute()
{
scriptparams params;
params->callback = dosomethingwrapper;
params->obj = this;
try{
executescript(params);
}
catch(execption &e)
{
e.printerror();
}
};
};
test.cpp & test1.c are being compiled in one dll lets call dll1 & othe
being compiled into another dll -> dll2.
I am not sure what to expect if foo::dosomething raises an exception.
Is code safe for exception being traversing through c code.
Can I assume object which is being caught in scriptexecuter::execute
to be properly constructed one.
Thank you for your advice.
Regards,
Abhijeet
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]