Commit 477af15c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Use size_t or ssize_t when appropriate

parent 6a07fcd8
...@@ -125,24 +125,24 @@ struct virtual_socket_t ...@@ -125,24 +125,24 @@ struct virtual_socket_t
}; };
#define net_Read(a,b,c,d,e,f) __net_Read(VLC_OBJECT(a),b,c,d,e,f) #define net_Read(a,b,c,d,e,f) __net_Read(VLC_OBJECT(a),b,c,d,e,f)
VLC_EXPORT( int, __net_Read, ( vlc_object_t *p_this, int fd, const v_socket_t *, uint8_t *p_data, int i_data, vlc_bool_t b_retry ) ); VLC_EXPORT( ssize_t, __net_Read, ( vlc_object_t *p_this, int fd, const v_socket_t *, uint8_t *p_data, size_t i_data, vlc_bool_t b_retry ) );
#define net_ReadNonBlock(a,b,c,d,e,f) __net_ReadNonBlock(VLC_OBJECT(a),b,c,d,e,f) #define net_ReadNonBlock(a,b,c,d,e,f) __net_ReadNonBlock(VLC_OBJECT(a),b,c,d,e,f)
VLC_EXPORT( int, __net_ReadNonBlock, ( vlc_object_t *p_this, int fd, const v_socket_t *, uint8_t *p_data, int i_data, mtime_t i_wait ) ); VLC_EXPORT( ssize_t, __net_ReadNonBlock, ( vlc_object_t *p_this, int fd, const v_socket_t *, uint8_t *p_data, size_t i_data, mtime_t i_wait ) );
#define net_Select(a,b,c,d,e,f) __net_Select(VLC_OBJECT(a),b,c,d,e,f) #define net_Select(a,b,c,d,e,f) __net_Select(VLC_OBJECT(a),b,c,d,e,f)
VLC_EXPORT( int, __net_Select, ( vlc_object_t *p_this, const int *pi_fd, int i_fd, uint8_t *p_data, int i_data, mtime_t i_wait ) ); VLC_EXPORT( ssize_t, __net_Select, ( vlc_object_t *p_this, const int *pi_fd, int i_fd, uint8_t *p_data, size_t i_data, mtime_t i_wait ) );
#define net_Write(a,b,c,d,e) __net_Write(VLC_OBJECT(a),b,c,d,e) #define net_Write(a,b,c,d,e) __net_Write(VLC_OBJECT(a),b,c,d,e)
VLC_EXPORT( int, __net_Write, ( vlc_object_t *p_this, int fd, const v_socket_t *, const uint8_t *p_data, int i_data ) ); VLC_EXPORT( ssize_t, __net_Write, ( vlc_object_t *p_this, int fd, const v_socket_t *, const uint8_t *p_data, size_t i_data ) );
#define net_Gets(a,b,c) __net_Gets(VLC_OBJECT(a),b,c) #define net_Gets(a,b,c) __net_Gets(VLC_OBJECT(a),b,c)
VLC_EXPORT( char *, __net_Gets, ( vlc_object_t *p_this, int fd, const v_socket_t * ) ); VLC_EXPORT( char *, __net_Gets, ( vlc_object_t *p_this, int fd, const v_socket_t * ) );
VLC_EXPORT( int, net_Printf, ( vlc_object_t *p_this, int fd, const v_socket_t *, const char *psz_fmt, ... ) ); VLC_EXPORT( ssize_t, net_Printf, ( vlc_object_t *p_this, int fd, const v_socket_t *, const char *psz_fmt, ... ) );
#define net_vaPrintf(a,b,c,d,e) __net_vaPrintf(VLC_OBJECT(a),b,c,d,e) #define net_vaPrintf(a,b,c,d,e) __net_vaPrintf(VLC_OBJECT(a),b,c,d,e)
VLC_EXPORT( int, __net_vaPrintf, ( vlc_object_t *p_this, int fd, const v_socket_t *, const char *psz_fmt, va_list args ) ); VLC_EXPORT( ssize_t, __net_vaPrintf, ( vlc_object_t *p_this, int fd, const v_socket_t *, const char *psz_fmt, va_list args ) );
#ifndef HAVE_INET_PTON #ifndef HAVE_INET_PTON
......
...@@ -402,13 +402,13 @@ error: ...@@ -402,13 +402,13 @@ error:
* If b_retry is true, then we repeat until we have read the right amount of * If b_retry is true, then we repeat until we have read the right amount of
* data * data
*****************************************************************************/ *****************************************************************************/
int __net_Read( vlc_object_t *restrict p_this, int fd, ssize_t __net_Read( vlc_object_t *restrict p_this, int fd,
const v_socket_t *restrict p_vs, const v_socket_t *restrict p_vs,
uint8_t *restrict p_data, int i_data, vlc_bool_t b_retry ) uint8_t *restrict buf, size_t len, vlc_bool_t b_retry )
{ {
return net_ReadInner( p_this, 1, &(int){ fd }, return net_ReadInner( p_this, 1, &(int){ fd },
&(const v_socket_t *){ p_vs }, &(const v_socket_t *){ p_vs }, buf, len, -1,
p_data, i_data, -1, b_retry ); b_retry );
} }
...@@ -417,13 +417,13 @@ int __net_Read( vlc_object_t *restrict p_this, int fd, ...@@ -417,13 +417,13 @@ int __net_Read( vlc_object_t *restrict p_this, int fd,
***************************************************************************** *****************************************************************************
* Read from a network socket, non blocking mode (with timeout) * Read from a network socket, non blocking mode (with timeout)
*****************************************************************************/ *****************************************************************************/
int __net_ReadNonBlock( vlc_object_t *restrict p_this, int fd, ssize_t __net_ReadNonBlock( vlc_object_t *restrict p_this, int fd,
const v_socket_t *restrict p_vs, const v_socket_t *restrict p_vs,
uint8_t *restrict p_data, int i_data, mtime_t i_wait) uint8_t *restrict buf, size_t len, mtime_t i_wait)
{ {
return net_ReadInner (p_this, 1, &(int){ fd }, return net_ReadInner (p_this, 1, &(int){ fd },
&(const v_socket_t *){ p_vs }, &(const v_socket_t *){ p_vs },
p_data, i_data, i_wait / 1000, VLC_FALSE); buf, len, i_wait / 1000, VLC_FALSE);
} }
...@@ -433,69 +433,48 @@ int __net_ReadNonBlock( vlc_object_t *restrict p_this, int fd, ...@@ -433,69 +433,48 @@ int __net_ReadNonBlock( vlc_object_t *restrict p_this, int fd,
* Read from several sockets (with timeout). Takes data from the first socket * Read from several sockets (with timeout). Takes data from the first socket
* that has some. * that has some.
*****************************************************************************/ *****************************************************************************/
int __net_Select( vlc_object_t *restrict p_this, const int *restrict pi_fd, ssize_t __net_Select( vlc_object_t *restrict p_this,
int i_fd, uint8_t *restrict p_data, int i_data, const int *restrict fds, int nfd,
mtime_t i_wait ) uint8_t *restrict buf, size_t len, mtime_t i_wait )
{ {
const v_socket_t *vsv[i_fd]; const v_socket_t *vsv[nfd];
memset( vsv, 0, sizeof (vsv) ); memset( vsv, 0, sizeof (vsv) );
return net_ReadInner( p_this, i_fd, pi_fd, vsv, p_data, i_data, return net_ReadInner( p_this, nfd, fds, vsv, buf, len,
i_wait / 1000, VLC_FALSE ); i_wait / 1000, VLC_FALSE );
} }
/* Write exact amount requested */ /* Write exact amount requested */
int __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs, ssize_t __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
const uint8_t *p_data, int i_data ) const uint8_t *p_data, size_t i_data )
{ {
size_t i_total = 0; size_t i_total = 0;
while( i_data > 0 ) while( i_data > 0 )
{ {
if( p_this->b_die ) if( p_this->b_die )
return i_total; break;
#ifdef HAVE_POLL
struct pollfd ufd[1]; struct pollfd ufd[1];
memset (ufd, 0, sizeof (ufd)); memset (ufd, 0, sizeof (ufd));
ufd[0].fd = fd; ufd[0].fd = fd;
ufd[0].events = POLLOUT; ufd[0].events = POLLOUT;
int val = poll (ufd, 1, 500); int val = poll (ufd, 1, 500);
if ((val > 0) && (ufd[0].revents & POLLERR) && (i_total > 0))
return i_total; // error will be dequeued separately on next call
#else
fd_set set;
FD_ZERO (&set);
#if !defined(WIN32) && !defined(UNDER_CE)
if (fd >= FD_SETSIZE)
{
/* We don't want to overflow select() fd_set */
msg_Err (p_this, "select set overflow");
return -1;
}
#endif
FD_SET (fd, &set);
int val = select (fd + 1, NULL, &set, NULL,
&(struct timeval){ 0, 500000 });
#endif
switch (val) switch (val)
{ {
case -1: case -1:
if (errno != EINTR) msg_Err (p_this, "Write error: %s", net_strerror (net_errno));
{ goto out;
msg_Err (p_this, "Write error: %s",
net_strerror (net_errno));
return i_total ? (int)i_total : -1;
}
case 0: case 0:
continue; continue;
} }
if ((ufd[0].revents & POLLERR) && (i_total > 0))
return i_total; // error will be dequeued separately on next call
if (p_vs != NULL) if (p_vs != NULL)
val = p_vs->pf_send (p_vs->p_sys, p_data, i_data); val = p_vs->pf_send (p_vs->p_sys, p_data, i_data);
else else
...@@ -506,7 +485,10 @@ int __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs, ...@@ -506,7 +485,10 @@ int __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
#endif #endif
if (val == -1) if (val == -1)
return i_total ? (int)i_total : -1; {
msg_Err (p_this, "Write error: %s", net_strerror (net_errno));
break;
}
if (val == 0) if (val == 0)
return i_total; return i_total;
...@@ -515,7 +497,11 @@ int __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs, ...@@ -515,7 +497,11 @@ int __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
i_total += val; i_total += val;
} }
return i_total; out:
if ((i_total > 0) || (i_data == 0))
return i_total;
return -1;
} }
char *__net_Gets( vlc_object_t *p_this, int fd, const v_socket_t *p_vs ) char *__net_Gets( vlc_object_t *p_this, int fd, const v_socket_t *p_vs )
...@@ -558,8 +544,8 @@ char *__net_Gets( vlc_object_t *p_this, int fd, const v_socket_t *p_vs ) ...@@ -558,8 +544,8 @@ char *__net_Gets( vlc_object_t *p_this, int fd, const v_socket_t *p_vs )
return psz_line; return psz_line;
} }
int net_Printf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs, ssize_t net_Printf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
const char *psz_fmt, ... ) const char *psz_fmt, ... )
{ {
int i_ret; int i_ret;
va_list args; va_list args;
...@@ -570,8 +556,8 @@ int net_Printf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs, ...@@ -570,8 +556,8 @@ int net_Printf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
return i_ret; return i_ret;
} }
int __net_vaPrintf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs, ssize_t __net_vaPrintf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
const char *psz_fmt, va_list args ) const char *psz_fmt, va_list args )
{ {
char *psz; char *psz;
int i_size, i_ret; int i_size, i_ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment