common.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 "common/hadoop_err.h"
  19. #include "common/string.h"
  20. #include "common/uri.h"
  21. #include "common/user.h"
  22. #include "fs/fs.h"
  23. #include "fs/hdfs.h"
  24. #include <errno.h>
  25. #include <fcntl.h>
  26. #include <stdint.h>
  27. #include <stdlib.h>
  28. #include <string.h>
  29. #include <time.h>
  30. #include <uriparser/Uri.h>
  31. void release_file_info_entry(hdfsFileInfo *hdfsFileInfo)
  32. {
  33. free(hdfsFileInfo->mName);
  34. free(hdfsFileInfo->mOwner);
  35. free(hdfsFileInfo->mGroup);
  36. memset(&hdfsFileInfo, 0, sizeof(hdfsFileInfo));
  37. }
  38. int hadoopfs_errno_and_retcode(struct hadoop_err *err)
  39. {
  40. if (err) {
  41. fprintf(stderr, "%s\n", hadoop_err_msg(err));
  42. errno = hadoop_err_code(err);
  43. hadoop_err_free(err);
  44. return -1;
  45. }
  46. return 0;
  47. }
  48. void *hadoopfs_errno_and_retptr(struct hadoop_err *err, void *ptr)
  49. {
  50. if (err) {
  51. fprintf(stderr, "%s\n", hadoop_err_msg(err));
  52. hadoop_err_free(err);
  53. return NULL;
  54. }
  55. return ptr;
  56. }
  57. // vim: ts=4:sw=4:et