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

网格计算

开发平台:

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_connect.h"
  21. #include "fuse_file_handle.h"
  22. int dfs_open(const char *path, struct fuse_file_info *fi)
  23. {
  24.   TRACE1("open", path)
  25.   dfs_context *dfs = (dfs_context*)fuse_get_context()->private_data;
  26.   // check params and the context var
  27.   assert(path);
  28.   assert('/' == *path);
  29.   assert(dfs);
  30.   int ret = 0;
  31.   // 0x8000 is always passed in and hadoop doesn't like it, so killing it here
  32.   // bugbug figure out what this flag is and report problem to Hadoop JIRA
  33.   int flags = (fi->flags & 0x7FFF);
  34.   // retrieve dfs specific data
  35.   dfs_fh *fh = (dfs_fh*)malloc(sizeof (dfs_fh));
  36.   if (fh == NULL) {
  37.     syslog(LOG_ERR, "ERROR: malloc of new file handle failed %s:%dn", __FILE__, __LINE__);
  38.     return -EIO;
  39.   }
  40.   if ((fh->fs = doConnectAsUser(dfs->nn_hostname,dfs->nn_port)) == NULL) {
  41.     syslog(LOG_ERR, "ERROR: could not connect to dfs %s:%dn", __FILE__, __LINE__);
  42.     return -EIO;
  43.   }
  44.   if ((fh->hdfsFH = hdfsOpenFile(fh->fs, path, flags,  0, 3, 0)) == NULL) {
  45.     syslog(LOG_ERR, "ERROR: could not connect open file %s:%dn", __FILE__, __LINE__);
  46.     return -EIO;
  47.   }
  48.   // 
  49.   // mutex needed for reads/writes
  50.   //
  51.   pthread_mutex_init(&fh->mutex, NULL);
  52.   if (fi->flags & O_WRONLY || fi->flags & O_CREAT) {
  53.     // write specific initialization
  54.     fh->buf = NULL;
  55.   } else  {
  56.     // read specific initialization
  57.     assert(dfs->rdbuffer_size > 0);
  58.     if (NULL == (fh->buf = (char*)malloc(dfs->rdbuffer_size*sizeof (char)))) {
  59.       syslog(LOG_ERR, "ERROR: could not allocate memory for file buffer for a read for file %s dfs %s:%dn", path,__FILE__, __LINE__);
  60.       ret = -EIO;
  61.     }
  62.     fh->buffersStartOffset = 0;
  63.     fh->bufferSize = 0;
  64.   }
  65.   fi->fh = (uint64_t)fh;
  66.   return ret;
  67. }