/* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include #include #include "tools_common.h" void usage(){ std::cout << "Usage: hdfs_count [OPTION] FILE" << std::endl << std::endl << "Count the number of directories, files and bytes under the path that match the specified FILE pattern." << std::endl << "The output columns with -count are: DIR_COUNT, FILE_COUNT, CONTENT_SIZE, PATHNAME" << std::endl << std::endl << " -q output additional columns before the rest: QUOTA, SPACE_QUOTA, SPACE_CONSUMED" << std::endl << " -h display this help and exit" << std::endl << std::endl << "Examples:" << std::endl << "hdfs_count hdfs://localhost.localdomain:8020/dir" << std::endl << "hdfs_count -q /dir1/dir2" << std::endl; } int main(int argc, char *argv[]) { //We should have at least 2 arguments if (argc < 2) { usage(); exit(EXIT_FAILURE); } bool quota = false; int input; //Using GetOpt to read in the values opterr = 0; while ((input = getopt(argc, argv, "qh")) != -1) { switch (input) { case 'q': quota = true; break; case 'h': usage(); exit(EXIT_SUCCESS); case '?': if (isprint(optopt)) std::cerr << "Unknown option `-" << (char) optopt << "'." << std::endl; else std::cerr << "Unknown option character `" << (char) optopt << "'." << std::endl; usage(); exit(EXIT_FAILURE); default: exit(EXIT_FAILURE); } } std::string uri_path = argv[optind]; //Building a URI object from the given uri_path hdfs::URI uri = hdfs::parse_path_or_exit(uri_path); std::shared_ptr fs = hdfs::doConnect(uri, false); if (!fs) { std::cerr << "Could not connect the file system. " << std::endl; exit(EXIT_FAILURE); } hdfs::ContentSummary content_summary; hdfs::Status status = fs->GetContentSummary(uri.get_path(), content_summary); if (!status.ok()) { std::cerr << "Error: " << status.ToString() << std::endl; exit(EXIT_FAILURE); } std::cout << content_summary.str(quota) << std::endl; // Clean up static data and prevent valgrind memory leaks google::protobuf::ShutdownProtobufLibrary(); return 0; }