1 /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 /*************************************************************************
5 * The Contents of this file are made available subject to the terms of
8 * Copyright 2000, 2010 Oracle and/or its affiliates.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of Sun Microsystems, Inc. nor the names of its
20 * contributors may be used to endorse or promote products derived
21 * from this software without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
30 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
31 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
32 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
33 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 *************************************************************************/
37 import com
.sun
.star
.beans
.Property
;
38 import com
.sun
.star
.beans
.PropertyValue
;
39 import com
.sun
.star
.frame
.XComponentLoader
;
40 import com
.sun
.star
.frame
.XModel
;
41 import com
.sun
.star
.lang
.XComponent
;
42 import com
.sun
.star
.lang
.XMultiComponentFactory
;
43 import com
.sun
.star
.sdbc
.XRow
;
44 import com
.sun
.star
.ucb
.Command
;
45 import com
.sun
.star
.ucb
.UniversalContentBroker
;
46 import com
.sun
.star
.ucb
.XCommandProcessor
;
47 import com
.sun
.star
.ucb
.XContent
;
48 import com
.sun
.star
.ucb
.XContentIdentifier
;
49 import com
.sun
.star
.ucb
.XSimpleFileAccess
;
50 import com
.sun
.star
.ucb
.XUniversalContentBroker
;
51 import com
.sun
.star
.uno
.UnoRuntime
;
52 import com
.sun
.star
.uno
.XComponentContext
;
53 import javax
.swing
.JOptionPane
;
56 public class TDocSupplier
{
57 private XMultiComponentFactory m_xMultiComponentFactory
;
58 private XComponentContext m_xComponentContext
;
61 /** Creates a new instance of TDocSupplier */
62 public TDocSupplier(XComponentContext _xComponentContext
) {
63 m_xComponentContext
= _xComponentContext
;
64 m_xMultiComponentFactory
= m_xComponentContext
.getServiceManager();
68 private XComponentContext
getXComponentContext(){
69 return m_xComponentContext
;
73 private XMultiComponentFactory
getXMultiComponentFactory(){
74 return m_xMultiComponentFactory
;
77 public XModel
getXModelByTDocUrl(String _sTDocUrl
){
79 XRow xRow
= getXRowOfTDocUrl(_sTDocUrl
, "DocumentModel");
81 Object oModel
= xRow
.getObject(1, null);
82 XModel xModel
= UnoRuntime
.queryInterface(XModel
.class, oModel
);
85 }catch(Exception exception
){
86 exception
.printStackTrace(System
.err
);
88 JOptionPane
.showMessageDialog(new javax
.swing
.JFrame(), "The selected Document could not be opened!", "Object Inspector", JOptionPane
.ERROR_MESSAGE
);
93 public String
getTitleByTDocUrl(String _sTDocUrl
){
95 XRow xRow
= this.getXRowOfTDocUrl(_sTDocUrl
, "Title");
97 return xRow
.getString(1);
99 }catch(Exception exception
){
100 exception
.printStackTrace(System
.err
);
102 JOptionPane
.showMessageDialog(new javax
.swing
.JFrame(), "The selected Document could not be opened!", "Object Inspector", JOptionPane
.ERROR_MESSAGE
);
107 private XRow
getXRowOfTDocUrl(String _sTDocUrl
, String _sPropertyName
){
109 XUniversalContentBroker xUCB
= UniversalContentBroker
.create( getXComponentContext() );
110 XContentIdentifier xId
= xUCB
.createContentIdentifier(_sTDocUrl
);
111 XContent xContent
= xUCB
.queryContent(xId
);
112 XCommandProcessor xCmdProcessor
= UnoRuntime
.queryInterface(XCommandProcessor
.class, xContent
);
113 Property aProperty
= new Property();
114 aProperty
.Name
= _sPropertyName
; // "DocumentModel"; //DocumentModel
115 Command aCommand
= new Command();
116 aCommand
.Name
= "getPropertyValues";
117 aCommand
.Handle
= -1; // not available
118 aCommand
.Argument
= new Property
[]{aProperty
};
119 Object oAny
= xCmdProcessor
.execute(aCommand
, 0, null);
120 XRow xRow
= UnoRuntime
.queryInterface(XRow
.class, oAny
);
122 }catch(Exception exception
){
123 exception
.printStackTrace(System
.err
);
128 protected String
[] getTDocTitles(String
[] _sTDocUrls
){
129 String
[] sTitles
= new String
[_sTDocUrls
.length
];
130 for (int i
= 0; i
< _sTDocUrls
.length
; i
++){
131 sTitles
[i
] = getTitleByTDocUrl(_sTDocUrls
[i
]);
137 protected String
[] getTDocUrls(){
139 Object oSimpleFileAccess
= getXMultiComponentFactory().createInstanceWithContext("com.sun.star.ucb.SimpleFileAccess", getXComponentContext());
140 XSimpleFileAccess xSimpleFileAccess
= UnoRuntime
.queryInterface(XSimpleFileAccess
.class, oSimpleFileAccess
);
141 String
[] sContent
= xSimpleFileAccess
.getFolderContents("vnd.sun.star.tdoc:/", false);
143 } catch( Exception e
) {
144 System
.err
.println( e
);
145 return new String
[]{};
149 public XComponent
openEmptyDocument(String _sUrl
){
151 PropertyValue
[] aPropertyValues
= new PropertyValue
[1];
152 aPropertyValues
[0] = new PropertyValue();
153 aPropertyValues
[0].Name
= "Hidden";
154 aPropertyValues
[0].Value
= Boolean
.TRUE
;
155 Object oDesktop
= getXMultiComponentFactory().createInstanceWithContext("com.sun.star.frame.Desktop", getXComponentContext());
156 XComponentLoader xCL
= UnoRuntime
.queryInterface(XComponentLoader
.class, oDesktop
);
157 return xCL
.loadComponentFromURL(_sUrl
, "_default", 0, aPropertyValues
);
159 catch( Exception exception
) {
160 System
.err
.println( exception
);
166 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */