blob: 376baee35edbe4391bf3c78323e5f9b5dfbc1e0a [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.solr.core;
import java.io.IOException;
import java.io.OutputStream;
import java.net.URI;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import org.apache.lucene.store.Directory;
import org.apache.lucene.store.IOContext;
import org.apache.lucene.store.IndexInput;
import org.apache.solr.common.util.NamedList;
import org.apache.solr.core.backup.repository.BackupRepository;
import org.apache.solr.core.backup.repository.BackupRepositoryFactory;
public class TrackingBackupRepository implements BackupRepository {
private static final List<URI> COPIED_FILES = Collections.synchronizedList(new ArrayList<>());
private BackupRepository delegate;
@Override
public <T> T getConfigProperty(String name) {
return delegate.getConfigProperty(name);
}
@Override
public URI createURI(String path) {
return delegate.createURI(path);
}
@Override
public URI resolve(URI baseUri, String... pathComponents) {
return delegate.resolve(baseUri, pathComponents);
}
@Override
public boolean exists(URI path) throws IOException {
return delegate.exists(path);
}
@Override
public PathType getPathType(URI path) throws IOException {
return delegate.getPathType(path);
}
@Override
public String[] listAll(URI path) throws IOException {
return delegate.listAll(path);
}
@Override
public IndexInput openInput(URI dirPath, String fileName, IOContext ctx) throws IOException {
return delegate.openInput(dirPath, fileName, ctx);
}
@Override
public OutputStream createOutput(URI path) throws IOException {
return delegate.createOutput(path);
}
@Override
public void createDirectory(URI path) throws IOException {
delegate.createDirectory(path);
}
@Override
public void deleteDirectory(URI path) throws IOException {
delegate.deleteDirectory(path);
}
@Override
public void copyFileFrom(Directory sourceDir, String fileName, URI dest) throws IOException {
COPIED_FILES.add(delegate.resolve(dest, fileName));
delegate.copyFileFrom(sourceDir, fileName, dest);
}
@Override
public void copyFileTo(URI sourceRepo, String fileName, Directory dest) throws IOException {
delegate.copyFileTo(sourceRepo, fileName, dest);
}
@Override
public void close() throws IOException {
delegate.close();
}
@Override
public void delete(URI path, Collection<String> files) throws IOException {
delegate.delete(path, files);
}
@Override
public Checksum checksum(URI path, String fileName) throws IOException {
return delegate.checksum(path, fileName);
}
@Override
public Checksum checksum(Directory dir, String fileName) throws IOException {
return delegate.checksum(dir, fileName);
}
@Override
public void init(NamedList args) {
BackupRepositoryFactory factory = (BackupRepositoryFactory) args.get("factory");
SolrResourceLoader loader = (SolrResourceLoader) args.get("loader");
String repoName = (String) args.get("delegateRepoName");
this.delegate = factory.newInstance(loader, repoName);
}
/**
* @return list of files were copied by using {@link #copyFileFrom(Directory, String, URI)}
*/
public static List<URI> copiedFiles() {
return new ArrayList<>(COPIED_FILES);
}
/**
* Clear all tracking data
*/
public static void clear() {
COPIED_FILES.clear();
}
}