org.jodconverter.office.OfficeUrl Maven / Gradle / Ivy
Show all versions of jodconverter-local Show documentation
/*
* Copyright 2004 - 2012 Mirko Nasato and contributors
* 2016 - 2018 Simon Braconnier and contributors
*
* This file is part of JODConverter - Java OpenDocument Converter.
*
* Licensed 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jodconverter.office;
import java.util.Map;
import com.sun.star.lib.uno.helper.UnoUrl;
/**
* Wrapper class around an UnoUrl so we are not importing the com.sun.star.lib.uno.helper.UnoUrl
* package everywhere. UnoUrl are used to deal with UNO Interprocess Connection type and parameters.
*
* OpenOffice.org supports two connection types: TCP sockets and named pipes. Named pipes are
* marginally faster and do not take up a TCP port, but they require native libraries, which means
* setting java.library.path when starting Java. E.g. on Linux
*
*
* java -Djava.library.path=/opt/openoffice.org/ure/lib ...
*
*
* See Opening
* a Connection and UNO Url
* - Specification in the OpenOffice.org Developer's Guide for more details.
*/
public class OfficeUrl {
private final UnoUrl unoUrl;
/**
* Creates an UnoUrl for the specified pipe.
*
* @param pipeName The pipe name.
* @return The created UnoUrl.
*/
static UnoUrl pipe(final String pipeName) {
// Here we must use a try catch since OpenOffice and LibreOffice doesn't
// have the same UnoUrl.parseUnoUrl signature
try {
return UnoUrl.parseUnoUrl("pipe,name=" + pipeName + ";urp;StarOffice.ServiceManager");
} catch (Exception ex) { // NOSONAR
throw new IllegalArgumentException(ex);
}
}
/**
* Creates an UnoUrl for the specified port.
*
* @param port The port.
* @return The created UnoUrl.
*/
static UnoUrl socket(final int port) {
// Here we must use a try catch since OpenOffice and LibreOffice doesn't
// have the same UnoUrl.parseUnoUrl signature
try {
return UnoUrl.parseUnoUrl(
"socket,host=127.0.0.1,port=" // NOSONAR
+ port
+ ",tcpNoDelay=1;urp;StarOffice.ServiceManager");
} catch (Exception ex) { // NOSONAR
throw new IllegalArgumentException(ex);
}
}
/**
* Creates an OfficeUrl for the specified pipe.
*
* @param pipeName The pipe name.
*/
public OfficeUrl(final String pipeName) {
this.unoUrl = pipe(pipeName);
}
/**
* Creates an OfficeUrl for the specified port.
*
* @param port The port.
*/
public OfficeUrl(final int port) {
this.unoUrl = socket(port);
}
/**
* Returns the name of the connection of this Uno Url. Encoded characters are not allowed.
*
* @return The connection name as string.
*/
public String getConnection() {
return unoUrl.getConnection();
}
/**
* Returns the name of the protocol of this Uno Url. Encoded characters are not allowed.
*
* @return The protocol name as string.
*/
public String getProtocol() {
return unoUrl.getProtocol();
}
/**
* Return the object name. Encoded character are not allowed.
*
* @return The object name as String.
*/
public String getRootOid() {
return unoUrl.getRootOid();
}
/**
* Returns the protocol parameters as a map with key/value pairs. Encoded characters like '%41'
* are decoded.
*
* @return A map with key/value pairs for protocol parameters.
*/
public Map getProtocolParameters() {
return unoUrl.getProtocolParameters();
}
/**
* Returns the connection parameters as a map with key/value pairs. Encoded characters like '%41'
* are decoded.
*
* @return A map with key/value pairs for connection parameters.
*/
public Map getConnectionParameters() {
return unoUrl.getConnectionParameters();
}
/**
* Returns the raw specification of the protocol parameters. Encoded characters like '%41' are not
* decoded.
*
* @return The uninterpreted protocol parameters as string.
*/
public String getProtocolParametersAsString() {
return unoUrl.getProtocolParametersAsString();
}
/**
* Returns the raw specification of the connection parameters. Encoded characters like '%41' are
* not decoded.
*
* @return The uninterpreted connection parameters as string.
*/
public String getConnectionParametersAsString() {
return unoUrl.getConnectionParametersAsString();
}
/**
* Returns the raw specification of the protocol name and parameters. Encoded characters like
* '%41' are not decoded.
*
* @return The uninterpreted protocol name and parameters as string.
*/
public String getProtocolAndParametersAsString() {
return unoUrl.getProtocolAndParametersAsString();
}
/**
* Returns the raw specification of the connection name and parameters. Encoded characters like
* '%41' are not decoded.
*
* @return The uninterpreted connection name and parameters as string.
*/
public String getConnectionAndParametersAsString() {
return unoUrl.getConnectionAndParametersAsString();
}
}