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
|
|
|
*/
|
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
#include "errno.hpp"
|
|
|
|
#include "fileinfo.hpp"
|
2020-08-18 04:29:22 +08:00
|
|
|
#include "fs_fdatasync.hpp"
|
|
|
|
#include "fs_fsync.hpp"
|
2019-01-25 20:03:46 +08:00
|
|
|
|
2020-12-20 04:06:08 +08:00
|
|
|
#include "fuse.h"
|
2014-05-13 00:41:46 +08:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
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-25 20:03:46 +08:00
|
|
|
static
|
|
|
|
int
|
|
|
|
fsync(const int fd_,
|
|
|
|
const int isdatasync_)
|
|
|
|
{
|
|
|
|
int rv;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
rv = (isdatasync_ ?
|
|
|
|
fs::fdatasync(fd_) :
|
|
|
|
fs::fsync(fd_));
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
return ((rv == -1) ? -errno : 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
|
|
|
fsync(const fuse_file_info_t *ffi_,
|
|
|
|
int isdatasync_)
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2019-01-25 20:03:46 +08:00
|
|
|
FileInfo *fi = reinterpret_cast<FileInfo*>(ffi_->fh);
|
|
|
|
|
|
|
|
return l::fsync(fi->fd,isdatasync_);
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|
|
|
|
}
|