All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.datatorrent.stram.client.FSPartFileAgent Maven / Gradle / Ivy

There is a newer version: 3.7.0
Show newest version
/**
 * 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 com.datatorrent.stram.client;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map;

import org.codehaus.jettison.json.JSONException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * 

Abstract FSPartFileAgent class.

* * @since 0.9.0 */ public abstract class FSPartFileAgent { private static final Logger LOG = LoggerFactory.getLogger(FSPartFileAgent.class); private final Map lastIndexLines = new HashMap<>(); protected final StramAgent stramAgent; protected abstract IndexLine parseIndexLine(String line) throws JSONException; public FSPartFileAgent(StramAgent stramAgent) { this.stramAgent = stramAgent; } public void setLastIndexLine(String basePath, String line) { lastIndexLines.put(basePath, line); } protected static class IndexLine { public boolean isEndLine = false; public String partFile; } protected class IndexFileBufferedReader extends BufferedReader { private final String basePath; private boolean lastLineReturned = false; private String lastPartFile; IndexFileBufferedReader(InputStreamReader reader, String basePath) { super(reader); this.basePath = basePath; } public IndexLine readIndexLine() throws IOException, JSONException { String line = super.readLine(); if (line == null && !lastLineReturned) { line = lastIndexLines.get(basePath); if (line == null) { return null; } lastLineReturned = true; IndexLine il = parseIndexLine(line); if (il.partFile != null && !il.partFile.equals(lastPartFile)) { return il; } else { lastIndexLines.remove(basePath); } return null; } else if (line != null) { IndexLine il = parseIndexLine(line); lastPartFile = il.partFile; return il; } return null; } } public static String getNextPartFile(String partFile) { if (partFile == null) { return "part0.txt"; } else if (partFile.startsWith("part") && partFile.endsWith(".txt")) { return "part" + (Integer.valueOf(partFile.substring(4, partFile.length() - 4)) + 1) + ".txt"; } return null; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy