2009-01-07 06:53:29 +00:00
|
|
|
/*
|
2014-01-19 01:09:44 +00:00
|
|
|
* This file Copyright (C) 2009-2014 Mnemosyne LLC
|
2006-07-16 19:39:23 +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.
|
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
|
|
|
|
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
|
|
|
/**
|
2012-12-05 17:29:46 +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 ()
|
|
|
|
* @see tr_getWebClientDir ()
|
2010-01-19 19:37:00 +00:00
|
|
|
*/
|
2012-12-05 17:29:46 +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 */
|
2012-12-05 17:29:46 +00:00
|
|
|
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 */
|
2012-12-05 17:29:46 +00:00
|
|
|
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 */
|
2012-12-05 17:29:46 +00:00
|
|
|
const char * tr_getWebClientDir (const tr_session *);
|
2008-04-05 20:12:11 +00:00
|
|
|
|
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 */
|
2012-12-05 17:29:46 +00:00
|
|
|
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 */
|
2012-12-05 17:29:46 +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 */
|
2012-12-05 17:29:46 +00:00
|
|
|
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 */
|
2012-12-05 17:29:46 +00:00
|
|
|
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 */
|
2012-12-05 17:29:46 +00:00
|
|
|
void tr_lockLock (tr_lock *);
|
2010-01-01 22:13:27 +00:00
|
|
|
|
|
|
|
/** @brief Unlock a thread mutex object */
|
2012-12-05 17:29:46 +00:00
|
|
|
void tr_lockUnlock (tr_lock *);
|
2010-01-01 22:13:27 +00:00
|
|
|
|
|
|
|
/** @brief return nonzero if the specified lock is locked */
|
2015-05-31 22:13:31 +00:00
|
|
|
bool tr_lockHave (const tr_lock *);
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/* @} */
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
#endif
|