2006-07-16 19:39:23 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-01-01 17:20:20 +00:00
|
|
|
* Copyright (c) 2005-2008 Transmission authors and contributors
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef TR_IO_H
|
|
|
|
#define TR_IO_H 1
|
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_torrent;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2008-01-18 19:13:32 +00:00
|
|
|
/**
|
|
|
|
* Reads the block specified by the piece index, offset, and length.
|
|
|
|
* @return 0 on success, TR_ERROR_ASSERT if the arguments are incorrect,
|
|
|
|
* or TR_ERROR_IO_* otherwise.
|
|
|
|
*/
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_errno tr_ioRead( const struct tr_torrent * tor,
|
|
|
|
tr_piece_index_t pieceIndex,
|
|
|
|
uint32_t offset,
|
|
|
|
uint32_t len,
|
|
|
|
uint8_t * setme );
|
2008-01-18 19:13:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Writes the block specified by the piece index, offset, and length.
|
|
|
|
* @return 0 on success, TR_ERROR_ASSERT if the arguments are incorrect,
|
|
|
|
* or TR_ERROR_IO_* otherwise.
|
|
|
|
*/
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_errno tr_ioWrite( const struct tr_torrent * tor,
|
|
|
|
tr_piece_index_t pieceIndex,
|
|
|
|
uint32_t offset,
|
|
|
|
uint32_t len,
|
|
|
|
const uint8_t * writeme );
|
2007-01-14 12:00:21 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
/**
|
2008-02-15 18:25:42 +00:00
|
|
|
* returns 0 if the piece matches its metainfo's SHA1 checksum,
|
|
|
|
* or TR_ERROR_IO_* if there was a problem reading the piece,
|
|
|
|
* or TR_ERROR if the checksum didn't match.
|
2008-02-15 16:00:46 +00:00
|
|
|
*/
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_errno tr_ioTestPiece( const tr_torrent*,
|
|
|
|
int piece );
|
2008-02-15 16:00:46 +00:00
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2008-06-07 21:26:41 +00:00
|
|
|
/**
|
|
|
|
* Converts a piece index + offset into a file index + offset.
|
|
|
|
*/
|
2008-09-23 19:11:04 +00:00
|
|
|
void tr_ioFindFileLocation( const tr_torrent * tor,
|
|
|
|
tr_piece_index_t pieceIndex,
|
|
|
|
uint32_t pieceOffset,
|
|
|
|
tr_file_index_t * fileIndex,
|
|
|
|
uint64_t * fileOffset );
|
2008-06-07 21:26:41 +00:00
|
|
|
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
#endif
|