statinfo.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 HDFSPP_STATINFO_H_
  19. #define HDFSPP_STATINFO_H_
  20. #include <string>
  21. namespace hdfs {
  22. /**
  23. * Information that is assumed to be unchanging about a file for the duration of
  24. * the operations.
  25. */
  26. struct StatInfo {
  27. enum FileType {
  28. IS_DIR = 1,
  29. IS_FILE = 2,
  30. IS_SYMLINK = 3
  31. };
  32. int file_type;
  33. std::string path;
  34. std::string full_path;
  35. uint64_t length;
  36. uint64_t permissions; //Octal number as in POSIX permissions; e.g. 0777
  37. std::string owner;
  38. std::string group;
  39. uint64_t modification_time;
  40. uint64_t access_time;
  41. std::string symlink;
  42. uint32_t block_replication;
  43. uint64_t blocksize;
  44. uint64_t fileid;
  45. uint64_t children_num;
  46. StatInfo();
  47. //Converts StatInfo object to std::string (hdfs_ls format)
  48. std::string str() const;
  49. };
  50. }
  51. #endif