2014-05-13 00:41:46 +08:00
|
|
|
/*
|
2016-01-15 05:50:22 +08:00
|
|
|
Copyright (c) 2016, Antonio SJ Musumeci <trapexit@spawn.link>
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2014-05-13 00:41:46 +08:00
|
|
|
*/
|
|
|
|
|
2017-02-19 02:45:43 +08:00
|
|
|
#include "config.hpp"
|
2016-09-14 20:36:06 +08:00
|
|
|
#include "errno.hpp"
|
2015-09-16 06:49:18 +08:00
|
|
|
#include "fileinfo.hpp"
|
2020-08-18 04:29:22 +08:00
|
|
|
#include "fs_close.hpp"
|
|
|
|
#include "fs_fadvise.hpp"
|
2015-09-16 06:49:18 +08:00
|
|
|
|
2020-12-20 04:06:08 +08:00
|
|
|
#include "fuse.h"
|
2019-01-07 01:52:55 +08:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2020-12-20 04:06:08 +08:00
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
namespace l
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2019-01-07 01:52:55 +08:00
|
|
|
static
|
|
|
|
int
|
|
|
|
release(FileInfo *fi_,
|
|
|
|
const bool dropcacheonclose_)
|
|
|
|
{
|
|
|
|
// according to Feh of nocache calling it once doesn't always work
|
|
|
|
// https://github.com/Feh/nocache
|
|
|
|
if(dropcacheonclose_)
|
|
|
|
{
|
|
|
|
fs::fadvise_dontneed(fi_->fd);
|
|
|
|
fs::fadvise_dontneed(fi_->fd);
|
|
|
|
}
|
2017-02-19 02:45:43 +08:00
|
|
|
|
2019-01-07 01:52:55 +08:00
|
|
|
fs::close(fi_->fd);
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-01-07 01:52:55 +08:00
|
|
|
delete fi_;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-01-07 01:52:55 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
namespace FUSE
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2019-01-25 20:03:46 +08:00
|
|
|
int
|
2020-11-16 08:12:33 +08:00
|
|
|
release(const fuse_file_info_t *ffi_)
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2020-12-20 04:06:08 +08:00
|
|
|
Config::Read cfg;
|
2019-09-24 22:27:46 +08:00
|
|
|
FileInfo *fi = reinterpret_cast<FileInfo*>(ffi_->fh);
|
2019-01-07 01:52:55 +08:00
|
|
|
|
2020-12-20 04:06:08 +08:00
|
|
|
return l::release(fi,cfg->dropcacheonclose);
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|
|
|
|
}
|