File tree 3 files changed +10
-18
lines changed
main/java/org/codehaus/plexus/util/io
test/java/org/codehaus/plexus/util/io
3 files changed +10
-18
lines changed Original file line number Diff line number Diff line change @@ -153,19 +153,17 @@ private void flushBuffer( ByteBuffer writeBuffer ) throws IOException
153
153
@ Override
154
154
public void close () throws IOException
155
155
{
156
- flush ();
157
- long position = channel .position ();
158
- if ( position != channel .size () )
156
+ if ( channel .isOpen () )
159
157
{
160
- if ( !modified )
158
+ flush ();
159
+ long position = channel .position ();
160
+ if ( position != channel .size () )
161
161
{
162
- FileTime now = FileTime .from ( Instant .now () );
163
- Files .setLastModifiedTime ( path , now );
164
162
modified = true ;
163
+ channel .truncate ( position );
165
164
}
166
- channel .truncate ( position );
165
+ channel .close ( );
167
166
}
168
- channel .close ();
169
167
}
170
168
171
169
public boolean isModified ()
Original file line number Diff line number Diff line change 17
17
*/
18
18
19
19
import java .io .IOException ;
20
- import java .io .OutputStream ;
21
20
import java .nio .charset .StandardCharsets ;
22
21
import java .nio .file .Files ;
23
22
import java .nio .file .Path ;
@@ -39,7 +38,6 @@ public class CachingOutputStreamTest
39
38
40
39
Path tempDir ;
41
40
Path checkLastModified ;
42
- FileTime lm ;
43
41
44
42
@ Before
45
43
public void setup () throws IOException
@@ -48,19 +46,18 @@ public void setup() throws IOException
48
46
Files .createDirectories ( dir );
49
47
tempDir = Files .createTempDirectory ( dir , "temp-" );
50
48
checkLastModified = tempDir .resolve ( ".check" );
51
- Files .newOutputStream ( checkLastModified ).close ();
52
- lm = Files .getLastModifiedTime ( checkLastModified );
53
49
}
54
50
55
51
private void waitLastModified () throws IOException , InterruptedException
56
52
{
53
+ Files .newOutputStream ( checkLastModified ).close ();
54
+ FileTime lm = Files .getLastModifiedTime ( checkLastModified );
57
55
while ( true )
58
56
{
59
57
Files .newOutputStream ( checkLastModified ).close ();
60
58
FileTime nlm = Files .getLastModifiedTime ( checkLastModified );
61
59
if ( !Objects .equals ( nlm , lm ) )
62
60
{
63
- lm = nlm ;
64
61
break ;
65
62
}
66
63
Thread .sleep ( 10 );
Original file line number Diff line number Diff line change 27
27
import org .junit .Before ;
28
28
import org .junit .Test ;
29
29
30
- import static org .junit .Assert .assertArrayEquals ;
31
30
import static org .junit .Assert .assertEquals ;
32
31
import static org .junit .Assert .assertFalse ;
33
32
import static org .junit .Assert .assertNotEquals ;
@@ -38,7 +37,6 @@ public class CachingWriterTest
38
37
39
38
Path tempDir ;
40
39
Path checkLastModified ;
41
- FileTime lm ;
42
40
43
41
@ Before
44
42
public void setup () throws IOException
@@ -47,19 +45,18 @@ public void setup() throws IOException
47
45
Files .createDirectories ( dir );
48
46
tempDir = Files .createTempDirectory ( dir , "temp-" );
49
47
checkLastModified = tempDir .resolve ( ".check" );
50
- Files .newOutputStream ( checkLastModified ).close ();
51
- lm = Files .getLastModifiedTime ( checkLastModified );
52
48
}
53
49
54
50
private void waitLastModified () throws IOException , InterruptedException
55
51
{
52
+ Files .newOutputStream ( checkLastModified ).close ();
53
+ FileTime lm = Files .getLastModifiedTime ( checkLastModified );
56
54
while ( true )
57
55
{
58
56
Files .newOutputStream ( checkLastModified ).close ();
59
57
FileTime nlm = Files .getLastModifiedTime ( checkLastModified );
60
58
if ( !Objects .equals ( nlm , lm ) )
61
59
{
62
- lm = nlm ;
63
60
break ;
64
61
}
65
62
Thread .sleep ( 10 );
You can’t perform that action at this time.
0 commit comments