blob: 42d8b2ffec701f0d30029d84a023ffadc52fbe33 [file] [log] [blame]
/*
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.wiki.api.spi;
import org.apache.wiki.util.PropertyReader;
import org.apache.wiki.util.TextUtil;
import javax.servlet.ServletContext;
import java.nio.file.ProviderNotFoundException;
import java.util.Properties;
import java.util.ServiceLoader;
public class Wiki {
private static final String PROP_PROVIDER_IMPL_ACLS = "jspwiki.provider.impl.acls";
private static final String PROP_PROVIDER_IMPL_CONTENTS = "jspwiki.provider.impl.contents";
private static final String PROP_PROVIDER_IMPL_CONTEXT = "jspwiki.provider.impl.context";
private static final String PROP_PROVIDER_IMPL_ENGINE = "jspwiki.provider.impl.engine";
private static final String PROP_PROVIDER_IMPL_SESSION = "jspwiki.provider.impl.session";
private static final String DEFAULT_PROVIDER_IMPL_ACLS = "org.apache.wiki.spi.AclsSPIDefaultImpl";
private static final String DEFAULT_PROVIDER_IMPL_CONTENTS = "org.apache.wiki.spi.ContentsSPIDefaultImpl";
private static final String DEFAULT_PROVIDER_IMPL_CONTEXT = "org.apache.wiki.spi.ContextSPIDefaultImpl";
private static final String DEFAULT_PROVIDER_IMPL_ENGINE = "org.apache.wiki.spi.EngineSPIDefaultImpl";
private static final String DEFAULT_PROVIDER_IMPL_SESSION = "org.apache.wiki.spi.SessionSPIDefaultImpl";
// default values
private static Properties properties = PropertyReader.getDefaultProperties();
private static AclsSPI aclsSPI = getSPI( AclsSPI.class, properties, PROP_PROVIDER_IMPL_ACLS, DEFAULT_PROVIDER_IMPL_ACLS );
private static ContentsSPI contentsSPI = getSPI( ContentsSPI.class, properties, PROP_PROVIDER_IMPL_CONTENTS, DEFAULT_PROVIDER_IMPL_CONTENTS );
private static ContextSPI contextSPI = getSPI( ContextSPI.class, properties, PROP_PROVIDER_IMPL_CONTEXT, DEFAULT_PROVIDER_IMPL_CONTEXT );
private static EngineSPI engineSPI = getSPI( EngineSPI.class, properties, PROP_PROVIDER_IMPL_ENGINE, DEFAULT_PROVIDER_IMPL_ENGINE );
private static SessionSPI sessionSPI = getSPI( SessionSPI.class, properties, PROP_PROVIDER_IMPL_SESSION, DEFAULT_PROVIDER_IMPL_SESSION );
static void init( final ServletContext context ) {
properties = PropertyReader.loadWebAppProps( context );
aclsSPI = getSPI( AclsSPI.class, properties, PROP_PROVIDER_IMPL_ACLS, DEFAULT_PROVIDER_IMPL_ACLS );
contentsSPI = getSPI( ContentsSPI.class, properties, PROP_PROVIDER_IMPL_CONTENTS, DEFAULT_PROVIDER_IMPL_CONTENTS );
contextSPI = getSPI( ContextSPI.class, properties, PROP_PROVIDER_IMPL_CONTEXT, DEFAULT_PROVIDER_IMPL_CONTEXT );
engineSPI = getSPI( EngineSPI.class, properties, PROP_PROVIDER_IMPL_ENGINE, DEFAULT_PROVIDER_IMPL_ENGINE );
sessionSPI = getSPI( SessionSPI.class, properties, PROP_PROVIDER_IMPL_SESSION, DEFAULT_PROVIDER_IMPL_SESSION );
}
/**
* Access to {@link AclsSPI} operations.
*
* @return {@link AclsSPI} operations.
*/
public static AclsDSL acls() {
return new AclsDSL( aclsSPI );
}
/**
* Access to {@link ContentsSPI} operations.
*
* @return {@link ContentsSPI} operations.
*/
public static ContentsDSL contents() {
return new ContentsDSL( contentsSPI );
}
/**
* Access to {@link ContextSPI} operations.
*
* @return {@link ContextSPI} operations.
*/
public static ContextDSL context() {
return new ContextDSL( contextSPI );
}
/**
* Access to {@link EngineSPI} operations.
*
* @return {@link EngineSPI} operations.
*/
public static EngineDSL engine() {
return new EngineDSL( engineSPI );
}
/**
* Access to {@link SessionSPI} operations.
*
* @return {@link SessionSPI} operations.
*/
public static SessionDSL session() {
return new SessionDSL( sessionSPI );
}
static < SPI > SPI getSPI( final Class< SPI > spi, final Properties props, final String prop, final String defValue ) {
final String providerImpl = TextUtil.getStringProperty( props, prop, defValue );
final ServiceLoader< SPI > loader = ServiceLoader.load( spi );
for( final SPI provider : loader ) {
if( providerImpl.equals( provider.getClass().getName() ) ) {
return provider;
}
}
throw new ProviderNotFoundException( spi.getName() + " provider not found" );
}
}