aboutsummaryrefslogtreecommitdiffstats
path: root/src/eu/siacs/conversations/xmpp/jingle/JingleSocks5Transport.java
diff options
context:
space:
mode:
authoriNPUTmice <daniel@gultsch.de>2014-06-20 19:28:47 +0200
committeriNPUTmice <daniel@gultsch.de>2014-06-20 19:28:47 +0200
commit49b7c7779da38c215dfeb0b3ef19fbce2a6ea3e1 (patch)
treedff1dd4f4d9f62af5b9d74895f5c34db97d8e49d /src/eu/siacs/conversations/xmpp/jingle/JingleSocks5Transport.java
parent1cf055d2fdbaa881cfc8ead6b78dc744e9dbe596 (diff)
fixes for otr file transfer
Diffstat (limited to 'src/eu/siacs/conversations/xmpp/jingle/JingleSocks5Transport.java')
-rw-r--r--src/eu/siacs/conversations/xmpp/jingle/JingleSocks5Transport.java35
1 files changed, 21 insertions, 14 deletions
diff --git a/src/eu/siacs/conversations/xmpp/jingle/JingleSocks5Transport.java b/src/eu/siacs/conversations/xmpp/jingle/JingleSocks5Transport.java
index 838c7d5f7..4fef0388b 100644
--- a/src/eu/siacs/conversations/xmpp/jingle/JingleSocks5Transport.java
+++ b/src/eu/siacs/conversations/xmpp/jingle/JingleSocks5Transport.java
@@ -6,6 +6,7 @@ import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
+import java.io.ObjectInputStream.GetField;
import java.net.Socket;
import java.net.UnknownHostException;
import java.security.MessageDigest;
@@ -97,17 +98,16 @@ public class JingleSocks5Transport extends JingleTransport {
digest.reset();
fileInputStream = getInputStream(file);
int count;
- long txbytes = 0;
+ long txBytes = 0;
byte[] buffer = new byte[8192];
- while ((count = fileInputStream.read(buffer)) != -1) {
- txbytes += count;
+ while ((count = fileInputStream.read(buffer)) > 0) {
+ txBytes += count;
outputStream.write(buffer, 0, count);
digest.update(buffer, 0, count);
- Log.d("xmppService","tx bytes: "+txbytes);
}
+ Log.d("xmppService","txBytes="+txBytes);
outputStream.flush();
file.setSha1Sum(CryptoHelper.bytesToHex(digest.digest()));
- //outputStream.close();
if (callback!=null) {
callback.onFileTransmitted(file);
}
@@ -115,7 +115,8 @@ public class JingleSocks5Transport extends JingleTransport {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
- Log.d("xmppService","io exception: "+e.getMessage());
+ // TODO Auto-generated catch block
+ e.printStackTrace();
} catch (NoSuchAlgorithmException e) {
// TODO Auto-generated catch block
e.printStackTrace();
@@ -149,26 +150,32 @@ public class JingleSocks5Transport extends JingleTransport {
long remainingSize = file.getExpectedSize();
byte[] buffer = new byte[8192];
int count = buffer.length;
- //while(remainingSize > 0) {
- while((count = inputStream.read(buffer)) > 0) {
- Log.d("xmppService","remaining size: "+remainingSize+" reading "+count+" bytes");
+ long rxBytes = 0;
+ while(remainingSize > 0) {
count = inputStream.read(buffer);
- if (count!=-1) {
+ if (count==-1) {
+ Log.d("xmppService","read end");
+ } else {
+ rxBytes += count;
fileOutputStream.write(buffer, 0, count);
digest.update(buffer, 0, count);
+ remainingSize-=count;
}
- remainingSize-=count;
}
+ Log.d("xmppService","rx bytes="+rxBytes);
fileOutputStream.flush();
fileOutputStream.close();
file.setSha1Sum(CryptoHelper.bytesToHex(digest.digest()));
callback.onFileTransmitted(file);
} catch (FileNotFoundException e) {
- Log.d("xmppService","file not found exception");
+ // TODO Auto-generated catch block
+ e.printStackTrace();
} catch (IOException e) {
- Log.d("xmppService","io exception: "+e.getMessage());
+ // TODO Auto-generated catch block
+ e.printStackTrace();
} catch (NoSuchAlgorithmException e) {
- Log.d("xmppService","no such algo"+e.getMessage());
+ // TODO Auto-generated catch block
+ e.printStackTrace();
}
}
}).start();