merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / basic / mod / stm / DataOutputStream / stm_DataOutputStream.xba
blob3354f9490c335ff9dec9984b87690362eaa70d19
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
3 <script:module xmlns:script="http://openoffice.org/2000/script" script:name="stm_DataOutputStream" script:language="StarBasic">
6 '*************************************************************************
8 ' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9 '
10 ' Copyright 2008 by Sun Microsystems, Inc.
12 ' OpenOffice.org - a multi-platform office productivity suite
14 ' $RCSfile: stm_DataOutputStream.xba,v $
16 ' $Revision: 1.3 $
18 ' This file is part of OpenOffice.org.
20 ' OpenOffice.org is free software: you can redistribute it and/or modify
21 ' it under the terms of the GNU Lesser General Public License version 3
22 ' only, as published by the Free Software Foundation.
24 ' OpenOffice.org is distributed in the hope that it will be useful,
25 ' but WITHOUT ANY WARRANTY; without even the implied warranty of
26 ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 ' GNU Lesser General Public License version 3 for more details
28 ' (a copy is included in the LICENSE file that accompanied this code).
30 ' You should have received a copy of the GNU Lesser General Public License
31 ' version 3 along with OpenOffice.org. If not, see
32 ' <http://www.openoffice.org/license.html>
33 ' for a copy of the LGPLv3 License.
35 '*************************************************************************
36 '*************************************************************************
40 ' Be sure that all variables are dimensioned:
41 option explicit
44 ' REQUIRED VARIABLES for interface/service tests:
45 Global cFileName As String
46 Global oFileAcc As Object
47 Global oInputStream As Object
48 Global oOutputStream As Object
49 Global bInputStream As Boolean
50 Global bOutputStream As Boolean
53 Sub CreateObj()
55 '*************************************************************************
56 ' COMPONENT:
57 ' stm.DataOutputStream
58 '*************************************************************************
59 On Error Goto ErrHndl
60 bInputStream = false
61 bOutputStream = false
62 cFileName = utils.getTempFileURL("BasicDataOutputStream.dat")
63 oFileAcc = createUnoService("com.sun.star.ucb.SimpleFileAccess")
65 oObj = createUnoService("com.sun.star.io.DataOutputStream")
66 ResetStreams()
67 Exit Sub
68 ErrHndl:
69 Test.Exception()
70 End Sub
72 Function getInStream() As Object
73 On Error goto ErrHndl
74 Dim oFI As Object
75 ResetStreams()
76 oInputStream = createUnoService("com.sun.star.io.DataInputStream")
77 oFI = oFileAcc.openFileRead(cFileName)
78 oInputStream.setInputStream(oFI)
79 bInputStream = true
80 getInStream() = oInputStream
81 Exit Function
82 ErrHndl:
83 Test.Exception()
84 getInStream() = NULL_OBJECT
85 End Function
87 Function getOutStream() As Object
88 On Error goto ErrHndl
89 ResetStreams()
90 getOutStream() = oOutputStream
91 Exit Function
92 ErrHndl:
93 Test.Exception()
94 getOutStream() = NULL_OBJECT
95 End Function
97 Sub ResetStreams()
98 On Error goto ErrHndl
99 if bInputStream then
100 oInputStream.closeInput()
101 bInputStream = false
102 end if
103 if bOutputStream then
104 oOutputStream.closeOutput()
105 bOutputStream = false
106 end if
107 oOutputStream = oFileAcc.openFileWrite(cFileName)
108 bOutputStream = true
109 oObj.setOutputStream(oOutputStream)
110 Exit Sub
111 ErrHndl:
112 Test.Exception()
113 resume next
114 End Sub
116 Sub DisposeObj()
117 if NOT isNULL(oObj) then oObj.closeOutput()
118 End Sub
119 </script:module>