I want to wrap this C-function,
int sqlite3_exec(
sqlite3*, /* An open database */
const char *sql, /* SQL to be evaluated */
int (*callback)(void*,int,char**,char**), /* Callback function */
void *, /* 1st argument to callback */
char **errmsg /* Error msg written here */
);
in a C++ function like,
namespace
IronMaiden
{
int
BookOfSouls::MyWrapper( DB* db
, std::string& sql
, ?? callback function ?? int (*callback)(void*,int,char**,char**) ?? )
{
.
.
.
sqlite3_exec( db->get(), sql.c_str(), ?? callback ??, nullptr, nullptr);
.
.
.
}
}
I can pass any static function to sqlite3_exec()
, but I want to pass a private member function from a BookOfSouls
object as the callback function and I want to access the private data of the object from that function.
ok, so after some tests and failures I got a way to achieve EXACTLY what I want to do.
My solution isn't straightforward... my fears come true...
After spending several hours to crawl on SO and internet ( like in a dark, cold and creepy dungeon, with my light torch and some Angelscourge's music ) I conclude there is NO such thing as a straightforward way!
so, I needed to found another strategy... so I heavily used my brain (a.k.a. headbanging)... there popped a solution :
The static function is in the namespace of the wrapper. This static function will do one thing, emit a signal. so if I take the same example as in the question,
To connect a (private member) function, let say
YearOfTheGoat::ImTheCallbackFunction()
, from aYearOfTheGoat
object,so now everytime that
sqlite3_exec()
callscallback()
, that one will emit the signal, then callingImTheCallbackFunction()
some important notes :
ImTheCallbackFunction()
have to be identical to the ones ofcallback()
.sqlite3_exec
, it seems that the cb function is called only if there is something to returns.BookOfSouls
andYearOfTheGoat
. The first is NON instanciable. The second, I used an object. (N.B. sinceBookOfSouls
is non instanciable, movingcallback
andsigc::signal
insideBookOfSouls
isn't a bad idea).comments are very welcome