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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: tdsutil.h,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 20:21:56  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.5
  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. #ifndef _tdsutil_h_
  28. #define _tdsutil_h_
  29. #include "tds.h"
  30. #include <sys/ioctl.h>
  31. #include <time.h>                  /* Jeff's hack */
  32. #ifndef __INCvxWorksh             /* vxWorks doesn't have a sys/time.h */
  33. #include <sys/time.h>
  34. #endif
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #if 0
  38. } /* keep the paren matcher and indenter happy */
  39. #endif 
  40. #endif
  41. static char  rcsid_tdsutil_h [ ] =
  42. "$Id: tdsutil.h,v 1000.0 2003/10/29 20:21:56 gouriano Exp $";
  43. static void *no_unused_tdsutil_h_warn[]={rcsid_tdsutil_h, no_unused_tdsutil_h_warn};
  44. #define MAXPATH 256
  45. #ifdef NCBI_FTDS
  46. void tds_swap_2bytes(unsigned char *buf);
  47. void tds_swap_4bytes(unsigned char *buf);
  48. void tds_swap_8bytes(unsigned char *buf);
  49. #endif
  50. TDS_SMALLINT tds_get_smallint(TDSSOCKET *tds);
  51. unsigned char tds_get_byte(TDSSOCKET *tds);
  52. unsigned char tds_peek(TDSSOCKET *tds);
  53. void tds_unget_byte(TDSSOCKET *tds);
  54. char *tds_get_n(TDSSOCKET *tds, void *dest, int n);
  55. int tds_read_packet (TDSSOCKET *tds);
  56. int set_interfaces_file_loc(char *interfloc);
  57. #ifndef NCBI_FTDS
  58. int get_server_info(char *server, char *ip_addr, char *ip_port, char *tds_ver);
  59. #endif
  60. int get_size_by_type(int servertype);
  61. int tds_flush_packet(TDSSOCKET *tds);
  62. int tds_send_login(TDSSOCKET *tds, TDSCONFIGINFO *config);
  63. int tds_process_login_tokens(TDSSOCKET *tds);
  64. int tds_put_buf(TDSSOCKET *tds, const unsigned char *buf, int dsize, int ssize);
  65. void tds_free_compute_results(TDSCOMPUTEINFO *comp_info);
  66. int  tdsdump_open(const char *filename);
  67. void tdsdump_off();
  68. void tdsdump_on();
  69. void tdsdump_close();
  70. void tdsdump_log(int dbg_lvl, const char *fmt, ...);
  71. void tdsdump_dump_buf(const void *buf, int length);
  72.       
  73. int  tds_is_result_row(TDSSOCKET *tds);
  74. int  tds_is_result_set(TDSSOCKET *tds);
  75. int  tds_is_end_of_results(TDSSOCKET *tds);
  76. int  tds_is_error(TDSSOCKET *tds);
  77. int  tds_is_message(TDSSOCKET *tds);
  78. int  tds_is_doneinproc(TDSSOCKET *tds);
  79. int  tds_is_control(TDSSOCKET *tds);
  80. int  tds_msleep(long usecs);
  81. /* added 'cause used but not declared (mlilback, 11/7/01) */
  82. TDS_INT tds_get_int(TDSSOCKET *tds);
  83. #ifdef __cplusplus
  84. #if 0
  85. { /* keep the paren matcher and indenter happy */
  86. #endif 
  87. }
  88. #endif
  89. #ifdef NCBI_FTDS
  90. #if !defined(UTIL_C_PROCESSING)  &&  defined(NDEBUG)
  91. #ifdef HAVE_CPP_STD_VARARGS
  92. #define tdsdump_log(...)
  93. #endif
  94. #ifdef HAVE_CPP_GNU_VARARGS
  95. #define tdsdump_log(args...)
  96. #endif
  97. #endif
  98. #endif
  99. #endif