Java Code Examples for com.sun.star.uno.XComponentContext#getServiceManager()
The following examples show how to use
com.sun.star.uno.XComponentContext#getServiceManager() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: OOPresentation.java From Quelea with GNU General Public License v3.0 | 6 votes |
/** * Connect to an office, if no office is running a new instance is * started. A new connection is established and the service manger from * the running office is returned. * * @param path the path to the openoffice install. */ private static XComponentContext connect(String path) throws BootstrapException, Exception { File progPath = new File(path, "program"); xOfficeContext = BootstrapSocketConnector.bootstrap(progPath.getAbsolutePath()); XComponentContext localContext = Bootstrap.createInitialComponentContext(null); XMultiComponentFactory localServiceManager = localContext.getServiceManager(); XConnector connector = UnoRuntime.queryInterface(XConnector.class, localServiceManager.createInstanceWithContext("com.sun.star.connection.Connector", localContext)); connection = connector.connect(RUN_ARGS); XBridgeFactory bridgeFactory = UnoRuntime.queryInterface(XBridgeFactory.class, localServiceManager.createInstanceWithContext("com.sun.star.bridge.BridgeFactory", localContext)); bridge = bridgeFactory.createBridge("", "urp", connection, null); bridgeComponent = UnoRuntime.queryInterface(XComponent.class, bridge); bridgeComponent.addEventListener(new com.sun.star.lang.XEventListener() { @Override public void disposing(EventObject eo) { } }); return xOfficeContext; }
Example 2
Source File: AbstractInliner.java From yarg with Apache License 2.0 | 6 votes |
protected void insertImage(XComponent document, OfficeResourceProvider officeResourceProvider, XText destination, XTextRange textRange, Image image) throws Exception { XMultiServiceFactory xFactory = as(XMultiServiceFactory.class, document); XComponentContext xComponentContext = officeResourceProvider.getXComponentContext(); XMultiComponentFactory serviceManager = xComponentContext.getServiceManager(); Object oImage = xFactory.createInstance(TEXT_GRAPHIC_OBJECT); Object oGraphicProvider = serviceManager.createInstanceWithContext(GRAPHIC_PROVIDER_OBJECT, xComponentContext); XGraphicProvider xGraphicProvider = as(XGraphicProvider.class, oGraphicProvider); XPropertySet imageProperties = buildImageProperties(xGraphicProvider, oImage, image.imageContent); XTextContent xTextContent = as(XTextContent.class, oImage); destination.insertTextContent(textRange, xTextContent, true); setImageSize(image.width, image.height, oImage, imageProperties); }
Example 3
Source File: OfficeConnection.java From yarg with Apache License 2.0 | 6 votes |
public void open() throws OpenOfficeException { if (this.closed) { try { XComponentContext localContext = bsc.connect("127.0.0.1", port); String connectionString = "socket,host=127.0.0.1,port=" + port; XMultiComponentFactory localServiceManager = localContext.getServiceManager(); XConnector connector = as(XConnector.class, localServiceManager.createInstanceWithContext("com.sun.star.connection.Connector", localContext)); XConnection connection = connector.connect(connectionString); XBridgeFactory bridgeFactory = as(XBridgeFactory.class, localServiceManager.createInstanceWithContext("com.sun.star.bridge.BridgeFactory", localContext)); String bridgeName = "yarg_" + bridgeIndex.incrementAndGet(); XBridge bridge = bridgeFactory.createBridge(bridgeName, "urp", connection, null); XMultiComponentFactory serviceManager = as(XMultiComponentFactory.class, bridge.getInstance("StarOffice.ServiceManager")); XPropertySet properties = as(XPropertySet.class, serviceManager); xComponentContext = as(XComponentContext.class, properties.getPropertyValue("DefaultContext")); officeResourceProvider = new OfficeResourceProvider(xComponentContext, officeIntegration); closed = false; } catch (Exception e) { close(); throw new OpenOfficeException("Unable to create Open office components.", e); } } }
Example 4
Source File: OfficeConnection.java From kkFileViewOfficeEdit with Apache License 2.0 | 5 votes |
public void connect() throws ConnectException { logger.fine(String.format("connecting with connectString '%s'", unoUrl)); try { XComponentContext localContext = Bootstrap.createInitialComponentContext(null); XMultiComponentFactory localServiceManager = localContext.getServiceManager(); XConnector connector = OfficeUtils.cast(XConnector.class, localServiceManager.createInstanceWithContext("com.sun.star.connection.Connector", localContext)); XConnection connection = connector.connect(unoUrl.getConnectString()); XBridgeFactory bridgeFactory = OfficeUtils.cast(XBridgeFactory.class, localServiceManager.createInstanceWithContext("com.sun.star.bridge.BridgeFactory", localContext)); String bridgeName = "jodconverter_" + bridgeIndex.getAndIncrement(); XBridge bridge = bridgeFactory.createBridge(bridgeName, "urp", connection, null); bridgeComponent = OfficeUtils.cast(XComponent.class, bridge); bridgeComponent.addEventListener(bridgeListener); serviceManager = OfficeUtils.cast(XMultiComponentFactory.class, bridge.getInstance("StarOffice.ServiceManager")); XPropertySet properties = OfficeUtils.cast(XPropertySet.class, serviceManager); componentContext = OfficeUtils.cast(XComponentContext.class, properties.getPropertyValue("DefaultContext")); connected = true; logger.info(String.format("connected: '%s'", unoUrl)); OfficeConnectionEvent connectionEvent = new OfficeConnectionEvent(this); for (OfficeConnectionEventListener listener : connectionEventListeners) { listener.connected(connectionEvent); } } catch (NoConnectException connectException) { throw new ConnectException(String.format("connection failed: '%s'; %s", unoUrl, connectException.getMessage())); } catch (Exception exception) { throw new OfficeException("connection failed: "+ unoUrl, exception); } }
Example 5
Source File: OfficeConnection.java From kkFileView with Apache License 2.0 | 5 votes |
public void connect() throws ConnectException { logger.fine(String.format("connecting with connectString '%s'", unoUrl)); try { XComponentContext localContext = Bootstrap.createInitialComponentContext(null); XMultiComponentFactory localServiceManager = localContext.getServiceManager(); XConnector connector = OfficeUtils.cast(XConnector.class, localServiceManager.createInstanceWithContext("com.sun.star.connection.Connector", localContext)); XConnection connection = connector.connect(unoUrl.getConnectString()); XBridgeFactory bridgeFactory = OfficeUtils.cast(XBridgeFactory.class, localServiceManager.createInstanceWithContext("com.sun.star.bridge.BridgeFactory", localContext)); String bridgeName = "jodconverter_" + bridgeIndex.getAndIncrement(); XBridge bridge = bridgeFactory.createBridge(bridgeName, "urp", connection, null); bridgeComponent = OfficeUtils.cast(XComponent.class, bridge); bridgeComponent.addEventListener(bridgeListener); serviceManager = OfficeUtils.cast(XMultiComponentFactory.class, bridge.getInstance("StarOffice.ServiceManager")); XPropertySet properties = OfficeUtils.cast(XPropertySet.class, serviceManager); componentContext = OfficeUtils.cast(XComponentContext.class, properties.getPropertyValue("DefaultContext")); connected = true; logger.info(String.format("connected: '%s'", unoUrl)); OfficeConnectionEvent connectionEvent = new OfficeConnectionEvent(this); for (OfficeConnectionEventListener listener : connectionEventListeners) { listener.connected(connectionEvent); } } catch (NoConnectException connectException) { throw new ConnectException(String.format("connection failed: '%s'; %s", unoUrl, connectException.getMessage())); } catch (Exception exception) { throw new OfficeException("connection failed: "+ unoUrl, exception); } }
Example 6
Source File: OfficeConnection.java From wenku with MIT License | 5 votes |
public void connect() throws ConnectException { logger.fine(String.format("connecting with connectString '%s'", unoUrl)); try { XComponentContext localContext = Bootstrap.createInitialComponentContext(null); XMultiComponentFactory localServiceManager = localContext.getServiceManager(); XConnector connector = OfficeUtils.cast(XConnector.class, localServiceManager.createInstanceWithContext("com.sun.star.connection.Connector", localContext)); XConnection connection = connector.connect(unoUrl.getConnectString()); XBridgeFactory bridgeFactory = OfficeUtils.cast(XBridgeFactory.class, localServiceManager.createInstanceWithContext("com.sun.star.bridge.BridgeFactory", localContext)); String bridgeName = "jodconverter_" + bridgeIndex.getAndIncrement(); XBridge bridge = bridgeFactory.createBridge(bridgeName, "urp", connection, null); bridgeComponent = OfficeUtils.cast(XComponent.class, bridge); bridgeComponent.addEventListener(bridgeListener); serviceManager = OfficeUtils.cast(XMultiComponentFactory.class, bridge.getInstance("StarOffice.ServiceManager")); XPropertySet properties = OfficeUtils.cast(XPropertySet.class, serviceManager); componentContext = OfficeUtils.cast(XComponentContext.class, properties.getPropertyValue("DefaultContext")); connected = true; logger.info(String.format("connected: '%s'", unoUrl)); OfficeConnectionEvent connectionEvent = new OfficeConnectionEvent(this); for (OfficeConnectionEventListener listener : connectionEventListeners) { listener.connected(connectionEvent); } } catch (NoConnectException connectException) { throw new ConnectException(String.format("connection failed: '%s'; %s", unoUrl, connectException.getMessage())); } catch (Exception exception) { throw new OfficeException("connection failed: "+ unoUrl, exception); } }
Example 7
Source File: OPConnection.java From translationstudio8 with GNU General Public License v2.0 | 5 votes |
/** * (non-Javadoc) * @see net.heartsome.cat.converter.ooconnect.OPconnect#connect() * @throws ConnectException */ public void connect() throws ConnectException { try { XComponentContext localContext; localContext = Bootstrap.createInitialComponentContext(null); XMultiComponentFactory localServiceManager = localContext.getServiceManager(); XConnector connector = (XConnector) UnoRuntime.queryInterface(XConnector.class, localServiceManager .createInstanceWithContext("com.sun.star.connection.Connector", localContext)); //$NON-NLS-1$ XConnection connection = connector.connect(strConnection); XBridgeFactory bridgeFactory = (XBridgeFactory) UnoRuntime.queryInterface(XBridgeFactory.class, localServiceManager.createInstanceWithContext("com.sun.star.bridge.BridgeFactory", localContext)); //$NON-NLS-1$ bridge = bridgeFactory.createBridge("ms2ooBridge", "urp", connection, null); //$NON-NLS-1$ //$NON-NLS-2$ bgComponent = (XComponent) UnoRuntime.queryInterface(XComponent.class, bridge); // bgComponent.addEventListener(this); serviceMg = (XMultiComponentFactory) UnoRuntime.queryInterface(XMultiComponentFactory.class, bridge .getInstance("StarOffice.ServiceManager")); //$NON-NLS-1$ XPropertySet properties = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, serviceMg); componentContext = (XComponentContext) UnoRuntime.queryInterface(XComponentContext.class, properties .getPropertyValue("DefaultContext")); //$NON-NLS-1$ connected = true; if (connected) { System.out.println("has already connected"); //$NON-NLS-1$ } else { System.out.println("connect to Openoffice fail,please check OpenOffice service that have to open"); //$NON-NLS-1$ } } catch (NoConnectException connectException) { throw new ConnectException(MessageFormat.format(Messages.getString("ooconnect.OPConnection.msg"), strConnection + ": " + connectException.getMessage())); //$NON-NLS-1$ //$NON-NLS-2$ } catch (Exception exception) { throw new OPException(MessageFormat.format(Messages.getString("ooconnect.OPConnection.msg"), strConnection), exception); //$NON-NLS-1$ } catch (java.lang.Exception e) { if (Converter.DEBUG_MODE) { e.printStackTrace(); } } }
Example 8
Source File: OPConnection.java From tmxeditor8 with GNU General Public License v2.0 | 5 votes |
/** * (non-Javadoc) * @see net.heartsome.cat.converter.ooconnect.OPconnect#connect() * @throws ConnectException */ public void connect() throws ConnectException { try { XComponentContext localContext; localContext = Bootstrap.createInitialComponentContext(null); XMultiComponentFactory localServiceManager = localContext.getServiceManager(); XConnector connector = (XConnector) UnoRuntime.queryInterface(XConnector.class, localServiceManager .createInstanceWithContext("com.sun.star.connection.Connector", localContext)); //$NON-NLS-1$ XConnection connection = connector.connect(strConnection); XBridgeFactory bridgeFactory = (XBridgeFactory) UnoRuntime.queryInterface(XBridgeFactory.class, localServiceManager.createInstanceWithContext("com.sun.star.bridge.BridgeFactory", localContext)); //$NON-NLS-1$ bridge = bridgeFactory.createBridge("ms2ooBridge", "urp", connection, null); //$NON-NLS-1$ //$NON-NLS-2$ bgComponent = (XComponent) UnoRuntime.queryInterface(XComponent.class, bridge); // bgComponent.addEventListener(this); serviceMg = (XMultiComponentFactory) UnoRuntime.queryInterface(XMultiComponentFactory.class, bridge .getInstance("StarOffice.ServiceManager")); //$NON-NLS-1$ XPropertySet properties = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, serviceMg); componentContext = (XComponentContext) UnoRuntime.queryInterface(XComponentContext.class, properties .getPropertyValue("DefaultContext")); //$NON-NLS-1$ connected = true; if (connected) { System.out.println("has already connected"); //$NON-NLS-1$ } else { System.out.println("connect to Openoffice fail,please check OpenOffice service that have to open"); //$NON-NLS-1$ } } catch (NoConnectException connectException) { throw new ConnectException(MessageFormat.format(Messages.getString("ooconnect.OPConnection.msg"), strConnection + ": " + connectException.getMessage())); //$NON-NLS-1$ //$NON-NLS-2$ } catch (Exception exception) { throw new OPException(MessageFormat.format(Messages.getString("ooconnect.OPConnection.msg"), strConnection), exception); //$NON-NLS-1$ } catch (java.lang.Exception e) { if (Converter.DEBUG_MODE) { e.printStackTrace(); } } }
Example 9
Source File: TerminationOpenoffice.java From translationstudio8 with GNU General Public License v2.0 | 4 votes |
/** * Gets the current component. * @return the current component * @throws Exception * the exception */ public static XComponent getCurrentComponent() throws Exception { XComponentContext xRemoteContext = com.sun.star.comp.helper.Bootstrap.createInitialComponentContext(null); // XComponentContext xRemoteContext = // com.sun.star.comp.helper.Bootstrap.bootstrap(); XMultiComponentFactory xRemoteServiceManager = xRemoteContext.getServiceManager(); Object desktop = xRemoteServiceManager.createInstanceWithContext("com.sun.star.frame.Desktop", xRemoteContext); //$NON-NLS-1$ XDesktop xDesktop = (XDesktop) UnoRuntime.queryInterface(XDesktop.class, desktop); XComponent currentComponent = xDesktop.getCurrentComponent(); return currentComponent; }
Example 10
Source File: TerminationOpenoffice.java From tmxeditor8 with GNU General Public License v2.0 | 4 votes |
/** * Gets the current component. * @return the current component * @throws Exception * the exception */ public static XComponent getCurrentComponent() throws Exception { XComponentContext xRemoteContext = com.sun.star.comp.helper.Bootstrap.createInitialComponentContext(null); // XComponentContext xRemoteContext = // com.sun.star.comp.helper.Bootstrap.bootstrap(); XMultiComponentFactory xRemoteServiceManager = xRemoteContext.getServiceManager(); Object desktop = xRemoteServiceManager.createInstanceWithContext("com.sun.star.frame.Desktop", xRemoteContext); //$NON-NLS-1$ XDesktop xDesktop = (XDesktop) UnoRuntime.queryInterface(XDesktop.class, desktop); XComponent currentComponent = xDesktop.getCurrentComponent(); return currentComponent; }