/******************************************************************************* * gMix open source project - https://svs.informatik.uni-hamburg.de/gmix/ * Copyright (C) 2014 SVS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. *******************************************************************************/ package staticContent.evaluation.traceParser.engine.protocolHandler; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.util.Calendar; import staticContent.evaluation.traceParser.engine.Protocol; import staticContent.evaluation.traceParser.engine.protocolHeaderParser.IPv4Packet; import staticContent.evaluation.traceParser.engine.protocolHeaderParser.IPpacket.IPprotocol; public class IPv4Handler implements ProtocolHandler { @Override public Calendar getTimestamp(byte[] rawPacket) { return null; } @Override public String getSourceAddress(byte[] rawPacket) { return IPv4Packet.getSrcIPasString(rawPacket); } @Override public String getDestinationAddress(byte[] rawPacket) { return IPv4Packet.getDstIPasString(rawPacket); } @Override public LengthAccuracy getLengthAccuracy(byte[] rawPacket) { return LengthAccuracy.EXACT; } @Override public int getLength(byte[] rawPacket) { return IPv4Packet.getTotalLength(rawPacket); } @Override public LengthAccuracy getHeaderLengthAccuracy(byte[] rawPacket) { return LengthAccuracy.EXACT; } @Override public int getHeaderLength(byte[] rawPacket) { return IPv4Packet.getHeaderLengthStat(rawPacket); } @Override public LengthAccuracy getPayloadLengthAccuracy(byte[] rawPacket) { return LengthAccuracy.EXACT; } @Override public int getPayloadLength(byte[] rawPacket) { return IPv4Packet.getPayloadLengthStat(rawPacket); } @Override public byte[] getPayload(byte[] rawPacket) { return IPv4Packet.getPayloadStat(rawPacket); } @Override public Protocol getPayloadProtocol(byte[] rawPacket) { IPprotocol protocol = IPv4Packet.getProtocol(rawPacket); return IPhandler.ipProtocolToProtocol(protocol); } @Override public boolean canHandle(FileInputStream fis) { // TODO implement return false; } @Override public byte[] readPacket(InputStream is) throws IOException { throw new RuntimeException("cannot read raw packets"); } }