Search in sources :

Example 1 with Activate

use of org.osgi.service.component.annotations.Activate in project sling by apache.

the class ResourceResolverFactoryActivator method activate.

// ---------- SCR Integration ---------------------------------------------
/**
     * Activates this component (called by SCR before)
     */
@Activate
protected void activate(final BundleContext bundleContext, final ResourceResolverFactoryConfig config) {
    this.bundleContext = bundleContext;
    this.config = config;
    final BidiMap virtuals = new TreeBidiMap();
    for (int i = 0; config.resource_resolver_virtual() != null && i < config.resource_resolver_virtual().length; i++) {
        final String[] parts = Mapping.split(config.resource_resolver_virtual()[i]);
        virtuals.put(parts[0], parts[2]);
    }
    virtualURLMap = virtuals;
    final List<Mapping> maps = new ArrayList<>();
    for (int i = 0; config.resource_resolver_mapping() != null && i < config.resource_resolver_mapping().length; i++) {
        maps.add(new Mapping(config.resource_resolver_mapping()[i]));
    }
    final Mapping[] tmp = maps.toArray(new Mapping[maps.size()]);
    // check whether direct mappings are allowed
    if (config.resource_resolver_allowDirect()) {
        final Mapping[] tmp2 = new Mapping[tmp.length + 1];
        tmp2[0] = Mapping.DIRECT;
        System.arraycopy(tmp, 0, tmp2, 1, tmp.length);
        mappings = tmp2;
    } else {
        mappings = tmp;
    }
    // from configuration if available
    searchPath = config.resource_resolver_searchpath();
    if (searchPath != null && searchPath.length > 0) {
        for (int i = 0; i < searchPath.length; i++) {
            // ensure leading slash
            if (!searchPath[i].startsWith("/")) {
                searchPath[i] = "/" + searchPath[i];
            }
            // ensure trailing slash
            if (!searchPath[i].endsWith("/")) {
                searchPath[i] += "/";
            }
        }
    }
    if (searchPath == null) {
        searchPath = new String[] { "/" };
    }
    // the root of the resolver mappings
    mapRoot = config.resource_resolver_map_location();
    mapRootPrefix = mapRoot + '/';
    final String[] paths = config.resource_resolver_map_observation();
    this.observationPaths = new Path[paths.length];
    for (int i = 0; i < paths.length; i++) {
        this.observationPaths[i] = new Path(paths[i]);
    }
    // vanity path white list
    this.vanityPathWhiteList = null;
    String[] vanityPathPrefixes = config.resource_resolver_vanitypath_whitelist();
    if (vanityPathPrefixes != null) {
        final List<String> prefixList = new ArrayList<>();
        for (final String value : vanityPathPrefixes) {
            if (value.trim().length() > 0) {
                if (value.trim().endsWith("/")) {
                    prefixList.add(value.trim());
                } else {
                    prefixList.add(value.trim() + "/");
                }
            }
        }
        if (prefixList.size() > 0) {
            this.vanityPathWhiteList = prefixList.toArray(new String[prefixList.size()]);
        }
    }
    // vanity path black list
    this.vanityPathBlackList = null;
    vanityPathPrefixes = config.resource_resolver_vanitypath_blacklist();
    if (vanityPathPrefixes != null) {
        final List<String> prefixList = new ArrayList<>();
        for (final String value : vanityPathPrefixes) {
            if (value.trim().length() > 0) {
                if (value.trim().endsWith("/")) {
                    prefixList.add(value.trim());
                } else {
                    prefixList.add(value.trim() + "/");
                }
            }
        }
        if (prefixList.size() > 0) {
            this.vanityPathBlackList = prefixList.toArray(new String[prefixList.size()]);
        }
    }
    // check for required property
    Set<String> requiredResourceProvidersLegacy = getStringSet(config.resource_resolver_required_providers());
    Set<String> requiredResourceProviderNames = getStringSet(config.resource_resolver_required_providernames());
    boolean hasLegacyRequiredProvider = false;
    if (requiredResourceProvidersLegacy != null) {
        hasLegacyRequiredProvider = requiredResourceProvidersLegacy.remove(ResourceResolverFactoryConfig.LEGACY_REQUIRED_PROVIDER_PID);
        if (!requiredResourceProvidersLegacy.isEmpty()) {
            logger.error("ResourceResolverFactory is using deprecated required providers configuration (resource.resolver.required.providers" + "). Please change to use the property resource.resolver.required.providernames for values: " + requiredResourceProvidersLegacy);
        } else {
            requiredResourceProvidersLegacy = null;
        }
    }
    if (hasLegacyRequiredProvider) {
        final boolean hasRequiredProvider;
        if (requiredResourceProviderNames != null) {
            hasRequiredProvider = !requiredResourceProviderNames.add(ResourceResolverFactoryConfig.REQUIRED_PROVIDER_NAME);
        } else {
            hasRequiredProvider = false;
            requiredResourceProviderNames = Collections.singleton(ResourceResolverFactoryConfig.REQUIRED_PROVIDER_NAME);
        }
        if (hasRequiredProvider) {
            logger.warn("ResourceResolverFactory is using deprecated required providers configuration (resource.resolver.required.providers" + ") with value '" + ResourceResolverFactoryConfig.LEGACY_REQUIRED_PROVIDER_PID + ". Please remove this configuration property. " + ResourceResolverFactoryConfig.REQUIRED_PROVIDER_NAME + " is already contained in the property resource.resolver.required.providernames.");
        } else {
            logger.warn("ResourceResolverFactory is using deprecated required providers configuration (resource.resolver.required.providers" + ") with value '" + ResourceResolverFactoryConfig.LEGACY_REQUIRED_PROVIDER_PID + ". Please remove this configuration property and add " + ResourceResolverFactoryConfig.REQUIRED_PROVIDER_NAME + " to the property resource.resolver.required.providernames.");
        }
    }
    // for testing: if we run unit test, both trackers are set from the outside
    if (this.resourceProviderTracker == null) {
        this.resourceProviderTracker = new ResourceProviderTracker();
        this.changeListenerWhiteboard = new ResourceChangeListenerWhiteboard();
        this.preconds.activate(this.bundleContext, requiredResourceProvidersLegacy, requiredResourceProviderNames, resourceProviderTracker);
        this.changeListenerWhiteboard.activate(this.bundleContext, this.resourceProviderTracker, searchPath);
        this.resourceProviderTracker.activate(this.bundleContext, this.eventAdmin, new ChangeListener() {

            @Override
            public void providerAdded() {
                if (factoryRegistration == null) {
                    checkFactoryPreconditions(null, null);
                }
            }

            @Override
            public void providerRemoved(final String name, final String pid, final boolean stateful, final boolean isUsed) {
                if (factoryRegistration != null) {
                    if (isUsed && (stateful || config.resource_resolver_providerhandling_paranoid())) {
                        unregisterFactory();
                    }
                    checkFactoryPreconditions(name, pid);
                }
            }
        });
    } else {
        this.preconds.activate(this.bundleContext, requiredResourceProvidersLegacy, requiredResourceProviderNames, resourceProviderTracker);
        this.checkFactoryPreconditions(null, null);
    }
}
Also used : Path(org.apache.sling.api.resource.path.Path) ResourceProviderTracker(org.apache.sling.resourceresolver.impl.providers.ResourceProviderTracker) ArrayList(java.util.ArrayList) BidiMap(org.apache.commons.collections4.BidiMap) TreeBidiMap(org.apache.commons.collections4.bidimap.TreeBidiMap) Mapping(org.apache.sling.resourceresolver.impl.mapping.Mapping) ChangeListener(org.apache.sling.resourceresolver.impl.providers.ResourceProviderTracker.ChangeListener) TreeBidiMap(org.apache.commons.collections4.bidimap.TreeBidiMap) ResourceChangeListenerWhiteboard(org.apache.sling.resourceresolver.impl.observation.ResourceChangeListenerWhiteboard) Activate(org.osgi.service.component.annotations.Activate)

