2013-07-08 17:07:31 +00:00
|
|
|
/*
|
2014-01-19 01:09:44 +00:00
|
|
|
* This file Copyright (C) 2013-2014 Mnemosyne LLC
|
2013-07-08 17:07:31 +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.
|
2013-07-08 17:07:31 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-11-14 20:21:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
2013-07-08 17:07:31 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
2017-04-19 12:04:45 +00:00
|
|
|
#error only libtransmission should #include this header.
|
2013-07-08 17:07:31 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup tr_session Session
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct tr_device_info
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
char* path;
|
|
|
|
char* device;
|
|
|
|
char* fstype;
|
2013-07-08 17:07:31 +00:00
|
|
|
};
|
|
|
|
|
2021-10-14 17:07:16 +00:00
|
|
|
struct tr_disk_space
|
|
|
|
{
|
|
|
|
int64_t free;
|
|
|
|
int64_t total;
|
|
|
|
};
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
struct tr_device_info* tr_device_info_create(char const* path);
|
2013-07-08 17:07:31 +00:00
|
|
|
|
2021-10-14 17:07:16 +00:00
|
|
|
/** Values represents the total space on disk.
|
|
|
|
If the disk quota (free space) is enabled and readable, this returns how much is available in the quota.
|
|
|
|
Otherwise, it returns how much is available on the disk, or { -1, -1 } on error. */
|
|
|
|
struct tr_disk_space tr_device_info_get_disk_space(struct tr_device_info const* info);
|
2013-07-08 17:07:31 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_device_info_free(struct tr_device_info* info);
|
2013-07-08 17:07:31 +00:00
|
|
|
|
|
|
|
/** @} */
|