~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/conn.c

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 * Copyright (C) 2008 Eric Day (eday@oddments.org)
5
5
 * All rights reserved.
6
6
 *
7
 
 * Use and distribution licensed under the BSD license.  See
8
 
 * the COPYING.BSD file in the root source directory for full text.
 
7
 * Redistribution and use in source and binary forms, with or without
 
8
 * modification, are permitted provided that the following conditions are
 
9
 * met:
 
10
 *
 
11
 *     * Redistributions of source code must retain the above copyright
 
12
 * notice, this list of conditions and the following disclaimer.
 
13
 *
 
14
 *     * Redistributions in binary form must reproduce the above
 
15
 * copyright notice, this list of conditions and the following disclaimer
 
16
 * in the documentation and/or other materials provided with the
 
17
 * distribution.
 
18
 *
 
19
 *     * The names of its contributors may not be used to endorse or
 
20
 * promote products derived from this software without specific prior
 
21
 * written permission.
 
22
 *
 
23
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
24
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
25
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
26
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
27
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
28
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
29
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
30
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
31
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
32
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
33
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
34
 *
9
35
 */
10
36
 
 
37
 
11
38
/**
12
39
 * @file
13
40
 * @brief Connection Definitions
923
950
    con->buffer_ptr= con->buffer;
924
951
  }
925
952
 
 
953
  if ((con->revents & POLLIN) == 0 &&
 
954
      (con->drizzle->options & DRIZZLE_NON_BLOCKING))
 
955
  {
 
956
    /* non-blocking mode: return IO_WAIT instead of attempting to read. This
 
957
     * avoids reading immediately after writing a command, which typically
 
958
     * returns EAGAIN. This improves performance. */
 
959
    ret= drizzle_con_set_events(con, POLLIN);
 
960
    if (ret != DRIZZLE_RETURN_OK)
 
961
      return ret;
 
962
    return DRIZZLE_RETURN_IO_WAIT;
 
963
  }
 
964
 
926
965
  while (1)
927
966
  {
 
967
    size_t available_buffer= (size_t)DRIZZLE_MAX_BUFFER_SIZE -
 
968
        ((size_t)(con->buffer_ptr - con->buffer) + con->buffer_size);
928
969
    read_size = recv(con->fd, (char *)con->buffer_ptr + con->buffer_size,
929
 
                     (size_t)DRIZZLE_MAX_BUFFER_SIZE -
930
 
                     ((size_t)(con->buffer_ptr - con->buffer) +
931
 
                      con->buffer_size),0); 
 
970
                     available_buffer, 0);
932
971
#ifdef _WIN32
933
972
    /*Get windows error codes and map it to Posix*/
934
973
    errno = WSAGetLastError();
954
993
    {
955
994
      if (errno == EAGAIN)
956
995
      {
 
996
        /* clear the read ready flag */
 
997
        con->revents&= ~POLLIN;
957
998
        ret= drizzle_con_set_events(con, POLLIN);
958
999
        if (ret != DRIZZLE_RETURN_OK)
959
 
          return 0;
 
1000
          return ret;
960
1001
 
961
1002
        if (con->drizzle->options & DRIZZLE_NON_BLOCKING)
962
1003
          return DRIZZLE_RETURN_IO_WAIT;
989
1030
      return DRIZZLE_RETURN_ERRNO;
990
1031
    }
991
1032
 
 
1033
    /* clear the "read ready" flag if we read all available data. */
 
1034
    if ((size_t) read_size < available_buffer) con->revents&= ~POLLIN;
992
1035
    con->buffer_size+= (size_t)read_size;
993
1036
    break;
994
1037
  }
995
1038
 
996
 
  drizzle_state_pop(con);;
 
1039
  drizzle_state_pop(con);
997
1040
  return DRIZZLE_RETURN_OK;
998
1041
}
999
1042
 
1007
1050
  while (con->buffer_size != 0)
1008
1051
  {
1009
1052
  
1010
 
    write_size = send(con->fd,(char *) con->buffer_ptr, con->buffer_size,0);
 
1053
    write_size = send(con->fd,(char *) con->buffer_ptr, con->buffer_size, 0);
1011
1054
 
1012
1055
    drizzle_log_crazy(con->drizzle, "write fd=%d return=%zd errno=%d", con->fd,
1013
1056
                      write_size, errno);
1276
1319
  }
1277
1320
 
1278
1321
#if defined (_WIN32)
1279
 
  unsigned long asyncmode = 1;
1280
 
  ioctlsocket(con->fd, FIONBIO, &asyncmode);
 
1322
  {
 
1323
    unsigned long asyncmode;
 
1324
    asyncmode= 1;
 
1325
    ioctlsocket(con->fd, FIONBIO, &asyncmode);
 
1326
  }
1281
1327
#else
1282
1328
  ret= fcntl(con->fd, F_GETFL, 0);
1283
1329
  if (ret == -1)