org.apache.jackrabbit.spi2davex.Spi2davexRepositoryServiceFactory Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.jackrabbit.spi2davex;
import java.util.Map;
import javax.jcr.RepositoryException;
import org.apache.jackrabbit.spi.ItemInfoCache;
import org.apache.jackrabbit.spi.RepositoryService;
import org.apache.jackrabbit.spi.RepositoryServiceFactory;
import org.apache.jackrabbit.spi.commons.ItemInfoCacheImpl;
/**
* This {@link RepositoryServiceFactory} implementation is responsible
* for creating {@link RepositoryServiceImpl} instances.
*/
public class Spi2davexRepositoryServiceFactory implements RepositoryServiceFactory {
/**
* Mandatory configuration parameter: It's value is expected to specify the
* URI of the JCR server implementation. {@link #DEFAULT_REPOSITORY_URI} is used as
* fallback if no parameters or uri has been specified and the uri could not
* been retrieved from system props either.
*
* @see org.apache.jackrabbit.server.remoting.davex.JcrRemotingServlet
*/
public static final String PARAM_REPOSITORY_URI = "org.apache.jackrabbit.spi2davex.uri";
/**
* Default URI for the {@link #PARAM_REPOSITORY_URI} configuration
* parameter.
*/
public static final String DEFAULT_REPOSITORY_URI = "http://localhost:8080/jackrabbit/server";
/**
* Optional batch read configuration parameter: If present it's value is
* expected to be an instance of {@link BatchReadConfig}
*/
public static final String PARAM_BATCHREAD_CONFIG = "org.apache.jackrabbit.spi2davex.BatchReadConfig";
/**
* Optional configuration parameter: It's value determines the size of the
* {@link ItemInfoCache} cache. Defaults to {@link ItemInfoCacheImpl#DEFAULT_CACHE_SIZE}.
*/
public static final String PARAM_ITEMINFO_CACHE_SIZE = "org.apache.jackrabbit.spi2davex.ItemInfoCacheSize";
/**
* Optional configuration parameter: It's value defines the
* maximumConnectionsPerHost value on the HttpClient configuration and
* must be an int greater than zero.
*/
public static final String PARAM_MAX_CONNECTIONS = "org.apache.jackrabbit.spi2davex.MaxConnections";
public static final String PARAM_WORKSPACE_NAME_DEFAULT = "org.apache.jackrabbit.spi2davex.WorkspaceNameDefault";
public static final String DEFAULT_WORKSPACE_NAME_DEFAULT = "default";
public RepositoryService createRepositoryService(Map, ?> parameters) throws RepositoryException {
// retrieve the repository uri
String uri;
if (parameters == null) {
uri = System.getProperty(PARAM_REPOSITORY_URI);
} else {
Object repoUri = parameters.get(PARAM_REPOSITORY_URI);
uri = (repoUri == null) ? null : repoUri.toString();
}
if (uri == null) {
uri = DEFAULT_REPOSITORY_URI;
}
// load other optional configuration parameters
BatchReadConfig brc = null;
int itemInfoCacheSize = ItemInfoCacheImpl.DEFAULT_CACHE_SIZE;
int maximumHttpConnections = 0;
String workspaceNameDefault = DEFAULT_WORKSPACE_NAME_DEFAULT;
if (parameters != null) {
// batchRead config
Object param = parameters.get(PARAM_BATCHREAD_CONFIG);
if (param != null && param instanceof BatchReadConfig) {
brc = (BatchReadConfig) param;
}
// itemCache size config
param = parameters.get(PARAM_ITEMINFO_CACHE_SIZE);
if (param != null) {
try {
itemInfoCacheSize = Integer.parseInt(param.toString());
} catch (NumberFormatException e) {
// ignore, use default
}
}
// max connections config
param = parameters.get(PARAM_MAX_CONNECTIONS);
if (param != null) {
try {
maximumHttpConnections = Integer.parseInt(param.toString());
} catch ( NumberFormatException e ) {
// using default
}
}
param = parameters.get(PARAM_WORKSPACE_NAME_DEFAULT);
if (param != null) {
workspaceNameDefault = param.toString();
}
}
if (maximumHttpConnections > 0) {
return new RepositoryServiceImpl(uri, workspaceNameDefault, brc, itemInfoCacheSize, maximumHttpConnections);
} else {
return new RepositoryServiceImpl(uri, workspaceNameDefault, brc, itemInfoCacheSize);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy