1/*2 * Licensed to the Apache Software Foundation (ASF) under one3 * or more contributor license agreements. See the NOTICE file4 * distributed with this work for additional information5 * regarding copyright ownership. The ASF licenses this file6 * to you under the Apache License, Version 2.0 (the7 * "License"); you may not use this file except in compliance8 * with the License. You may obtain a copy of the License at9 *10 * http://www.apache.org/licenses/LICENSE-2.011 *12 * Unless required by applicable law or agreed to in writing, software13 * 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 and16 * limitations under the License.17 */18package org.apache.hadoop.chukwa.datacollection.writer;
1920import java.util.List;
21import org.apache.hadoop.chukwa.Chunk;
22import org.apache.hadoop.chukwa.datacollection.collector.servlet.LogDisplayServlet;
23import org.apache.hadoop.conf.Configuration;
2425publicclassExtractorWriterextendsPipelineableWriter {
2627publicstaticLogDisplayServlet recipient;
2829 @Override
30publicvoid close() throws WriterException {
31 next.close();
32 }
3334 @Override
35publicvoid init(Configuration c) throws WriterException {
36 }
3738publicCommitStatus add(List<Chunk> chunks) throws WriterException {
39if(recipient != null)
40 recipient.add(chunks);
41if (next != null)
42return next.add(chunks); //pass data through43else44return ChukwaWriter.COMMIT_OK;
45 }
4647 }