001package org.eclipse.aether.internal.impl.synccontext;
002
003/*
004 * Licensed to the Apache Software Foundation (ASF) under one
005 * or more contributor license agreements.  See the NOTICE file
006 * distributed with this work for additional information
007 * regarding copyright ownership.  The ASF licenses this file
008 * to you under the Apache License, Version 2.0 (the
009 * "License"); you may not use this file except in compliance
010 * with the License.  You may obtain a copy of the License at
011 *
012 *  http://www.apache.org/licenses/LICENSE-2.0
013 *
014 * Unless required by applicable law or agreed to in writing,
015 * software distributed under the License is distributed on an
016 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
017 * KIND, either express or implied.  See the License for the
018 * specific language governing permissions and limitations
019 * under the License.
020 */
021
022import java.util.Objects;
023
024import javax.annotation.PreDestroy;
025import javax.inject.Inject;
026import javax.inject.Named;
027import javax.inject.Singleton;
028
029import org.eclipse.aether.RepositorySystemSession;
030import org.eclipse.aether.SyncContext;
031import org.eclipse.aether.internal.impl.synccontext.named.NamedLockFactoryAdapter;
032import org.eclipse.aether.spi.locator.Service;
033import org.eclipse.aether.spi.locator.ServiceLocator;
034import org.eclipse.aether.spi.synccontext.SyncContextFactory;
035
036/**
037 * Default {@link SyncContextFactory} implementation that uses named locks.
038 */
039@Singleton
040@Named
041public final class DefaultSyncContextFactory
042        implements SyncContextFactory, Service
043{
044    private NamedLockFactoryAdapter namedLockFactoryAdapter;
045
046    /**
047     * Constructor used with DI, where factories are injected and selected based on key.
048     */
049    @Inject
050    public DefaultSyncContextFactory( final NamedLockFactorySelector selector )
051    {
052        this.namedLockFactoryAdapter = new NamedLockFactoryAdapter(
053            selector.getSelectedNameMapper(),
054            selector.getSelectedNamedLockFactory(),
055            NamedLockFactorySelector.TIME,
056            NamedLockFactorySelector.TIME_UNIT
057        );
058    }
059
060    public DefaultSyncContextFactory()
061    {
062        // ctor for ServiceLoader
063    }
064
065    @Override
066    public void initService( final ServiceLocator locator )
067    {
068        NamedLockFactorySelector selector = Objects.requireNonNull(
069            locator.getService( NamedLockFactorySelector.class ) );
070        this.namedLockFactoryAdapter = new NamedLockFactoryAdapter(
071            selector.getSelectedNameMapper(),
072            selector.getSelectedNamedLockFactory(),
073            NamedLockFactorySelector.TIME,
074            NamedLockFactorySelector.TIME_UNIT
075        );
076    }
077
078    @Override
079    public SyncContext newInstance( final RepositorySystemSession session, final boolean shared )
080    {
081        return namedLockFactoryAdapter.newInstance( session, shared );
082    }
083
084    @PreDestroy
085    public void shutdown()
086    {
087        namedLockFactoryAdapter.shutdown();
088    }
089}