2010-05-17 16:41:59 +00:00
|
|
|
/*
|
2011-01-19 13:48:47 +00:00
|
|
|
* This file Copyright (C) Mnemosyne LLC
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
2010-12-27 19:18:17 +00:00
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
2010-05-17 16:41:59 +00:00
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
2010-05-17 16:41:59 +00:00
|
|
|
* $Id$
|
|
|
|
*/
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
2010-01-14 14:20:49 +00:00
|
|
|
#error only libtransmission should #include this header.
|
2008-11-24 20:17:36 +00:00
|
|
|
#endif
|
|
|
|
|
2009-01-16 16:38:16 +00:00
|
|
|
#include "transmission.h"
|
2007-07-31 14:26:44 +00:00
|
|
|
#include "net.h"
|
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/**
|
|
|
|
* @addtogroup file_io File IO
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2009-10-23 03:41:36 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2010-12-17 15:36:31 +00:00
|
|
|
void tr_set_file_for_single_pass( int fd );
|
|
|
|
|
2009-04-26 20:44:18 +00:00
|
|
|
int tr_open_file_for_scanning( const char * filename );
|
2009-04-26 00:51:51 +00:00
|
|
|
|
2009-05-13 15:54:04 +00:00
|
|
|
int tr_open_file_for_writing( const char * filename );
|
|
|
|
|
2009-04-26 20:44:18 +00:00
|
|
|
void tr_close_file( int fd );
|
2009-04-26 00:51:51 +00:00
|
|
|
|
2011-02-02 23:19:54 +00:00
|
|
|
int tr_fsync(int fd);
|
|
|
|
|
2009-11-08 23:43:38 +00:00
|
|
|
ssize_t tr_pread(int fd, void *buf, size_t count, off_t offset);
|
2010-05-22 00:09:36 +00:00
|
|
|
ssize_t tr_pwrite(int fd, const void *buf, size_t count, off_t offset);
|
2009-11-08 23:43:38 +00:00
|
|
|
int tr_prefetch(int fd, off_t offset, size_t count);
|
2009-04-26 16:14:47 +00:00
|
|
|
|
2009-04-07 20:25:32 +00:00
|
|
|
|
2007-11-21 16:16:59 +00:00
|
|
|
/**
|
|
|
|
* Returns an fd to the specified filename.
|
|
|
|
*
|
2008-01-18 19:13:32 +00:00
|
|
|
* A small pool of open files is kept to avoid the overhead of
|
|
|
|
* continually opening and closing the same files when downloading
|
2009-08-15 15:52:10 +00:00
|
|
|
* piece data.
|
2007-11-21 16:16:59 +00:00
|
|
|
*
|
2011-03-03 19:59:12 +00:00
|
|
|
* - if do_write is true, subfolders in torrentFile are created if necessary.
|
|
|
|
* - if do_write is true, the target file is created if necessary.
|
|
|
|
*
|
2008-01-18 19:13:32 +00:00
|
|
|
* on success, a file descriptor >= 0 is returned.
|
2008-10-03 04:49:06 +00:00
|
|
|
* on failure, a -1 is returned and errno is set.
|
2007-11-21 16:16:59 +00:00
|
|
|
*
|
|
|
|
* @see tr_fdFileClose
|
|
|
|
*/
|
2009-10-23 03:41:36 +00:00
|
|
|
int tr_fdFileCheckout( tr_session * session,
|
2011-03-03 19:59:12 +00:00
|
|
|
int torrent_id,
|
|
|
|
tr_file_index_t file_num,
|
|
|
|
const char * filename,
|
2011-07-25 17:48:14 +00:00
|
|
|
bool do_write,
|
2011-03-03 19:59:12 +00:00
|
|
|
tr_preallocation_mode preallocation_mode,
|
|
|
|
uint64_t preallocation_file_size );
|
2007-11-21 16:16:59 +00:00
|
|
|
|
2009-10-23 03:41:36 +00:00
|
|
|
int tr_fdFileGetCached( tr_session * session,
|
2011-03-03 19:59:12 +00:00
|
|
|
int torrent_id,
|
|
|
|
tr_file_index_t file_num,
|
2011-03-22 15:19:54 +00:00
|
|
|
bool doWrite );
|
2009-10-19 05:05:00 +00:00
|
|
|
|
2011-04-28 18:40:46 +00:00
|
|
|
bool tr_fdFileGetCachedMTime( tr_session * session,
|
|
|
|
int torrent_id,
|
|
|
|
tr_file_index_t file_num,
|
|
|
|
time_t * mtime );
|
|
|
|
|
|
|
|
|
2007-11-21 16:16:59 +00:00
|
|
|
/**
|
|
|
|
* Closes a file that's being held by our file repository.
|
|
|
|
*
|
2011-02-02 23:29:17 +00:00
|
|
|
* If the file isn't checked out, it's fsync()ed and close()d immediately.
|
2007-11-21 16:16:59 +00:00
|
|
|
* If the file is currently checked out, it will be closed upon its return.
|
|
|
|
*
|
|
|
|
* @see tr_fdFileCheckout
|
|
|
|
*/
|
2009-10-23 03:41:36 +00:00
|
|
|
void tr_fdFileClose( tr_session * session,
|
|
|
|
const tr_torrent * tor,
|
2011-03-03 19:59:12 +00:00
|
|
|
tr_file_index_t file_num );
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
|
2009-06-21 07:36:51 +00:00
|
|
|
/**
|
|
|
|
* Closes all the files associated with a given torrent id
|
|
|
|
*/
|
2009-10-23 03:41:36 +00:00
|
|
|
void tr_fdTorrentClose( tr_session * session, int torrentId );
|
2009-06-21 07:36:51 +00:00
|
|
|
|
|
|
|
|
2007-01-14 12:00:21 +00:00
|
|
|
/***********************************************************************
|
2007-01-21 19:42:11 +00:00
|
|
|
* Sockets
|
2007-01-14 12:00:21 +00:00
|
|
|
**********************************************************************/
|
2009-10-23 03:41:36 +00:00
|
|
|
int tr_fdSocketCreate( tr_session * session, int domain, int type );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2009-10-23 03:41:36 +00:00
|
|
|
int tr_fdSocketAccept( tr_session * session,
|
2010-12-28 07:24:10 +00:00
|
|
|
int listening_sockfd,
|
2008-12-02 03:41:58 +00:00
|
|
|
tr_address * addr,
|
|
|
|
tr_port * port );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2009-10-23 03:41:36 +00:00
|
|
|
void tr_fdSocketClose( tr_session * session, int s );
|
2007-01-14 12:00:21 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* tr_fdClose
|
|
|
|
***********************************************************************
|
|
|
|
* Frees resources allocated by tr_fdInit.
|
|
|
|
**********************************************************************/
|
2009-10-23 03:41:36 +00:00
|
|
|
void tr_fdClose( tr_session * session );
|
2007-01-21 07:16:18 +00:00
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/* @} */
|