Example 2 with Activate

use of org.osgi.service.component.annotations.Activate in project sling by apache.

the class BindingsValuesProvidersByContextImpl method activate.

@Activate
public void activate(ComponentContext ctx) {
    bundleContext = ctx.getBundleContext();
    synchronized (pendingRefs) {
        for (ServiceReference ref : pendingRefs) {
            addingService(ref);
        }
        pendingRefs.clear();
    }
    bvpTracker = new ServiceTracker(bundleContext, BindingsValuesProvider.class.getName(), this);
    bvpTracker.open();
    // Map services can also be registered to provide bindings
    mapsTracker = new ServiceTracker(bundleContext, Map.class.getName(), this);
    mapsTracker.open();
}
Also used : ServiceTracker(org.osgi.util.tracker.ServiceTracker) ServiceReference(org.osgi.framework.ServiceReference) Activate(org.osgi.service.component.annotations.Activate)

Example 3 with Activate

use of org.osgi.service.component.annotations.Activate in project sling by apache.

the class ScriptCacheImpl method activate.

@Activate
protected void activate(ScriptCacheImplConfiguration configuration, BundleContext bundleCtx) {
    threadPool = threadPoolManager.get("Script Cache Thread Pool");
    bundleContext = bundleCtx;
    additionalExtensions = configuration.org_apache_sling_scripting_cache_additional__extensions();
    int newMaxCacheSize = configuration.org_apache_sling_scripting_cache_size();
    if (newMaxCacheSize != DEFAULT_CACHE_SIZE) {
        // change the map only if there's a configuration change regarding the cache's max size
        CachingMap<CachedScript> newMap = new CachingMap<>(newMaxCacheSize);
        newMap.putAll(internalMap);
        internalMap = newMap;
    }
    ResourceResolver resolver = null;
    try {
        resolver = rrf.getServiceResourceResolver(null);
        searchPaths = resolver.getSearchPath();
    } catch (LoginException e) {
        LOGGER.error("Unable to retrieve a ResourceResolver for determining the search paths.", e);
    } finally {
        if (resolver != null) {
            resolver.close();
        }
    }
    configureCache();
    active = true;
}
Also used : CachingMap(org.apache.sling.scripting.core.impl.helper.CachingMap) CachedScript(org.apache.sling.scripting.api.CachedScript) ResourceResolver(org.apache.sling.api.resource.ResourceResolver) LoginException(org.apache.sling.api.resource.LoginException) Activate(org.osgi.service.component.annotations.Activate)

