merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / basic / mod / streams.uno / ObjectInputStream / streams_uno_ObjectInputStream.xba
blobcf4e9aa48627092d3a1c38e977ebadc2339a9a85
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="streams_uno_ObjectInputStream" 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: streams_uno_ObjectInputStream.xba,v $
16 ' $Revision: 1.4 $
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 oMarkOut As Object, oMarkIn As Object
52 Sub CreateObj()
54 '*************************************************************************
55 ' COMPONENT:
56 ' stm.ObjectInputStream
57 '*************************************************************************
58 On Error Goto ErrHndl
59 Dim oPipe As Object
61 oObj = createUnoService("com.sun.star.io.ObjectInputStream")
62 oMarkIn = createUnoService("com.sun.star.io.MarkableInputStream")
63 oPipe = createUnoService("com.sun.star.io.Pipe")
64 oMarkOut = createUnoService("com.sun.star.io.MarkableOutputStream")
65 oOutputStream = createUnoService("com.sun.star.io.ObjectOutputStream")
66 oObj.setInputStream(oMarkIn)
67 oMarkIn.setInputStream(oPipe)
68 oMarkOut.setOutputStream(oPipe)
69 oOutputStream.setOutputStream(oMarkOut)
70 oInputStream = oObj
72 Exit Sub
73 ErrHndl:
74 Test.Exception()
75 End Sub
77 Function getInStream() As Object
78 On Error Goto ErrHndl
79 getInStream() = oInputStream
80 Exit Function
81 ErrHndl:
82 Test.Exception()
83 getInStream() = NULL_OBJECT
84 End Function
86 Function getOutStream() As Object
87 On Error Goto ErrHndl
88 Dim oNewPipe As Object
90 oNewPipe = createUnoService("com.sun.star.io.Pipe")
91 oMarkIn.getInputStream().closeInput()
92 oMarkOut.getOutputStream().closeOutput()
93 oMarkIn.setInputStream(oNewPipe)
94 oMarkOut.setOutputStream(oNewPipe)
95 getOutStream() = oOutputStream
96 Exit Function
97 ErrHndl:
98 Test.Exception()
99 getOutStream() = NULL_OBJECT
100 End Function
102 Sub ResetStreams()
103 On Error goto ErrHndl
104 Exit Sub
105 ErrHndl:
106 Out.Log("ResetStreams: exception: " + error)
107 resume next
108 End Sub
110 Sub DisposeObj()
111 if NOT isNULL(oObj) then oObj.closeInput()
112 End Sub
113 </script:module>