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
119
120
121
122
123
|
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
package complex.tempfile;
import com.sun.star.io.*;
import com.sun.star.uno.*;
import com.sun.star.uno.AnyConverter;
import com.sun.star.ucb.XSimpleFileAccess;
import java.io.*;
public class TestHelper {
private String m_sTestPrefix;
public TestHelper( String sTestPrefix ) {
m_sTestPrefix = sTestPrefix;
}
public void SetTempFileRemove( XTempFile xTempFile, boolean b ) {
xTempFile.setRemoveFile( b );
}
public String GetTempFileURL ( XTempFile xTempFile ) throws java.lang.Exception {
String sTempFileURL = AnyConverter.toString( xTempFile.getUri() );
if ( sTempFileURL == null || sTempFileURL.equals("") ) {
throw new java.lang.Exception( "Temporary file not valid." );
}
return sTempFileURL;
}
public String GetTempFileName( XTempFile xTempFile ) throws java.lang.Exception {
String sTempFileName = AnyConverter.toString( xTempFile.getResourceName() );
if ( sTempFileName == null || sTempFileName.equals("") ) {
throw new java.lang.Exception( "Temporary file not valid." );
}
return sTempFileName;
}
public boolean CompareFileNameAndURL ( String sTempFileName, String sTempFileURL ) throws java.lang.Exception {
boolean bRet = sTempFileURL.endsWith( sTempFileName.replaceAll( "\\\\" , "/" ) );
if (!bRet)
throw new java.lang.Exception("FILE NAME AND URL DO NOT MATCH." );
return bRet;
}
public void WriteBytesWithStream( byte [] pBytes, XTempFile xTempFile ) throws java.lang.Exception {
XOutputStream xOutTemp = xTempFile.getOutputStream();
if ( xOutTemp == null )
throw new java.lang.Exception( "Cannot get output stream." );
xOutTemp.writeBytes( pBytes );
xOutTemp.flush();
Message ( "Write " + pBytes.length + " bytes to tempfile successfully." );
}
public void ReadBytesWithStream( byte [][] pBytes, int nBytes, XTempFile xTempFile ) throws java.lang.Exception {
XInputStream xInTemp = xTempFile.getInputStream();
if ( xInTemp == null )
throw new java.lang.Exception( "Cannot get input stream from tempfile." );
int n = xInTemp.readBytes( pBytes, nBytes );
Message ( "Read " + n + " bytes from tempfile successfully." );
}
public void ReadDirectlyFromTempFile( byte [][] pBytes, int nBytes, XSimpleFileAccess xSFA, String sTempFileURL )
throws java.lang.Exception
{
Message ( "Attempting to read directly from " + sTempFileURL );
XInputStream xInTemp = xSFA.openFileRead( sTempFileURL );
if ( xInTemp == null )
throw new java.lang.Exception("Cannot create input stream from URL.");
int n = xInTemp.readBytes( pBytes, nBytes );
xInTemp.closeInput();
Message ( "Read " + n + " bytes directly from tempfile successfully. " + sTempFileURL );
}
public void CloseTempFile( XTempFile xTempFile ) throws java.lang.Exception {
XOutputStream xOutTemp = null;
XInputStream xInTemp = null;
xOutTemp = xTempFile.getOutputStream();
if ( xOutTemp == null ) {
throw new java.lang.Exception( "Cannot get output stream." );
}
xOutTemp.closeOutput();
xInTemp = xTempFile.getInputStream();
if ( xInTemp == null ) {
throw new java.lang.Exception( "Cannot get input stream." );
}
xInTemp.closeInput();
Message ( "Tempfile closed successfully." );
}
public void KillTempFile ( String sTempFileURL, XSimpleFileAccess xSFA ) throws com.sun.star.uno.Exception {
xSFA.kill( sTempFileURL );
Message ( "Tempfile killed successfully." );
}
public boolean IfTempFileExists( XSimpleFileAccess xSFA, String sTempFileURL )
throws com.sun.star.uno.Exception
{
boolean bRet = false;
bRet = xSFA.exists( sTempFileURL );
Message ( "Tempfile " + ( bRet ? "still " : "no longer " ) + "exists." );
return bRet;
}
public void Message( String sMessage ) {
System.out.println( m_sTestPrefix + sMessage );
}
}
|