ctutil.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:3k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ctutil.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 20:33:16  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* FreeTDS - Library of routines accessing Sybase and Microsoft databases
  10.  * Copyright (C) 1998-1999  Brian Bruns
  11.  *
  12.  * This library is free software; you can redistribute it and/or
  13.  * modify it under the terms of the GNU Library General Public
  14.  * License as published by the Free Software Foundation; either
  15.  * version 2 of the License, or (at your option) any later version.
  16.  *
  17.  * This library is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  20.  * Library General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU Library General Public
  23.  * License along with this library; if not, write to the
  24.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  25.  * Boston, MA 02111-1307, USA.
  26.  */
  27. #include <tds_config.h>
  28. #include "ctlib.h"
  29. #include "cspublic.h"
  30. #include "tds.h"
  31. /* #include "fortify.h" */
  32. static char  software_version[]   = "$Id: ctutil.c,v 1000.0 2003/10/29 20:33:16 gouriano Exp $";
  33. static void *no_unused_var_warn[] = {software_version,
  34.                                      no_unused_var_warn};
  35. /* all this was copied directly from the dblib functions */
  36. int ctlib_handle_info_message(TDSCONTEXT *ctx,TDSSOCKET *tds, TDSMSGINFO *msg)
  37. {
  38. /* CS_CONNECTION *con = (CS_CONNECTION *)bStruct;
  39. TDSSOCKET* tds = (TDSSOCKET *tds) con->tds_socket; 
  40. CS_CLIENTMSG errmsg; */
  41. return ctlib_handle_err_message(ctx, tds, msg);
  42. /*
  43. memset(&errmsg,'',sizeof(errmsg));
  44. errmsg.msgnumber=tds->msg_info->msg_number;
  45. strcpy(errmsg.msgstring,tds->msg_info->message);
  46. errmsg.msgstringlen=strlen(tds->msg_info->message);
  47. errmsg.osnumber=0;
  48. errmsg.osstring[0]='';
  49. errmsg.osstringlen=0;
  50. if (con->_clientmsg_cb)
  51. con->_clientmsg_cb(con->ctx,con,&errmsg);
  52. else if (con->ctx->_clientmsg_cb)
  53. con->ctx->_clientmsg_cb(con->ctx,con,&errmsg);
  54. */
  55. }
  56. int ctlib_handle_err_message(TDSCONTEXT *ctx_tds, TDSSOCKET *tds, TDSMSGINFO *msg)
  57. {
  58. CS_SERVERMSG errmsg;
  59. CS_CONNECTION *con = NULL;
  60. CS_CONTEXT *ctx = NULL;
  61. int ret = (int) CS_FAIL;
  62. if (tds && tds->parent) {
  63. con = (CS_CONNECTION *)tds->parent;
  64. }
  65. memset(&errmsg,'',sizeof(errmsg));
  66. errmsg.msgnumber=msg->msg_number;
  67. strcpy(errmsg.text,msg->message);
  68. errmsg.state=msg->msg_state;
  69. errmsg.severity=msg->msg_level;
  70. errmsg.line=msg->line_number;
  71. if (msg->server) {
  72. errmsg.svrnlen = strlen(msg->server);
  73. strncpy(errmsg.svrname, msg->server, CS_MAX_NAME);
  74. }
  75. if (msg->proc_name) {
  76. errmsg.proclen = strlen(msg->proc_name);
  77. strncpy(errmsg.proc, msg->proc_name, CS_MAX_NAME);
  78. }
  79. /* if there is no connection, attempt to call the context handler */
  80. if (!con) {
  81. ctx = (CS_CONTEXT *) ctx_tds->parent;
  82. if (ctx->_servermsg_cb) 
  83. ret = ctx->_servermsg_cb(con->ctx,con,&errmsg);
  84. } else if (con->_servermsg_cb)
  85. ret = con->_servermsg_cb(con->ctx,con,&errmsg);
  86. else if (con->ctx->_servermsg_cb)
  87. ret = con->ctx->_servermsg_cb(con->ctx,con,&errmsg);
  88. tds_reset_msg_info(msg);
  89. return ret;
  90. }