eagle.service.security.hdfs.HDFSFileSystem.java Source code

Java tutorial

Introduction

Here is the source code for eagle.service.security.hdfs.HDFSFileSystem.java

Source

/*
 * 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.
 */
package eagle.service.security.hdfs;

import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import eagle.security.hdfs.entity.HDFSFileSystemResponseEntity;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileStatus;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * 
 * This class is responsible for all FileSystem Querying Operation
 * Example 
 * List of Directories
 * List of Files and It's Paths
 * 
 * This internally it uses Hadoop FileSystem API to List the files
 * 
 */
public class HDFSFileSystem {

    private String hdfsEndPoint;
    private static Logger LOG = LoggerFactory.getLogger(HDFSFileSystem.class);

    public HDFSFileSystem(String hdfsEndPoint) {
        this.hdfsEndPoint = hdfsEndPoint;
    }

    /**
     * Creates FileSystem Object    
     * @param config
     * @return
     * @throws IOException
     */
    public FileSystem getFileSystem(Configuration config) throws IOException {

        return FileSystem.get(config);
    }

    /**
     * Brows the Files for the specific Path
      *
     * @param filePath
     * @return listOfFiles
     * @throws Exception 
     */
    public List<FileStatus> browse(String filePath) throws Exception {
        LOG.info("HDFS File Path   :  " + filePath + "   and EndPoint  : " + hdfsEndPoint);
        FileSystem hdfsFileSystem = null;
        FileStatus[] listStatus;
        try {
            Configuration config = createConfig();
            hdfsFileSystem = getFileSystem(config);
            Path path = new Path(filePath);
            listStatus = hdfsFileSystem.listStatus(path);
        } catch (Exception ex) {
            LOG.error(" Exception when browsing files for the path " + filePath, ex.getMessage());
            throw new Exception(" Exception When browsing Files in HDFS .. Message :  " + ex.getMessage());
        } finally {
            //Close the file system
            if (hdfsFileSystem != null)
                hdfsFileSystem.close();
        }
        return Arrays.asList(listStatus);
    }

    /**
     * Browse Resources of passed Path and its sub directories
     * Note :: Sub directories only to determine the Sensitivity Type of Root Directories
     * @param filePath
     * @return fileSystemResponseObj{ with SubDirectoryMap and ListOf FileStatus}
     * @throws Exception
     */
    public HDFSFileSystemResponseEntity browseResources(String filePath) throws Exception {
        LOG.info("HDFS File Path   :  " + filePath + "   and EndPoint  : " + hdfsEndPoint);
        FileSystem hdfsFileSystem = null;
        FileStatus[] listStatus;
        HDFSFileSystemResponseEntity response = new HDFSFileSystemResponseEntity();
        Map<String, List<String>> subdirectoriesMap = new HashMap<String, List<String>>();
        try {
            Configuration config = createConfig();
            hdfsFileSystem = getFileSystem(config);
            Path path = new Path(filePath);
            listStatus = hdfsFileSystem.listStatus(path);
            LOG.info(" Browsing Sub Directories .... ");
            // Browse Sub- directories
            for (FileStatus fileStatus : listStatus) {
                FileStatus[] fileStatusList = null;
                if (fileStatus.isDirectory())
                    fileStatusList = hdfsFileSystem.listStatus(new Path(fileStatus.getPath().toUri().getPath()));

                if (fileStatusList != null && fileStatusList.length > 0)
                    subdirectoriesMap.put(fileStatus.getPath().toUri().getPath(), /*  Key would be Parent */
                            getSubDirectories(fileStatusList) /*  Value Would be Child Paths */);
            }
            response.setFileList(Arrays.asList(listStatus));
            response.setSubDirectoriesMap(subdirectoriesMap);

        } catch (Exception ex) {
            LOG.error(" Exception when browsing files for the path " + filePath, ex.getMessage());
            throw new Exception(
                    " Exception When browsing Files/Directories in HDFS .. Message :  " + ex.getMessage());
        } finally {
            //Close the file system
            if (hdfsFileSystem != null)
                hdfsFileSystem.close();
        }
        return response;
    }

    /**
     * Browse only Sub-directories 
     * @param listStatus
     * @return
     * @throws FileNotFoundException
     * @throws IOException
     */
    public List<String> getSubDirectories(FileStatus[] listStatus) throws IOException {
        List<String> list = new ArrayList<>();
        for (FileStatus fileStatus : listStatus) {
            if (fileStatus.isDirectory())
                list.add(fileStatus.getPath().toUri().getPath());
        }
        return list;
    }

    /**
     * Create Config Object
     * @return
     */
    public Configuration createConfig() throws Exception {
        Configuration config = new Configuration();
        config.set(HDFSResourceConstants.HDFS_FS_DEFAULT_NAME, this.hdfsEndPoint);
        return config;
    }

    public static void main(String[] args) throws IOException {
        Configuration config = new Configuration();
        config.set("fs.defaultFS", "hdfs://127.0.0.1:9000");
        FileSystem hdfsFileSystem = FileSystem.get(config);
        Path filePath = new Path("hdfs://127.0.0.1:9000/user");
        //FileStatus[]  listStatus = hdfsFileSystem.listStatus( filePath );
        //System.out.println(status1);
        //RemoteIterator<LocatedFileStatus> locatedFileStatus = hdfsFileSystem.listFiles(filePath, true);
        /*RemoteIterator<LocatedFileStatus> locatedFileStatus = hdfsFileSystem.listLocatedStatus(filePath);
        while( locatedFileStatus.hasNext() )
        {
           LocatedFileStatus status = locatedFileStatus.next();
           System.out.println(status.getPath().toUri());
               
        }*/

        FileStatus[] listStatus = hdfsFileSystem.listStatus(filePath);
        for (FileStatus status : listStatus) {
            System.out.println(status.getPath().toUri().getPath());
            //System.out.println(status.getPath().toUri().getPath());
        }
    }

}