mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-14 20:45:22 +02:00
[236039][dstore][efs] DStoreInputStream can report EOF too early - clean up how it waits for the local temp file to be created
This commit is contained in:
parent
c7e316b19e
commit
c37fa4ad7e
2 changed files with 85 additions and 64 deletions
|
@ -46,6 +46,7 @@
|
|||
* David McKnight (IBM) - [221211] [api][breaking][files] need batch operations to indicate which operations were successful
|
||||
* Radoslav Gerganov (ProSyst) - [230919] IFileService.delete() should not return a boolean
|
||||
* Martin Oberhuber (Wind River) - [235463][ftp][dstore] Incorrect case sensitivity reported on windows-remote
|
||||
* David McKnight (IBM) - [236039][dstore][efs] DStoreInputStream can report EOF too early - clean up how it waits for the local temp file to be created
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.services.dstore.files;
|
||||
|
@ -2129,7 +2130,7 @@ public class DStoreFileService extends AbstractDStoreService implements IFileSer
|
|||
{
|
||||
mode = IUniversalDataStoreConstants.TEXT_MODE;
|
||||
}
|
||||
DStoreInputStream inputStream = new DStoreInputStream(getDataStore(), remotePath, getMinerElement(), getEncoding(monitor), mode);
|
||||
DStoreInputStream inputStream = new DStoreInputStream(getDataStore(), remotePath, getMinerElement(), getEncoding(monitor), mode, getBufferDownloadSize());
|
||||
return inputStream;
|
||||
}
|
||||
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
* Contributors:
|
||||
* Martin Oberhuber (Wind River) - [199561][efs][dstore] Eclipse hangs when manipulating empty file
|
||||
* David McKnight (IBM) - [234637] [dstore][efs] RSE EFS provider seems to truncate files
|
||||
* David McKnight (IBM) - [236039][dstore][efs] DStoreInputStream can report EOF too early - clean up how it waits for the local temp file to be created
|
||||
********************************************************************************/
|
||||
package org.eclipse.rse.internal.services.dstore.files;
|
||||
|
||||
|
@ -34,14 +35,17 @@ public class DStoreInputStream extends InputStream
|
|||
private DataElement _cmdStatus; // leaving this, in case of need for error checking
|
||||
private File _localFile;
|
||||
private InputStream _localFileInputStream;
|
||||
private int _bufferSize;
|
||||
private long _bytesRead = 0;
|
||||
|
||||
public DStoreInputStream(DataStore dataStore, String remotePath, DataElement minerElement, String encoding, int mode)
|
||||
public DStoreInputStream(DataStore dataStore, String remotePath, DataElement minerElement, String encoding, int mode, int bufferSize)
|
||||
{
|
||||
_dataStore = dataStore;
|
||||
_remotePath = remotePath;
|
||||
_minerElement = minerElement;
|
||||
_encoding = encoding;
|
||||
_mode = mode;
|
||||
_bufferSize = bufferSize;
|
||||
initDownload();
|
||||
}
|
||||
|
||||
|
@ -57,7 +61,7 @@ public class DStoreInputStream extends InputStream
|
|||
DataElement remoteElement = ds.createObject(universaltemp, de.getType(), _remotePath, String.valueOf(_mode));
|
||||
DataElement localElement = ds.createObject(universaltemp, de.getType(), _localFile.getAbsolutePath(), _encoding);
|
||||
|
||||
DataElement bufferSizeElement = ds.createObject(universaltemp, "buffer_size", "" + IUniversalDataStoreConstants.BUFFER_SIZE, ""); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
|
||||
DataElement bufferSizeElement = ds.createObject(universaltemp, "buffer_size", "" + _bufferSize, ""); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
|
||||
DataElement queryCmd = getCommandDescriptor(de, IUniversalDataStoreConstants.C_DOWNLOAD_FILE);
|
||||
|
||||
ArrayList argList = new ArrayList();
|
||||
|
@ -77,8 +81,6 @@ public class DStoreInputStream extends InputStream
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
protected DataStore getDataStore()
|
||||
{
|
||||
return _dataStore;
|
||||
|
@ -98,22 +100,24 @@ public class DStoreInputStream extends InputStream
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* wait for the temp file to be created
|
||||
*/
|
||||
protected void waitForTempFile()
|
||||
{
|
||||
if (_localFile != null)
|
||||
{
|
||||
long lastLength = 0;
|
||||
|
||||
// TODO cleanup how we wait for the temp file creation
|
||||
// keep waiting until temp file is populated and no new bytes appear to
|
||||
// be coming in
|
||||
while (((_localFile.length() == 0) || (_localFile.length() > lastLength)) &&
|
||||
!_cmdStatus.getValue().equals("done")) //$NON-NLS-1$)
|
||||
while ((_localFile.length() == 0) &&
|
||||
!isTransferCommandDone())
|
||||
{
|
||||
lastLength = _localFile.length();
|
||||
try
|
||||
{
|
||||
Thread.sleep(100);
|
||||
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
|
@ -122,11 +126,21 @@ public class DStoreInputStream extends InputStream
|
|||
}
|
||||
}
|
||||
|
||||
private boolean isTransferCommandDone()
|
||||
{
|
||||
boolean done = _cmdStatus.getValue().equals("done"); //$NON-NLS-1$
|
||||
return done;
|
||||
}
|
||||
|
||||
public int read() throws IOException
|
||||
{
|
||||
if (_localFileInputStream != null)
|
||||
{
|
||||
if (_localFileInputStream != null) {
|
||||
waitUntilAvailable(_bytesRead + 1);
|
||||
int result = _localFileInputStream.read();
|
||||
if (result > 0){
|
||||
_bytesRead++;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
return 0;
|
||||
|
@ -136,7 +150,12 @@ public class DStoreInputStream extends InputStream
|
|||
{
|
||||
if (_localFileInputStream != null)
|
||||
{
|
||||
waitUntilAvailable(_bytesRead + len);
|
||||
int result = _localFileInputStream.read(b, off, len);
|
||||
if (result > 0){
|
||||
_bytesRead += result;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
return 0;
|
||||
|
@ -146,12 +165,33 @@ public class DStoreInputStream extends InputStream
|
|||
{
|
||||
if (_localFileInputStream != null)
|
||||
{
|
||||
waitUntilAvailable(_bytesRead + b.length);
|
||||
int result = _localFileInputStream.read(b);
|
||||
if (result > 0){
|
||||
_bytesRead += result;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
private void waitUntilAvailable(long desiredAvailable)
|
||||
{
|
||||
// desiredAvailable will be the total bytes read so far + the desired extra amount
|
||||
while(_localFile.length() < desiredAvailable &&
|
||||
!isTransferCommandDone()) {
|
||||
try
|
||||
{
|
||||
Thread.sleep(100);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public int available() throws IOException
|
||||
{
|
||||
if (_localFileInputStream != null)
|
||||
|
@ -161,36 +201,16 @@ public class DStoreInputStream extends InputStream
|
|||
return 0;
|
||||
}
|
||||
|
||||
public synchronized void mark(int readlimit)
|
||||
{
|
||||
if (_localFileInputStream != null)
|
||||
{
|
||||
_localFileInputStream.mark(readlimit);
|
||||
}
|
||||
}
|
||||
|
||||
public boolean markSupported()
|
||||
{
|
||||
if (_localFileInputStream != null)
|
||||
{
|
||||
return _localFileInputStream.markSupported();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public synchronized void reset() throws IOException
|
||||
{
|
||||
if (_localFileInputStream != null)
|
||||
{
|
||||
_localFileInputStream.reset();
|
||||
}
|
||||
}
|
||||
|
||||
public long skip(long n) throws IOException
|
||||
{
|
||||
if (_localFileInputStream != null)
|
||||
{
|
||||
return _localFileInputStream.skip(n);
|
||||
waitUntilAvailable(_bytesRead + n);
|
||||
long bytesSkipped = _localFileInputStream.skip(n);
|
||||
if (bytesSkipped > 0) {
|
||||
_bytesRead += bytesSkipped;
|
||||
}
|
||||
return bytesSkipped;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue