blob: 05b2e57d6d5a10e0574543cc1609d9ed5edba045 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Aston University.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the Eclipse
* Public License, v. 2.0 are satisfied: GNU General Public License, version 3.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-3.0
*
* Contributors:
* Antonio Garcia-Dominguez - initial API and implementation
******************************************************************************/
package org.eclipse.hawk.greycat;
import greycat.Graph;
import greycat.GraphBuilder;
import greycat.leveldb.LevelDBStorage;
public class LevelDBGreycatDatabase extends AbstractGreycatDatabase {
@Override
protected Graph createGraph() {
return new GraphBuilder()
.withMemorySize(1_000_000)
.withStorage(new LevelDBStorage(storageFolder.getAbsolutePath()))
.build();
}
@Override
public String getHumanReadableName() {
return "LevelDB " + super.getHumanReadableName();
}
}