blob: 1313a2c37649d6d775f01437ea9c920779d90a92 [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.jackrabbit.oak.segment.azure.tool;
import static org.apache.jackrabbit.oak.segment.azure.util.AzureConfigurationParserUtils.KEY_ACCOUNT_NAME;
import static org.apache.jackrabbit.oak.segment.azure.util.AzureConfigurationParserUtils.KEY_DIR;
import static org.apache.jackrabbit.oak.segment.azure.util.AzureConfigurationParserUtils.KEY_STORAGE_URI;
import static org.apache.jackrabbit.oak.segment.azure.util.AzureConfigurationParserUtils.parseAzureConfigurationFromUri;
import static org.apache.jackrabbit.oak.segment.compaction.SegmentGCOptions.defaultGCOptions;
import com.google.common.base.Stopwatch;
import com.microsoft.azure.storage.StorageCredentials;
import com.microsoft.azure.storage.StorageCredentialsAccountAndKey;
import com.microsoft.azure.storage.StorageException;
import com.microsoft.azure.storage.blob.CloudBlobDirectory;
import org.apache.jackrabbit.oak.segment.azure.AzurePersistence;
import org.apache.jackrabbit.oak.segment.azure.AzureUtilities;
import org.apache.jackrabbit.oak.segment.file.FileStore;
import org.apache.jackrabbit.oak.segment.file.FileStoreBuilder;
import org.apache.jackrabbit.oak.segment.file.InvalidFileStoreVersionException;
import org.apache.jackrabbit.oak.segment.file.tar.TarPersistence;
import org.apache.jackrabbit.oak.segment.spi.monitor.FileStoreMonitorAdapter;
import org.apache.jackrabbit.oak.segment.spi.monitor.IOMonitorAdapter;
import org.apache.jackrabbit.oak.segment.spi.persistence.SegmentArchiveManager;
import org.apache.jackrabbit.oak.segment.spi.persistence.SegmentNodeStorePersistence;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.net.URISyntaxException;
import java.nio.ByteBuffer;
import java.text.MessageFormat;
import java.util.Map;
import java.util.concurrent.TimeUnit;
/**
* Utility class for common stuff pertaining to tooling.
*/
public class ToolUtils {
private ToolUtils() {
// prevent instantiation
}
public enum SegmentStoreType {
TAR("TarMK Segment Store"), AZURE("Azure Segment Store");
private String type;
SegmentStoreType(String type) {
this.type = type;
}
public String description(String pathOrUri) {
String location = pathOrUri;
if (pathOrUri.startsWith("az:")) {
location = pathOrUri.substring(3);
}
return type + "@" + location;
}
}
public static FileStore newFileStore(SegmentNodeStorePersistence persistence, File directory,
boolean strictVersionCheck, int segmentCacheSize, long gcLogInterval)
throws IOException, InvalidFileStoreVersionException, URISyntaxException, StorageException {
FileStoreBuilder builder = FileStoreBuilder.fileStoreBuilder(directory)
.withCustomPersistence(persistence).withMemoryMapping(false).withStrictVersionCheck(strictVersionCheck)
.withSegmentCacheSize(segmentCacheSize)
.withGCOptions(defaultGCOptions().setOffline().setGCLogInterval(gcLogInterval));
return builder.build();
}
public static SegmentNodeStorePersistence newSegmentNodeStorePersistence(SegmentStoreType storeType,
String pathOrUri) {
SegmentNodeStorePersistence persistence = null;
switch (storeType) {
case AZURE:
CloudBlobDirectory cloudBlobDirectory = createCloudBlobDirectory(pathOrUri);
persistence = new AzurePersistence(cloudBlobDirectory);
break;
default:
persistence = new TarPersistence(new File(pathOrUri));
}
return persistence;
}
public static SegmentArchiveManager createArchiveManager(SegmentNodeStorePersistence persistence) {
SegmentArchiveManager archiveManager = null;
try {
archiveManager = persistence.createArchiveManager(false, new IOMonitorAdapter(),
new FileStoreMonitorAdapter());
} catch (IOException e) {
throw new IllegalArgumentException(
"Could not access the Azure Storage. Please verify the path provided!");
}
return archiveManager;
}
public static CloudBlobDirectory createCloudBlobDirectory(String path) {
Map<String, String> config = parseAzureConfigurationFromUri(path);
String accountName = config.get(KEY_ACCOUNT_NAME);
String key = System.getenv("AZURE_SECRET_KEY");
StorageCredentials credentials = new StorageCredentialsAccountAndKey(accountName, key);
String uri = config.get(KEY_STORAGE_URI);
String dir = config.get(KEY_DIR);
try {
return AzureUtilities.cloudBlobDirectoryFrom(credentials, uri, dir);
} catch (URISyntaxException | StorageException e) {
throw new IllegalArgumentException(
"Could not connect to the Azure Storage. Please verify the path provided!");
}
}
public static SegmentStoreType storeTypeFromPathOrUri(String pathOrUri) {
if (pathOrUri.startsWith("az:")) {
return SegmentStoreType.AZURE;
}
return SegmentStoreType.TAR;
}
public static String storeDescription(SegmentStoreType storeType, String pathOrUri) {
return storeType.description(pathOrUri);
}
public static String printableStopwatch(Stopwatch s) {
return String.format("%s (%ds)", s, s.elapsed(TimeUnit.SECONDS));
}
public static void printMessage(PrintWriter pw, String format, Object... arg) {
pw.println(MessageFormat.format(format, arg));
}
public static byte[] fetchByteArray(ByteBuffer buffer) throws IOException {
byte[] data = new byte[buffer.remaining()];
buffer.get(data);
return data;
}
}