Example 4 with Activate

use of org.osgi.service.component.annotations.Activate in project sling by apache.

the class RhinoJavaScriptEngineFactory method activate.

// ---------- SCR integration
@Activate
protected void activate(final ComponentContext context, final RhinoJavaScriptEngineFactoryConfiguration configuration) {
    Dictionary<?, ?> props = context.getProperties();
    boolean debugging = getProperty("org.apache.sling.scripting.javascript.debug", props, context.getBundleContext(), false);
    optimizationLevel = readOptimizationLevel(configuration);
    // setup the wrap factory
    wrapFactory = new SlingWrapFactory();
    // initialize the Rhino Context Factory
    SlingContextFactory.setup(this);
    Context cx = Context.enter();
    setEngineName(getEngineName() + " (" + cx.getImplementationVersion() + ")");
    languageVersion = String.valueOf(cx.getLanguageVersion());
    Context.exit();
    setExtensions(ECMA_SCRIPT_EXTENSION, ESP_SCRIPT_EXTENSION);
    setMimeTypes("text/javascript", "application/ecmascript", "application/javascript");
    setNames("javascript", ECMA_SCRIPT_EXTENSION, ESP_SCRIPT_EXTENSION);
    final ContextFactory contextFactory = ContextFactory.getGlobal();
    if (contextFactory instanceof SlingContextFactory) {
        ((SlingContextFactory) contextFactory).setDebugging(debugging);
    }
    // set the dynamic class loader as the application class loader
    final DynamicClassLoaderManager dclm = this.dynamicClassLoaderManager;
    if (dclm != null) {
        contextFactory.initApplicationClassLoader(dynamicClassLoaderManager.getDynamicClassLoader());
    }
    log.info("Activated with optimization level {}", optimizationLevel);
}
Also used : ComponentContext(org.osgi.service.component.ComponentContext) Context(org.mozilla.javascript.Context) BundleContext(org.osgi.framework.BundleContext) SlingContextFactory(org.apache.sling.scripting.javascript.helper.SlingContextFactory) ContextFactory(org.mozilla.javascript.ContextFactory) SlingContextFactory(org.apache.sling.scripting.javascript.helper.SlingContextFactory) SlingWrapFactory(org.apache.sling.scripting.javascript.helper.SlingWrapFactory) DynamicClassLoaderManager(org.apache.sling.commons.classloader.DynamicClassLoaderManager) Activate(org.osgi.service.component.annotations.Activate)

Example 5 with Activate

use of org.osgi.service.component.annotations.Activate in project sling by apache.

the class SightlyJavaCompilerService method activate.

@Activate
protected void activate() {
    LOG.info("Activating {}", getClass().getName());
    String version = System.getProperty("java.specification.version");
    options = new Options();
    options.put(Options.KEY_GENERATE_DEBUG_INFO, true);
    options.put(Options.KEY_SOURCE_VERSION, version);
    options.put(Options.KEY_TARGET_VERSION, version);
    options.put(Options.KEY_CLASS_LOADER_WRITER, classLoaderWriter);
    options.put(Options.KEY_FORCE_COMPILATION, true);
}
Also used : Options(org.apache.sling.commons.compiler.Options) Activate(org.osgi.service.component.annotations.Activate)

Aggregations

Activate (org.osgi.service.component.annotations.Activate)78 BundleContext (org.osgi.framework.BundleContext)12 OsgiWhiteboard (org.apache.jackrabbit.oak.osgi.OsgiWhiteboard)7 IOException (java.io.IOException)6 Hashtable (java.util.Hashtable)6 File (java.io.File)5 ResourceResolver (org.apache.sling.api.resource.ResourceResolver)5 ArrayList (java.util.ArrayList)4 Properties (java.util.Properties)3 Whiteboard (org.apache.jackrabbit.oak.spi.whiteboard.Whiteboard)3 ServiceReference (org.osgi.framework.ServiceReference)3 PromiseFactory (org.osgi.util.promise.PromiseFactory)3 ServerStartupObserver (org.wso2.carbon.core.ServerStartupObserver)3 JsonObject (com.google.gson.JsonObject)2 Dictionary (java.util.Dictionary)2 ObjectName (javax.management.ObjectName)2 WhiteboardExecutor (org.apache.jackrabbit.oak.spi.whiteboard.WhiteboardExecutor)2 LoginException (org.apache.sling.api.resource.LoginException)2 ServiceListener (org.osgi.framework.ServiceListener)2 ServiceTracker (org.osgi.util.tracker.ServiceTracker)2