Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 9904F200C8F for ; Fri, 26 May 2017 03:44:23 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 97C24160BD8; Fri, 26 May 2017 01:44:23 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id DDB8C160BDB for ; Fri, 26 May 2017 03:44:22 +0200 (CEST) Received: (qmail 88869 invoked by uid 500); 26 May 2017 01:44:20 -0000 Mailing-List: contact dev-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.apache.org Delivered-To: mailing list dev@drill.apache.org Received: (qmail 88015 invoked by uid 99); 26 May 2017 01:44:18 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 May 2017 01:44:18 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 03BCDE9641; Fri, 26 May 2017 01:44:17 +0000 (UTC) From: paul-rogers To: dev@drill.apache.org Reply-To: dev@drill.apache.org References: In-Reply-To: Subject: [GitHub] drill pull request #831: DRILL-5432: Added pcap-format support Content-Type: text/plain Message-Id: <20170526014418.03BCDE9641@git1-us-west.apache.org> Date: Fri, 26 May 2017 01:44:17 +0000 (UTC) archived-at: Fri, 26 May 2017 01:44:23 -0000 Github user paul-rogers commented on a diff in the pull request: https://github.com/apache/drill/pull/831#discussion_r118617811 --- Diff: exec/java-exec/src/main/java/org/apache/drill/exec/store/pcap/PcapRecordReader.java --- @@ -0,0 +1,295 @@ +/* + * 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 org.apache.drill.exec.store.pcap; + +import com.google.common.collect.ImmutableList; +import com.google.common.collect.ImmutableMap; +import org.apache.drill.common.exceptions.ExecutionSetupException; +import org.apache.drill.common.expression.SchemaPath; +import org.apache.drill.common.types.TypeProtos; +import org.apache.drill.common.types.TypeProtos.MajorType; +import org.apache.drill.common.types.TypeProtos.MinorType; +import org.apache.drill.common.types.Types; +import org.apache.drill.exec.exception.SchemaChangeException; +import org.apache.drill.exec.expr.TypeHelper; +import org.apache.drill.exec.ops.OperatorContext; +import org.apache.drill.exec.physical.impl.OutputMutator; +import org.apache.drill.exec.record.MaterializedField; +import org.apache.drill.exec.store.AbstractRecordReader; +import org.apache.drill.exec.store.pcap.decoder.Packet; +import org.apache.drill.exec.store.pcap.decoder.PacketDecoder; +import org.apache.drill.exec.store.pcap.dto.ColumnDto; +import org.apache.drill.exec.store.pcap.schema.PcapTypes; +import org.apache.drill.exec.store.pcap.schema.Schema; +import org.apache.drill.exec.vector.NullableBigIntVector; +import org.apache.drill.exec.vector.NullableIntVector; +import org.apache.drill.exec.vector.NullableTimeStampVector; +import org.apache.drill.exec.vector.NullableVarCharVector; +import org.apache.drill.exec.vector.ValueVector; + +import java.io.FileInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.nio.ByteBuffer; +import java.util.List; +import java.util.Map; + +import static java.nio.charset.StandardCharsets.UTF_8; +import static org.apache.drill.exec.store.pcap.Utils.parseBytesToASCII; + +public class PcapRecordReader extends AbstractRecordReader { + + private OutputMutator output; + + private final PacketDecoder decoder; + private ImmutableList projectedCols; + + private byte[] buffer = new byte[100000]; + private int offset = 0; + private InputStream in; + private int validBytes; + + private static final Map TYPES; + + private static class ProjectedColumnInfo { + ValueVector vv; + ColumnDto pcapColumn; + } + + static { + TYPES = ImmutableMap.builder() + .put(PcapTypes.STRING, MinorType.VARCHAR) + .put(PcapTypes.INTEGER, MinorType.INT) + .put(PcapTypes.LONG, MinorType.BIGINT) + .put(PcapTypes.TIMESTAMP, MinorType.TIMESTAMP) + .build(); + } + + public PcapRecordReader(final String inputPath, + final List projectedColumns) { + try { + this.in = new FileInputStream(inputPath); + this.decoder = getPacketDecoder(); + validBytes = in.read(buffer); + } catch (IOException e) { + throw new RuntimeException("File " + inputPath + " not Found"); + } + setColumns(projectedColumns); + } + + @Override + public void setup(final OperatorContext context, final OutputMutator output) throws ExecutionSetupException { + this.output = output; + } + + @Override + public int next() { + projectedCols = getProjectedColsIfItNull(); + try { + return parsePcapFilesAndPutItToTable(); + } catch (IOException io) { + throw new RuntimeException("Trouble with reading packets in file!"); --- End diff -- Drill's error message system can use work, but you can help. Rather than throw a generic Java exception, please throw a so-called `UserException`: ``` throw UserException.dataReadError(io) .addContext("Trouble with reading packets in file!") .build(); ``` Even better: ``` .addContext("File name:", inputPath) ``` Where `inputPath` is the file name passed to the ctor that you save, and the above line is added to those above (you can have multiple `addContext()` calls.) --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---