2010-06-19 14:25:11 +00:00
|
|
|
/*
|
2014-01-18 20:56:57 +00:00
|
|
|
* This file Copyright (C) 2010-2014 Mnemosyne LLC
|
2010-06-19 14:25:11 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2010-06-19 14:25:11 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-11-14 20:21:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
2010-06-19 14:25:11 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
2017-04-19 12:04:45 +00:00
|
|
|
#error only libtransmission should #include this header.
|
2010-06-19 14:25:11 +00:00
|
|
|
#endif
|
|
|
|
|
2020-08-11 18:11:55 +00:00
|
|
|
#include "tr-macros.h"
|
|
|
|
|
|
|
|
TR_BEGIN_DECLS
|
|
|
|
|
2011-01-29 18:56:53 +00:00
|
|
|
struct evbuffer;
|
|
|
|
|
2010-06-19 14:25:11 +00:00
|
|
|
typedef struct tr_cache tr_cache;
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_cache* tr_cacheNew(int64_t max_bytes);
|
2010-06-19 14:25:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_cacheFree(tr_cache*);
|
2010-06-19 14:25:11 +00:00
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
int tr_cacheSetLimit(tr_cache* cache, int64_t max_bytes);
|
2010-06-19 14:25:11 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
int64_t tr_cacheGetLimit(tr_cache const*);
|
2010-06-19 14:25:11 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
int tr_cacheWriteBlock(
|
|
|
|
tr_cache* cache,
|
|
|
|
tr_torrent* torrent,
|
|
|
|
tr_piece_index_t piece,
|
|
|
|
uint32_t offset,
|
|
|
|
uint32_t len,
|
2017-04-19 12:04:45 +00:00
|
|
|
struct evbuffer* writeme);
|
2010-06-19 14:25:11 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
int tr_cacheReadBlock(
|
|
|
|
tr_cache* cache,
|
|
|
|
tr_torrent* torrent,
|
|
|
|
tr_piece_index_t piece,
|
|
|
|
uint32_t offset,
|
|
|
|
uint32_t len,
|
2017-04-19 12:04:45 +00:00
|
|
|
uint8_t* setme);
|
2010-06-19 14:25:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
int tr_cachePrefetchBlock(tr_cache* cache, tr_torrent* torrent, tr_piece_index_t piece, uint32_t offset, uint32_t len);
|
2010-06-19 14:25:11 +00:00
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
int tr_cacheFlushDone(tr_cache* cache);
|
2010-06-19 14:25:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
int tr_cacheFlushTorrent(tr_cache* cache, tr_torrent* torrent);
|
2010-06-19 14:25:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
int tr_cacheFlushFile(tr_cache* cache, tr_torrent* torrent, tr_file_index_t file);
|
2020-08-11 18:11:55 +00:00
|
|
|
|
|
|
|
TR_END_DECLS
|