1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
/*
* Copyright (C) 2008 Murray Cumming <murrayc@murrayc.com>
* Copyright (C) 2008 - 2011 Vivien Malerba <malerba@gnome-db.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include <glib/gi18n-lib.h>
#include "gda-postgres-util.h"
static GdaConnectionEventCode
gda_postgres_sqlsate_to_gda_code (const gchar *sqlstate)
{
guint64 gda_code = g_ascii_strtoull (sqlstate, NULL, 0);
switch (gda_code) {
case 42501:
return GDA_CONNECTION_EVENT_CODE_INSUFFICIENT_PRIVILEGES;
case 23505:
return GDA_CONNECTION_EVENT_CODE_UNIQUE_VIOLATION;
case 23502:
return GDA_CONNECTION_EVENT_CODE_NOT_NULL_VIOLATION;
default:
return GDA_CONNECTION_EVENT_CODE_UNKNOWN;
}
}
/*
* Returns: @str
*/
static gchar *
utf8_validate (gchar *str)
{
gchar *tmp;
if (g_utf8_validate (str, -1, (const gchar **) &tmp))
return str;
else {
*tmp = ' ';
for (tmp++; tmp; tmp++) {
if (g_utf8_validate (tmp, -1, (const gchar **) &tmp))
return str;
else
*tmp = ' ';
}
return tmp;
}
}
/*
* Create a new #GdaConnectionEvent object and "adds" it to @cnc
*
* Returns: a new GdaConnectionEvent which must not be unrefed()
*/
GdaConnectionEvent *
_gda_postgres_make_error (GdaConnection *cnc, PGconn *pconn, PGresult *pg_res, GError **error)
{
GdaConnectionEvent *error_ev;
GdaConnectionEventCode gda_code = GDA_CONNECTION_EVENT_CODE_UNKNOWN;
GdaTransactionStatus *trans;
error_ev = gda_connection_point_available_event (cnc, GDA_CONNECTION_EVENT_ERROR);
if (pconn != NULL) {
gchar *message;
if (pg_res != NULL) {
gchar *sqlstate;
message = g_strdup (PQresultErrorMessage (pg_res));
sqlstate = PQresultErrorField (pg_res, PG_DIAG_SQLSTATE);
gda_connection_event_set_sqlstate (error_ev, sqlstate);
gda_code = gda_postgres_sqlsate_to_gda_code (sqlstate);
}
else {
message = g_strdup (PQerrorMessage (pconn));
gda_code = GDA_CONNECTION_EVENT_CODE_UNKNOWN;
}
utf8_validate (message);
gchar *ptr = message;
if (g_str_has_prefix (message, "ERROR:"))
ptr += 6;
g_strstrip (ptr);
gda_connection_event_set_description (error_ev, ptr);
gda_connection_event_set_gda_code (error_ev, gda_code);
g_set_error (error, GDA_SERVER_PROVIDER_ERROR, GDA_SERVER_PROVIDER_STATEMENT_EXEC_ERROR, "%s", ptr);
g_free (message);
}
else {
gda_connection_event_set_description (error_ev, _("No detail"));
gda_connection_event_set_gda_code (error_ev, gda_code);
g_set_error (error, GDA_SERVER_PROVIDER_ERROR, GDA_SERVER_PROVIDER_STATEMENT_EXEC_ERROR,
"%s", _("No detail"));
}
gda_connection_event_set_code (error_ev, -1);
gda_connection_event_set_source (error_ev, "gda-postgres");
gda_connection_add_event (cnc, error_ev);
/* change the transaction status if there is a problem */
trans = gda_connection_get_transaction_status (cnc);
if (trans) {
if ((PQtransactionStatus (pconn) == PQTRANS_INERROR) &&
(trans->state != GDA_TRANSACTION_STATUS_STATE_FAILED))
gda_connection_internal_change_transaction_state (cnc,
GDA_TRANSACTION_STATUS_STATE_FAILED);
}
return error_ev;
}
/*
* Returns NULL if an error occurred
*
* WARNING: it does not check that @pconn can safely be used
*/
PGresult *
_gda_postgres_PQexec_wrap (GdaConnection *cnc, PGconn *pconn, const char *query)
{
GdaConnectionEvent *event;
if (cnc) {
event = gda_connection_point_available_event (cnc, GDA_CONNECTION_EVENT_COMMAND);
gda_connection_event_set_description (event, query);
gda_connection_add_event (cnc, event);
}
return PQexec (pconn, query);
}
|