2009-01-07 06:53:29 +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
|
2009-01-07 06:53:29 +00:00
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
2009-08-10 20:04:08 +00:00
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
2009-01-07 06:53:29 +00:00
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
2009-01-07 06:53:29 +00:00
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
2009-12-15 00:51:39 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
|
|
|
#error only libtransmission should #include this header.
|
|
|
|
#endif
|
|
|
|
|
2010-01-14 14:20:49 +00:00
|
|
|
#ifndef TR_PLATFORM_H
|
|
|
|
#define TR_PLATFORM_H
|
|
|
|
|
2010-08-05 19:54:44 +00:00
|
|
|
#define TR_PATH_DELIMITER '/'
|
|
|
|
#define TR_PATH_DELIMITER_STR "/"
|
2008-02-09 17:48:53 +00:00
|
|
|
|
2008-12-02 03:57:01 +00:00
|
|
|
#ifdef WIN32
|
2010-06-21 16:44:35 +00:00
|
|
|
#include <windef.h> /* MAX_PATH */
|
|
|
|
#define TR_PATH_MAX (MAX_PATH + 1)
|
2008-10-14 03:39:16 +00:00
|
|
|
#else
|
2010-05-06 17:02:31 +00:00
|
|
|
#include <limits.h> /* PATH_MAX */
|
|
|
|
#ifdef PATH_MAX
|
|
|
|
#define TR_PATH_MAX PATH_MAX
|
|
|
|
#else
|
|
|
|
#define TR_PATH_MAX 4096
|
|
|
|
#endif
|
2008-10-14 03:39:16 +00:00
|
|
|
#endif
|
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/**
|
2010-01-19 19:37:00 +00:00
|
|
|
* @addtogroup tr_session Session
|
2009-08-10 20:04:08 +00:00
|
|
|
* @{
|
2009-05-29 19:17:12 +00:00
|
|
|
*/
|
|
|
|
|
2010-01-19 19:37:00 +00:00
|
|
|
/**
|
|
|
|
* @brief invoked by tr_sessionInit() to set up the locations of the resume, torrent, and clutch directories.
|
|
|
|
* @see tr_getResumeDir()
|
|
|
|
* @see tr_getTorrentDir()
|
2010-03-19 18:48:37 +00:00
|
|
|
* @see tr_getWebClientDir()
|
2010-01-19 19:37:00 +00:00
|
|
|
*/
|
|
|
|
void tr_setConfigDir( tr_session * session, const char * configDir );
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2010-01-19 19:37:00 +00:00
|
|
|
/** @brief return the directory where .resume files are stored */
|
|
|
|
const char * tr_getResumeDir( const tr_session * );
|
2008-04-05 20:12:11 +00:00
|
|
|
|
2010-01-19 19:37:00 +00:00
|
|
|
/** @brief return the directory where .torrent files are stored */
|
|
|
|
const char * tr_getTorrentDir( const tr_session * );
|
2008-04-05 20:12:11 +00:00
|
|
|
|
2010-03-19 18:48:37 +00:00
|
|
|
/** @brief return the directory where the Web Client's web ui files are kept */
|
|
|
|
const char * tr_getWebClientDir( const tr_session * );
|
2008-04-05 20:12:11 +00:00
|
|
|
|
2011-01-05 04:41:19 +00:00
|
|
|
/** @brief return the number of bytes available for use in the specified path, or -1 on error */
|
|
|
|
int64_t tr_getFreeSpace( const char * path );
|
|
|
|
|
|
|
|
|
2010-01-19 19:37:00 +00:00
|
|
|
/** @} */
|
2008-07-11 04:07:14 +00:00
|
|
|
|
|
|
|
|
2010-01-19 19:37:00 +00:00
|
|
|
/**
|
|
|
|
* @addtogroup utils Utilities
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct tr_thread tr_thread;
|
2007-05-28 15:23:28 +00:00
|
|
|
|
2010-01-01 22:13:27 +00:00
|
|
|
/** @brief Instantiate a new process thread */
|
|
|
|
tr_thread* tr_threadNew( void ( *func )(void *), void * arg );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2010-01-01 22:13:27 +00:00
|
|
|
/** @brief Return nonzero if this function is being called from `thread'
|
|
|
|
@param thread the thread being tested */
|
2011-03-22 15:19:54 +00:00
|
|
|
bool tr_amInThread( const tr_thread * );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2010-01-01 22:13:27 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2010-01-19 19:37:00 +00:00
|
|
|
typedef struct tr_lock tr_lock;
|
|
|
|
|
2010-01-01 22:13:27 +00:00
|
|
|
/** @brief Create a new thread mutex object */
|
|
|
|
tr_lock * tr_lockNew( void );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2010-01-01 22:13:27 +00:00
|
|
|
/** @brief Destroy a thread mutex object */
|
|
|
|
void tr_lockFree( tr_lock * );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2010-01-01 22:13:27 +00:00
|
|
|
/** @brief Attempt to lock a thread mutex object */
|
|
|
|
void tr_lockLock( tr_lock * );
|
|
|
|
|
|
|
|
/** @brief Unlock a thread mutex object */
|
|
|
|
void tr_lockUnlock( tr_lock * );
|
|
|
|
|
|
|
|
/** @brief return nonzero if the specified lock is locked */
|
|
|
|
int tr_lockHave( const tr_lock * );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-09-05 14:31:52 +00:00
|
|
|
#ifdef WIN32
|
2010-01-19 19:37:00 +00:00
|
|
|
void * mmap( void *ptr, long size, long prot, long type, long handle, long arg );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2010-01-19 19:37:00 +00:00
|
|
|
long munmap( void *ptr, long size );
|
2008-09-05 14:31:52 +00:00
|
|
|
#endif
|
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/* @} */
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
#endif
|