fuse_impls_flush.c
上传用户: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. #include "fuse_dfs.h"
  19. #include "fuse_impls.h"
  20. #include "fuse_file_handle.h"
  21. int dfs_flush(const char *path, struct fuse_file_info *fi) {
  22.   TRACE1("flush", path)
  23.   // retrieve dfs specific data
  24.   dfs_context *dfs = (dfs_context*)fuse_get_context()->private_data;
  25.   // check params and the context var
  26.   assert(path);
  27.   assert(dfs);
  28.   assert('/' == *path);
  29.   assert(fi);
  30.   if (NULL == (void*)fi->fh) {
  31.     return  0;
  32.   }
  33.   // note that fuse calls flush on RO files too and hdfs does not like that and will return an error
  34.   if (fi->flags & O_WRONLY) {
  35.     dfs_fh *fh = (dfs_fh*)fi->fh;
  36.     assert(fh);
  37.     hdfsFile file_handle = (hdfsFile)fh->hdfsFH;
  38.     assert(file_handle);
  39.     assert(fh->fs);
  40.     if (hdfsFlush(fh->fs, file_handle) != 0) {
  41.       syslog(LOG_ERR, "ERROR: dfs problem - could not flush file_handle(%lx) for %s %s:%dn",(long)file_handle,path, __FILE__, __LINE__);
  42.       return -EIO;
  43.     }
  44.   }
  45.   return 0;
  46. }