com.intellij.openapi.components.ServiceManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-api Show documentation
Show all versions of core-api Show documentation
A packaging of the IntelliJ Community Edition core-api library.
This is release number 1 of trunk branch 142.
The newest version!
/*
* Copyright 2000-2014 JetBrains s.r.o.
*
* 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 com.intellij.openapi.components;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.NotNullLazyKey;
import com.intellij.util.NotNullFunction;
import org.jetbrains.annotations.NotNull;
/**
* For old-style components, the contract specifies a lifecycle: the component gets created and notified during the project opening process.
* For services, there's no such contract, so we don't even load the class implementing the service until someone requests it.
*/
public class ServiceManager {
private ServiceManager() { }
public static T getService(@NotNull Class serviceClass) {
@SuppressWarnings("unchecked") T instance = (T)ApplicationManager.getApplication().getPicoContainer().getComponentInstance(serviceClass.getName());
return instance;
}
public static T getService(@NotNull Project project, @NotNull Class serviceClass) {
@SuppressWarnings("unchecked") T instance = (T)project.getPicoContainer().getComponentInstance(serviceClass.getName());
return instance;
}
/**
* Creates lazy caching key to store project-level service instance from {@link #getService(Project, Class)}.
*
* @param serviceClass Service class to create key for.
* @param Service class type.
* @return Key instance.
*/
public static NotNullLazyKey createLazyKey(@NotNull final Class serviceClass) {
return NotNullLazyKey.create("Service: " + serviceClass.getName(), new NotNullFunction() {
@Override
@NotNull
public T fun(Project project) {
return getService(project, serviceClass);
}
});
}
}