/* * Copyright 2014 the original author or authors. * * 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 org.gradle.api.internal.artifacts.ivyservice; import org.gradle.cache.internal.CacheScopeMapping; import org.gradle.cache.internal.VersionStrategy; import org.gradle.internal.classpath.CachedJarFileStore; import org.gradle.util.VersionNumber; import java.io.File; import java.util.Arrays; import java.util.List; public class DefaultArtifactCacheMetaData implements ArtifactCacheMetaData, CachedJarFileStore { public static final VersionNumber CACHE_LAYOUT_VERSION = CacheLayout.META_DATA.getVersion(); private final File cacheDir; private final File transformsDir; public DefaultArtifactCacheMetaData(CacheScopeMapping cacheScopeMapping) { cacheDir = cacheScopeMapping.getBaseDirectory(null, CacheLayout.ROOT.getKey(), VersionStrategy.SharedCache); transformsDir = cacheScopeMapping.getBaseDirectory(null, CacheLayout.TRANSFORMS.getKey(), VersionStrategy.SharedCache); } @Override public File getCacheDir() { return cacheDir; } @Override public File getTransformsStoreDirectory() { return transformsDir; } @Override public List<File> getFileStoreRoots() { return Arrays.asList(getFileStoreDirectory(), getTransformsStoreDirectory()); } @Override public File getFileStoreDirectory() { return createCacheRelativeDir(CacheLayout.FILE_STORE); } @Override public File getMetaDataStoreDirectory() { return new File(createCacheRelativeDir(CacheLayout.META_DATA), "descriptors"); } private File createCacheRelativeDir(CacheLayout cacheLayout) { return cacheLayout.getPath(getCacheDir()); } }