Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
package org.litesoft.server.util;

import org.litesoft.commonfoundation.exceptions.*;
import org.litesoft.server.util.*;

import java.io.*;
import java.util.*;

public class IOUtils {
    public static final String UTF_8 = "UTF-8";

    public static BufferedReader createReader( InputStream pInputStream )
            throws IOException {
        return new BufferedReader( new InputStreamReader( pInputStream, UTF_8 ) );
    }

    public static BufferedWriter createWriter( OutputStream pOS )
            throws IOException {
        return new BufferedWriter( new OutputStreamWriter( pOS, UTF_8 ) );
    }

    public static String[] loadTextFile( BufferedReader pReader )
            throws FileSystemException {
        try {
            List<String> lines = new LinkedList<String>();
            boolean closed = false;
            try {
                for ( String line; null != (line = pReader.readLine()); ) {
                    lines.add( line );
                }
                closed = true;
                pReader.close();
            }
            finally {
                if ( !closed ) {
                    Closeables.dispose( pReader );
                }
            }
            return lines.toArray( new String[lines.size()] );
        }
        catch ( IOException e ) {
            throw new FileSystemException( e );
        }
    }

    public static void storeBytes( List<byte[]> pContents, OutputStream pOutputStream ) {
        try {
            boolean closed = false;
            try {
                for ( byte[] zBlock : pContents ) {
                    pOutputStream.write( zBlock );
                }
                closed = true;
                pOutputStream.close();
            }
            finally {
                if ( !closed ) {
                    Closeables.dispose( pOutputStream );
                }
            }
        }
        catch ( IOException e ) {
            throw new FileSystemException( e );
        }
    }

    public static List<byte[]> loadBytes( InputStream pInputStream ) {
        try {
            List<byte[]> blocks = new LinkedList<byte[]>();
            boolean closed = false;
            try {
                for ( byte[] zBlock; null != (zBlock = readBlock( pInputStream )); ) {
                    blocks.add( zBlock );
                }
                closed = true;
                pInputStream.close();
            }
            finally {
                if ( !closed ) {
                    Closeables.dispose( pInputStream );
                }
            }
            return blocks;
        }
        catch ( IOException e ) {
            throw new FileSystemException( e );
        }
    }

    private static byte[] readBlock( InputStream pInputStream )
            throws IOException {
        byte[] zBlock = new byte[4096];
        int zCount;
        do {
            if ( zBlock.length == (zCount = pInputStream.read( zBlock )) ) {
                return zBlock;
            }
        } while ( zCount == 0 );
        if ( zCount == -1 ) {
            return null;
        }
        byte[] zShortBlock = new byte[zCount];
        System.arraycopy( zBlock, 0, zShortBlock, 0, zCount );
        return zShortBlock;
    }

    @SuppressWarnings("StatementWithEmptyBody")
    public static void drain( InputStream pInputStream ) {
        try {
            while ( -1 != pInputStream.read() ) {
                ;
            }
        }
        catch ( IOException whatever ) {
            // Whatever
        }
    }
}

Commits for litesoft/trunk/Java/core/Server/src/org/litesoft/server/util/IOUtils.java

Diff revisions: vs.
Revision Author Commited Message
958 Diff Diff GeorgeS picture GeorgeS Mon 14 Jul, 2014 15:29:35 +0000

Embrace OSS code bases.
Drop NAS-Video.

951 GeorgeS picture GeorgeS Thu 19 Jun, 2014 17:58:24 +0000

Clean up.