fuse_impls.h
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. #ifndef __FUSE_IMPLS_H__
  19. #define __FUSE_IMPLS_H__
  20. #include <fuse.h>
  21. #include <syslog.h>
  22. #include "fuse_context_handle.h"
  23. /**
  24.  * Implementations of the various fuse hooks.
  25.  * All of these (should be) thread safe.
  26.  *
  27.  */
  28. int dfs_mkdir(const char *path, mode_t mode);
  29. int dfs_rename(const char *from, const char *to);
  30. int dfs_getattr(const char *path, struct stat *st);
  31. int dfs_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
  32.                 off_t offset, struct fuse_file_info *fi);
  33. int dfs_read(const char *path, char *buf, size_t size, off_t offset,
  34.                     struct fuse_file_info *fi);
  35. int dfs_statfs(const char *path, struct statvfs *st);
  36. int dfs_mkdir(const char *path, mode_t mode);
  37. int dfs_rename(const char *from, const char *to);
  38. int dfs_rmdir(const char *path);
  39. int dfs_unlink(const char *path);
  40. int dfs_utimens(const char *path, const struct timespec ts[2]);
  41. int dfs_chmod(const char *path, mode_t mode);
  42. int dfs_chown(const char *path, uid_t uid, gid_t gid);
  43. int dfs_open(const char *path, struct fuse_file_info *fi);
  44. int dfs_write(const char *path, const char *buf, size_t size,
  45.               off_t offset, struct fuse_file_info *fi);
  46. int dfs_release (const char *path, struct fuse_file_info *fi);
  47. int dfs_mknod(const char *path, mode_t mode, dev_t rdev) ;
  48. int dfs_create(const char *path, mode_t mode, struct fuse_file_info *fi);
  49. int dfs_flush(const char *path, struct fuse_file_info *fi);
  50. int dfs_access(const char *path, int mask);
  51. int dfs_truncate(const char *path, off_t size);
  52. int dfs_symlink(const char *from, const char *to);
  53. #endif