2020-06-28 08:00:41 +00:00
|
|
|
|
/*
|
|
|
|
|
* s3fs - FUSE-based file system backed by Amazon S3
|
|
|
|
|
*
|
|
|
|
|
* Copyright(C) 2007 Randy Rizun <rrizun@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef S3FS_SIGHANDLERS_H_
|
|
|
|
|
#define S3FS_SIGHANDLERS_H_
|
|
|
|
|
|
|
|
|
|
#include "psemaphore.h"
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------
|
|
|
|
|
// class S3fsSignals
|
|
|
|
|
//----------------------------------------------
|
|
|
|
|
class S3fsSignals
|
|
|
|
|
{
|
2020-08-22 12:40:53 +00:00
|
|
|
|
private:
|
|
|
|
|
static S3fsSignals* pSingleton;
|
|
|
|
|
static bool enableUsr1;
|
2020-06-28 08:00:41 +00:00
|
|
|
|
|
2020-08-22 12:40:53 +00:00
|
|
|
|
pthread_t* pThreadUsr1;
|
|
|
|
|
Semaphore* pSemUsr1;
|
2020-06-28 08:00:41 +00:00
|
|
|
|
|
2020-08-22 12:40:53 +00:00
|
|
|
|
protected:
|
2020-09-20 22:02:06 +00:00
|
|
|
|
static S3fsSignals* get() { return pSingleton; }
|
2020-06-28 08:00:41 +00:00
|
|
|
|
|
2020-08-22 12:40:53 +00:00
|
|
|
|
static void HandlerUSR1(int sig);
|
|
|
|
|
static void* CheckCacheWorker(void* arg);
|
2020-06-28 08:00:41 +00:00
|
|
|
|
|
2020-08-22 12:40:53 +00:00
|
|
|
|
static void HandlerUSR2(int sig);
|
2020-09-20 22:02:06 +00:00
|
|
|
|
static bool InitUsr2Handler();
|
2020-07-26 12:35:07 +00:00
|
|
|
|
|
2020-10-13 14:00:11 +00:00
|
|
|
|
static void HandlerHUP(int sig);
|
|
|
|
|
static bool InitHupHandler();
|
|
|
|
|
|
2020-08-22 12:40:53 +00:00
|
|
|
|
S3fsSignals();
|
|
|
|
|
~S3fsSignals();
|
2020-06-28 08:00:41 +00:00
|
|
|
|
|
2020-09-20 22:02:06 +00:00
|
|
|
|
bool InitUsr1Handler();
|
|
|
|
|
bool DestroyUsr1Handler();
|
|
|
|
|
bool WakeupUsr1Thread();
|
2020-06-28 08:00:41 +00:00
|
|
|
|
|
2020-08-22 12:40:53 +00:00
|
|
|
|
public:
|
2020-09-20 22:02:06 +00:00
|
|
|
|
static bool Initialize();
|
|
|
|
|
static bool Destroy();
|
2020-06-28 08:00:41 +00:00
|
|
|
|
|
2020-08-22 12:40:53 +00:00
|
|
|
|
static bool SetUsr1Handler(const char* path);
|
2020-06-28 08:00:41 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // S3FS_SIGHANDLERS_H_
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Local variables:
|
2020-08-22 12:40:53 +00:00
|
|
|
|
* tab-width: 4
|
|
|
|
|
* c-basic-offset: 4
|
2020-06-28 08:00:41 +00:00
|
|
|
|
* End:
|
2020-08-22 12:40:53 +00:00
|
|
|
|
* vim600: expandtab sw=4 ts=4 fdm=marker
|
|
|
|
|
* vim<600: expandtab sw=4 ts=4
|
2020-06-28 08:00:41 +00:00
|
|
|
|
*/
|