--- parser3/src/include/pa_sql_connection.h 2001/04/05 11:01:55 1.2 +++ parser3/src/include/pa_sql_connection.h 2003/01/27 16:19:11 1.30.2.2 @@ -1,64 +1,134 @@ /** @file - Parser: sql connection decl. + Parser: sql fconnection decl. - Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) - - Author: Alexander Petrosyan (http://design.ru/paf) - - $Id: pa_sql_connection.h,v 1.2 2001/04/05 11:01:55 paf Exp $ + Copyright (c) 2001, 2003 ArtLebedev Group (http://www.artlebedev.com) + Author: Alexandr Petrosian (http://paf.design.ru) */ #ifndef PA_SQL_CONNECTION_H #define PA_SQL_CONNECTION_H +static const char* IDENT_SQL_CONNECTION_H="$Date: 2003/01/27 16:19:11 $"; + #include "pa_pool.h" #include "pa_sql_driver.h" -#include "pa_exception.h" +#include "pa_sql_driver_manager.h" -/// sql connection -class SQL_Connection : public Pooled { +// defines -public: +/// @see SQL_Driver_services_impl::_throw +#ifdef PA_WITH_SJLJ_EXCEPTIONS + #define SQL_CONNECTION_SERVICED_FUNC_GUARDED(actions) actions +#else + #define SQL_CONNECTION_SERVICED_FUNC_GUARDED(actions) \ + if(!fservices || !setjmp(fservices->mark)) { \ + actions; \ + } else \ + fservices->propagate_exception(); +#endif - void set_services(Services_for_SQL_driver *services) { - fdriver.set_services(services); - } +/// SQL connection. handy wrapper around low level SQL_Driver +class SQL_Connection: public PA_Object { - SQL_Connection(Pool& pool, - const String& aurl, - SQL_Driver& adriver, Services_for_SQL_driver& services, - char *url_cstr) : Pooled(pool), +public: + + SQL_Connection(ConstStringPtr aurl, SQL_Driver& adriver): furl(aurl), - fdriver(adriver) { + fdriver(adriver), + fconnection(0), + time_used(0), + marked_to_rollback(false) { + } + + ConstStringPtr get_url() { return furl; } - set_services(&services); // associate with services[request] - fdriver.connect(url_cstr, &connection); + void set_services(SQL_Driver_services *aservices) { + fservices=aservices; } + bool expired(time_t older_dies) { + return /*!freferences && */time_usedclose_connection(furl, *this); + bool connected() { return fconnection!=0; } + void connect(char *used_only_in_connect_url_cstr) { + SQL_CONNECTION_SERVICED_FUNC_GUARDED( + fdriver.connect(used_only_in_connect_url_cstr, *fservices, &fconnection) + ); + } + void disconnect() { + fdriver.disconnect(fconnection); fconnection=0; + } + bool ping() { + SQL_CONNECTION_SERVICED_FUNC_GUARDED( + return fdriver.ping(*fservices, fconnection) + ); + return 0; // never reached + } + uint quote(char *to, const char *from, unsigned int length) { + SQL_CONNECTION_SERVICED_FUNC_GUARDED( + return fdriver.quote(*fservices, fconnection, to, from, length) + ); + return 0; // never reached } - void disconnect() { fdriver.disconnect(connection); } - void commit() { fdriver.commit(connection); } - void rollback() { fdriver.rollback(connection); } void query( - const char *statement, - unsigned int *column_count, SQL_Driver::Cell **columns, - unsigned long *row_count, SQL_Driver::Cell ***rows) { - fdriver.query(connection, - statement, - column_count, columns, - row_count, rows); + const char *statement, unsigned long offset, unsigned long limit, + SQL_Driver_query_event_handlers& handlers, + ConstStringPtr source) { + try { + SQL_CONNECTION_SERVICED_FUNC_GUARDED( + fdriver.query(*fservices, fconnection, + statement, offset, limit, + handlers) + ); + } catch(const Exception& e) { // query problem + if(strcmp(e.type(), "sql.connect")==0) { // if it is _throw exception, + // give more specific source [were url] + throw Exception("sql.execute", + source, + "%s", e.comment()); + } else + /*re*/throw; + } + } + + void mark_to_rollback() { + marked_to_rollback=true; } +private: // closing process + + void commit() { + SQL_CONNECTION_SERVICED_FUNC_GUARDED( + fdriver.commit(*fservices, fconnection) + ); + } + void rollback() { + SQL_CONNECTION_SERVICED_FUNC_GUARDED( + fdriver.rollback(*fservices, fconnection) + ); + } + + /// return to cache + void close() { + if(marked_to_rollback) { + rollback(); + marked_to_rollback=false; + } else + commit(); + + SQL_driver_manager.close_connection(furl, *this); + } private: + ConstStringPtr furl; SQL_Driver& fdriver; - void *connection; - const String& furl; + SQL_Driver_services *fservices; + void *fconnection; + time_t time_used; + bool marked_to_rollback; }; #endif