1 /* ownCloud Android client application 
   2  *   Copyright (C) 2012 Bartek Przybylski 
   3  *   Copyright (C) 2012-2013 ownCloud Inc. 
   5  *   This program is free software: you can redistribute it and/or modify 
   6  *   it under the terms of the GNU General Public License version 2, 
   7  *   as published by the Free Software Foundation. 
   9  *   This program is distributed in the hope that it will be useful, 
  10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of 
  11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
  12  *   GNU General Public License for more details. 
  14  *   You should have received a copy of the GNU General Public License 
  15  *   along with this program.  If not, see <http://www.gnu.org/licenses/>. 
  19 package eu
.alefzero
.webdav
; 
  22 import java
.io
.IOException
; 
  23 import java
.io
.OutputStream
; 
  24 import java
.io
.RandomAccessFile
; 
  25 import java
.nio
.ByteBuffer
; 
  26 import java
.nio
.channels
.FileChannel
; 
  27 import java
.util
.Collection
; 
  28 import java
.util
.HashSet
; 
  29 import java
.util
.Iterator
; 
  32 import org
.apache
.commons
.httpclient
.methods
.RequestEntity
; 
  34 import com
.owncloud
.android
.Log_OC
; 
  35 import com
.owncloud
.android
.network
.ProgressiveDataTransferer
; 
  37 import eu
.alefzero
.webdav
.OnDatatransferProgressListener
; 
  41  * A RequestEntity that represents a File. 
  44 public class FileRequestEntity 
implements RequestEntity
, ProgressiveDataTransferer 
{ 
  47     final String mContentType
; 
  48     Set
<OnDatatransferProgressListener
> mDataTransferListeners 
= new HashSet
<OnDatatransferProgressListener
>(); 
  50     public FileRequestEntity(final File file
, final String contentType
) { 
  53         this.mContentType 
= contentType
; 
  55             throw new IllegalArgumentException("File may not be null"); 
  60     public long getContentLength() { 
  61         return mFile
.length(); 
  65     public String 
getContentType() { 
  70     public boolean isRepeatable() { 
  75     public void addDatatransferProgressListener(OnDatatransferProgressListener listener
) { 
  76         synchronized (mDataTransferListeners
) { 
  77             mDataTransferListeners
.add(listener
); 
  82     public void addDatatransferProgressListeners(Collection
<OnDatatransferProgressListener
> listeners
) { 
  83         synchronized (mDataTransferListeners
) { 
  84             mDataTransferListeners
.addAll(listeners
); 
  89     public void removeDatatransferProgressListener(OnDatatransferProgressListener listener
) { 
  90         synchronized (mDataTransferListeners
) { 
  91             mDataTransferListeners
.remove(listener
); 
  97     public void writeRequest(final OutputStream out
) throws IOException 
{ 
  98         //byte[] tmp = new byte[4096]; 
  99         ByteBuffer tmp 
= ByteBuffer
.allocate(4096); 
 102         // TODO(bprzybylski): each mem allocation can throw OutOfMemoryError we need to handle it 
 103         //                    globally in some fashionable manner 
 104         RandomAccessFile raf 
= new RandomAccessFile(mFile
, "r"); 
 105         FileChannel channel 
= raf
.getChannel(); 
 106         Iterator
<OnDatatransferProgressListener
> it 
= null
; 
 107         long transferred 
= 0; 
 108         long size 
= mFile
.length(); 
 109         if (size 
== 0) size 
= -1; 
 111             while ((readResult 
= channel
.read(tmp
)) >= 0) { 
 112                 out
.write(tmp
.array(), 0, readResult
); 
 114                 transferred 
+= readResult
; 
 115                 synchronized (mDataTransferListeners
) { 
 116                     it 
= mDataTransferListeners
.iterator(); 
 117                     while (it
.hasNext()) { 
 118                         it
.next().onTransferProgress(readResult
, transferred
, size
, mFile
.getName()); 
 123         } catch (IOException io
) { 
 124             Log_OC
.e("FileRequestException", io
.getMessage()); 
 125             throw new RuntimeException("Ugly solution to workaround the default policy of retries when the server falls while uploading ; temporal fix; really", io
);