/* Copyright (c) 2014 Boundless and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Distribution License v1.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/org/documents/edl-v10.html * * Contributors: * Justin Deoliveira (Boundless) - initial implementation */ package org.locationtech.geogig.storage.sqlite; import java.io.File; import java.net.URISyntaxException; import java.net.URL; import org.locationtech.geogig.api.Platform; import org.locationtech.geogig.api.plumbing.ResolveGeogigDir; import com.google.common.base.Optional; /** * Utility class for SQLite storage. * * @author Justin Deoliveira, Boundless */ public class SQLiteStorage { /** * Format name used for configuration. */ public static final String FORMAT_NAME = "sqlite"; /** * Implementation version. */ public static final String VERSION = "0.1"; /** * Returns the .geogig directory for the platform object. */ public static File geogigDir(Platform platform) { Optional<URL> url = new ResolveGeogigDir(platform).call(); if (!url.isPresent()) { throw new RuntimeException("Unable to resolve .geogig directory"); } try { return new File(url.get().toURI()); } catch (URISyntaxException e) { throw new RuntimeException("Error resolving .geogig directory", e); } } }