00001 /*************************************************************************** 00002 * _ _ ____ _ 00003 * Project ___| | | | _ \| | 00004 * / __| | | | |_) | | 00005 * | (__| |_| | _ <| |___ 00006 * \___|\___/|_| \_\_____| 00007 * 00008 * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. 00009 * 00010 * This software is licensed as described in the file COPYING, which 00011 * you should have received as part of this distribution. The terms 00012 * are also available at https://curl.haxx.se/docs/copyright.html. 00013 * 00014 * You may opt to use, copy, modify, merge, publish, distribute and/or sell 00015 * copies of the Software, and permit persons to whom the Software is 00016 * furnished to do so, under the terms of the COPYING file. 00017 * 00018 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 00019 * KIND, either express or implied. 00020 * 00021 ***************************************************************************/ 00022 #include "tool_setup.h" 00023 00024 #define ENABLE_CURLX_PRINTF 00025 /* use our own printf() functions */ 00026 #include "curlx.h" 00027 00028 #include "tool_cfgable.h" 00029 #include "tool_cb_rea.h" 00030 00031 #include "memdebug.h" /* keep this as LAST include */ 00032 00033 /* 00034 ** callback for CURLOPT_READFUNCTION 00035 */ 00036 00037 size_t tool_read_cb(void *buffer, size_t sz, size_t nmemb, void *userdata) 00038 { 00039 ssize_t rc; 00040 struct InStruct *in = userdata; 00041 00042 rc = read(in->fd, buffer, sz*nmemb); 00043 if(rc < 0) { 00044 if(errno == EAGAIN) { 00045 errno = 0; 00046 in->config->readbusy = TRUE; 00047 return CURL_READFUNC_PAUSE; 00048 } 00049 /* since size_t is unsigned we can't return negative values fine */ 00050 rc = 0; 00051 } 00052 in->config->readbusy = FALSE; 00053 return (size_t)rc; 00054 } 00055