/****************************************************************************** * * * Copyright 2017 Subterranean Security * * * * Licensed 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.subterranean_security.crimson.viewer.net.command; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import com.google.protobuf.ByteString; import com.subterranean_security.crimson.core.Common; import com.subterranean_security.crimson.core.net.MessageFuture.Timeout; import com.subterranean_security.crimson.core.proto.MSG.Message; import com.subterranean_security.crimson.core.proto.Misc.Outcome; import com.subterranean_security.crimson.core.proto.Torrent.RQ_AddTorrent; import com.subterranean_security.crimson.core.store.ConnectionStore; public final class TorrentCom { private TorrentCom() { } public static Outcome addTorrent(int cid, File torrent, String destination) { Outcome.Builder outcome = Outcome.newBuilder(); try { Message m = ConnectionStore.routeAndWait(Message.newBuilder().setRid(cid).setSid(Common.cvid) .setRqAddTorrent(RQ_AddTorrent.newBuilder().setDestintation(destination) .setTorrentFile(ByteString.readFrom(new FileInputStream(torrent)))), 5); if (m == null) { outcome.setResult(false).setComment("Request timed out"); } else { outcome.setResult(m.getRsAddTorrent().getOutcome().getResult()); } } catch (InterruptedException e) { outcome.setResult(false).setComment("Interrupted"); } catch (IOException e1) { outcome.setResult(false).setComment("Torrent file not found"); } catch (Timeout e) { // TODO Auto-generated catch block e.printStackTrace(); } return outcome.build(); } }