Class DelegatingAdminConnection
- java.lang.Object
-
- com.google.common.collect.ForwardingObject
-
- com.complexible.stardog.api.admin.DelegatingAdminConnection
-
- All Implemented Interfaces:
AdminConnection,java.lang.AutoCloseable
public class DelegatingAdminConnection extends com.google.common.collect.ForwardingObject implements AdminConnection
- Since:
- 2.2
- Version:
- 5.0.2
- Author:
- Michael Grove
-
-
Field Summary
-
Fields inherited from interface com.complexible.stardog.api.admin.AdminConnection
NO_TIMEOUT
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedDelegatingAdminConnection(AdminConnection theConnection)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description <T extends AdminConnection>
Tas(java.lang.Class<T> theView)Return this admin connection viewed as a different type of admin connection.java.lang.Stringbackup(java.lang.String theDatabase, java.util.Optional<java.lang.String> theBackupUrl, Options theOptions)Create a backup of the given database in the specified location.java.lang.StringbackupAll(Options theOptions)Create a backup of the server in the specified location.DatabaseBuilderbuilder(Metadata theOptions)Deprecated.java.util.Collection<java.lang.String>checkpoint(java.lang.String theDatabase, Options theOptions)Perform a checkpoint operation (list, create, restore) against selected database.voidclose()Close this connection.java.util.Map<java.lang.String,java.lang.Object>currentStatus(Options theOptions)Return the server status information, including Server/Protocols running, Stardog Home path, OS, etc.protected AdminConnectiondelegate()DatabaseBuilderdisk(java.lang.String theName)Deprecated.java.lang.Stringdrop(java.lang.String theName)Drop the database with the given name.java.io.FilegenerateDiagnosticReport(com.complexible.stardog.util.report.DiagnosticsReport theDiagnosticsReport)<T> Tget(java.lang.String theName, MetaProperty<T> theOption)Gets the value of the specified option in the given database.Metadataget(java.lang.String theName, java.lang.Iterable<? extends MetaProperty<?>> theOptions)Gets the values of the specified options in the given database.java.nio.file.PathgetLogs(Options options)Generates a zip file containing the server logs.PermissionManagergetPermissionManager()Return thePermissionManagerfor changing user & role permissionscom.complexible.stardog.process.ProcessManagergetProcessManager()MetadatagetProperty(java.util.Collection<java.lang.String> thePropertyNames)Gets the property value for a server configuration option.QueryManagergetQueryManager()Return theQueryManagerfor managing running queriesRoleManagergetRoleManager()Return theRoleManagerto be used for role-centric security changescom.complexible.stardog.StoredFunctionsgetStoredFunctions()Returns the stored functions in this server.StoredQueriesgetStoredQueries()Returns the stored queries in this server.com.complexible.stardog.security.TokenManagergetTokenManager()Return a link to the object that will allow clients to interact with JWT bearer tokensUserManagergetUserManager()Return theUserManagerto be used for user-centric security changesbooleanisOpen()Return whether or not this connection is open.java.util.Collection<java.lang.String>list()List all the databases in the Stardog serverDatabaseBuildernewDatabase(java.lang.String theName)Create a builder for creating a new database.java.lang.Stringoffline(java.lang.String theName)Makes the database offline according to the default strategy and default timeout.java.lang.Stringoffline(java.lang.String theName, long theTime, java.util.concurrent.TimeUnit theTimeUnit)Take the database offline waiting up to the specified timeout before performing a hard off-line.java.lang.Stringonline(java.lang.String theName)Makes the database online according to the default strategyjava.lang.Stringoptimize(java.lang.String theName, Metadata theOptions)Optimizes the indexes of a given database for query answering and disk utilization after the database has been heavily modified.voidrenameDatabase(java.lang.String theOldName, java.lang.String theNewName)Rename an existing database to a new onejava.lang.Stringrepair(java.lang.String theName)Repairs the specified database if it is corrupted.java.lang.Stringrestore(java.io.File theBackup, boolean theOverwrite, java.lang.String theName)Restore the database backed up to the given locationjava.lang.Stringrestore(java.lang.String theBackup, boolean theOverwrite, java.lang.String theName)<T> java.lang.Stringset(java.lang.String theName, MetaProperty<T> theOption, T theValue)Sets the value of the specified option for the database with the given name.java.lang.StringsetProperty(java.lang.String thePropertyName, java.lang.String theNewValue)Requests that the specified server configuration option value be changed to the new value.voidshutdown()Shutdown the remote Stardog server.java.lang.Stringverify(java.lang.String theName)Verify the integrity of specified database's index.java.lang.Stringwhoami()Returns the username associated with this connection.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.complexible.stardog.api.admin.AdminConnection
backup, backup, backup, currentStatus, optimize
-
-
-
-
Constructor Detail
-
DelegatingAdminConnection
protected DelegatingAdminConnection(AdminConnection theConnection)
-
-
Method Detail
-
builder
@Deprecated public DatabaseBuilder builder(Metadata theOptions) throws StardogException
Deprecated.Convenience method to create a database builder with the given options. The provided options should include at least two options: the name of the database and the index type.- Specified by:
builderin interfaceAdminConnection- Returns:
- a builder for a database
- Throws:
StardogException- if there was an error while creating the db
-
disk
@Deprecated public DatabaseBuilder disk(java.lang.String theName) throws StardogException
Deprecated.Create a new builder for creating disk databases- Specified by:
diskin interfaceAdminConnection- Parameters:
theName- the name of the disk database to create- Returns:
- a builder for a disk database
- Throws:
StardogException- if the name of the database is invalid
-
delegate
protected AdminConnection delegate()
- Specified by:
delegatein classcom.google.common.collect.ForwardingObject
-
as
public <T extends AdminConnection> T as(java.lang.Class<T> theView) throws StardogException
Return this admin connection viewed as a different type of admin connection.- Specified by:
asin interfaceAdminConnection- Type Parameters:
T- the connection view to return- Parameters:
theView- the type of connection to view this object as- Returns:
- the new view of the connection.
- Throws:
StardogException- if the connection cannot be viewed as the provided type. This could be from the parent connection having been closed or it does not support the provided view.
-
close
public void close() throws StardogExceptionClose this connection. If the connection is already closed, this will have no effect.- Specified by:
closein interfaceAdminConnection- Specified by:
closein interfacejava.lang.AutoCloseable- Throws:
StardogException- if there was an error while closing
-
isOpen
public boolean isOpen() throws StardogExceptionReturn whether or not this connection is open.- Specified by:
isOpenin interfaceAdminConnection- Returns:
- true if it is open, false otherwise
- Throws:
StardogException- if there was an error with the connection
-
newDatabase
public DatabaseBuilder newDatabase(java.lang.String theName) throws StardogException
Create a builder for creating a new database.- Specified by:
newDatabasein interfaceAdminConnection- Parameters:
theName- the name of the database to create- Returns:
- a builder for a database
- Throws:
StardogException- if the name of the database is invalid
-
renameDatabase
public void renameDatabase(java.lang.String theOldName, java.lang.String theNewName) throws StardogExceptionDescription copied from interface:AdminConnectionRename an existing database to a new one- Specified by:
renameDatabasein interfaceAdminConnection- Parameters:
theOldName- the old database nametheNewName- the new database name- Throws:
StardogException- if the database name is invalid or if the database is not offline.
-
get
public Metadata get(java.lang.String theName, java.lang.Iterable<? extends MetaProperty<?>> theOptions) throws StardogException
Gets the values of the specified options in the given database. The returned map is not guaranteed tocontainall the specified options. Only the values forknown Stardog optionsthat are should bereadablewill be contained in the result. This function will throw an exception if the user does not have read access to the database metadata.- Specified by:
getin interfaceAdminConnection- Parameters:
theName- database nametheOptions- options for which values will be retrieved- Returns:
- metadata that contains values for the specified met properties
- Throws:
StardogException- if an error occurs while retrieving option values
-
get
public <T> T get(java.lang.String theName, MetaProperty<T> theOption) throws StardogExceptionGets the value of the specified option in the given database. The function will returnnullif the option is NOT aknown Stardog options, or if it is NOTreadable. The function may also returnnullif the option is set tonullvalue for the database. To differentiate these cases,AdminConnection.get(String, Iterable)function can be used instead. This function will throw an exception if the user does not have read access to the database metadata.- Specified by:
getin interfaceAdminConnection- Type Parameters:
T- type of the option value- Parameters:
theName- name of the databasetheOption- the option to get- Returns:
- current value of the option in the database or
nullas explained above - Throws:
StardogException- if there was an error while getting the value
-
set
public <T> java.lang.String set(java.lang.String theName, MetaProperty<T> theOption, T theValue) throws StardogExceptionSets the value of the specified option for the database with the given name. For this function to complete without an exception, the logged in user should have write access to the database metadata for the specified database, the option should be aknown Stardog option, the provided value should bevalid, and either the option should bewritable onlineor it should bewritableand the database should NOT beonline.- Specified by:
setin interfaceAdminConnection- Type Parameters:
T- type of the option value- Parameters:
theName- name of the databasetheOption- option to settheValue- option value- Throws:
StardogException- if an error occurs trying to set the option value
-
getProperty
public Metadata getProperty(java.util.Collection<java.lang.String> thePropertyNames) throws StardogException
Gets the property value for a server configuration option. This value will be the default for the option or the override in the properties file.- Specified by:
getPropertyin interfaceAdminConnection- Parameters:
thePropertyNames- filter for the properties to return. Empty set will match all properties.- Returns:
- Metadata created with config values "MetaProperty.config(key, value).temporary().build()"
- Throws:
StardogException
-
setProperty
public java.lang.String setProperty(java.lang.String thePropertyName, java.lang.String theNewValue) throws StardogExceptionRequests that the specified server configuration option value be changed to the new value. This method will notify any listening server modules about the change request. It is not guaranteed that the listening module will update the value.- Specified by:
setPropertyin interfaceAdminConnection- Returns:
- Throws:
StardogException
-
offline
public java.lang.String offline(java.lang.String theName, long theTime, java.util.concurrent.TimeUnit theTimeUnit) throws StardogExceptionTake the database offline waiting up to the specified timeout before performing a hard off-line. A database going offline will allow open connections to complete, but will not accept new, incoming connections.
Offline databases cannot be queried or updated and will be unaccessible to users.
Specifying a timeout of 0 will immediately shut down the database severing all open connections, i.e. a hard shutdown.
- Specified by:
offlinein interfaceAdminConnection- Parameters:
theName- name of the databasetheTime- timeout duration, must be a positive numbertheTimeUnit- the unit of time for the timeout, cannot be null- Returns:
- the server output of offline
- Throws:
StardogException- if there was an error while offlining the database
-
offline
public java.lang.String offline(java.lang.String theName) throws StardogExceptionMakes the database offline according to the default strategy and default timeout. Offline databases cannot be queried or updated and will be inaccessible to users.- Specified by:
offlinein interfaceAdminConnection- Returns:
- the server output of offline
- Throws:
StardogException
-
online
public java.lang.String online(java.lang.String theName) throws StardogExceptionMakes the database online according to the default strategy- Specified by:
onlinein interfaceAdminConnection- Parameters:
theName- the name of the database- Returns:
- the server output of onlining the database
- Throws:
StardogException- if there was an error while onlining the database
-
optimize
public java.lang.String optimize(java.lang.String theName, Metadata theOptions) throws StardogExceptionOptimizes the indexes of a given database for query answering and disk utilization after the database has been heavily modified. If a database has been modified with a large number of additions or removals, some internal structures may become less optimized for query answering. This utility will perform several operations that will help with query answering performance. Which operations are performed depends on the options given.Optimization will NOT modify the database contents. The data layout, indexes and other internal structures might change but the data stored in the database will remain same.
- Specified by:
optimizein interfaceAdminConnection- Parameters:
theName- the name of the database to optimizetheOptions- options specifying the specific optimization steps to perform or empty for default optimizations- Returns:
- the server output of optimize
- Throws:
StardogException- if an error occurs during optimization
-
list
public java.util.Collection<java.lang.String> list() throws StardogExceptionList all the databases in the Stardog server- Specified by:
listin interfaceAdminConnection- Returns:
- the list of databases
- Throws:
StardogException- if there was an error getting the list
-
repair
public java.lang.String repair(java.lang.String theName) throws StardogExceptionRepairs the specified database if it is corrupted. If the database is not corrupted, nothing will be repaired.- Specified by:
repairin interfaceAdminConnection- Parameters:
theName- the name of the database to repair- Returns:
- the server output of the repair
- Throws:
StardogException- if there was an error while repairing
-
verify
public java.lang.String verify(java.lang.String theName) throws StardogExceptionVerify the integrity of specified database's index.- Specified by:
verifyin interfaceAdminConnection- Parameters:
theName- the name of the database to verify- Returns:
- the output of the verify operation
- Throws:
StardogException- if there was an error while verifying the database
-
whoami
public java.lang.String whoami()
Description copied from interface:AdminConnectionReturns the username associated with this connection. Useful when API tokens are used to establish the connection.- Specified by:
whoamiin interfaceAdminConnection- Returns:
- username
-
generateDiagnosticReport
public java.io.File generateDiagnosticReport(com.complexible.stardog.util.report.DiagnosticsReport theDiagnosticsReport)
- Specified by:
generateDiagnosticReportin interfaceAdminConnection
-
getLogs
public java.nio.file.Path getLogs(Options options)
Generates a zip file containing the server logs.- Specified by:
getLogsin interfaceAdminConnection- Parameters:
options- thelog options- Returns:
- a zip file containing the server logs
-
shutdown
public void shutdown() throws com.complexible.stardog.security.StardogSecurityExceptionShutdown the remote Stardog server. You must be connected to the server as a super-user.- Specified by:
shutdownin interfaceAdminConnection- Throws:
com.complexible.stardog.security.StardogSecurityException- if you are attempting to shut down the embedded server or if you are not a super-user and are trying to shut down a remote server.
-
drop
public java.lang.String drop(java.lang.String theName) throws StardogExceptionDrop the database with the given name.- Specified by:
dropin interfaceAdminConnection- Parameters:
theName- the name of the database to drop- Returns:
- the Result of the invocation
- Throws:
StardogException- if there was an error while dropping the database
-
backupAll
public java.lang.String backupAll(Options theOptions) throws StardogException
Create a backup of the server in the specified location.- Specified by:
backupAllin interfaceAdminConnection- Parameters:
theOptions- Collection of BackupOptions- Returns:
- the output of the backup process
- Throws:
StardogException- if there is an error performing the backup.
-
backup
public java.lang.String backup(java.lang.String theDatabase, java.util.Optional<java.lang.String> theBackupUrl, Options theOptions) throws StardogExceptionCreate a backup of the given database in the specified location. The location can be a file path on the server or a URL pointing to S3 or GCP.Configuration optionscan be specified for the backup operation.- Specified by:
backupin interfaceAdminConnection- Parameters:
theDatabase- the name of the database to back uptheBackupUrl- where to store the backup or empty if the default location should be usedtheOptions- configuration options to use for backups- Returns:
- Throws:
StardogException
-
restore
public java.lang.String restore(java.io.File theBackup, boolean theOverwrite, java.lang.String theName) throws StardogExceptionRestore the database backed up to the given location- Specified by:
restorein interfaceAdminConnection- Parameters:
theBackup- the location of the backuptheOverwrite- whether or not to overwrite any existing databasetheName- a new name for the restored database- Returns:
- the output of the restore process
- Throws:
StardogException- if there was an error restoring the database from a backup
-
restore
public java.lang.String restore(java.lang.String theBackup, boolean theOverwrite, java.lang.String theName) throws StardogException- Specified by:
restorein interfaceAdminConnection- Throws:
StardogException
-
checkpoint
public java.util.Collection<java.lang.String> checkpoint(java.lang.String theDatabase, Options theOptions) throws StardogExceptionPerform a checkpoint operation (list, create, restore) against selected database.- Specified by:
checkpointin interfaceAdminConnection- Parameters:
theDatabase- the name of the database for checkpoint operationtheOptions- configuration options for the checkpoint- Returns:
- Throws:
StardogException
-
getUserManager
public UserManager getUserManager()
Return theUserManagerto be used for user-centric security changes- Specified by:
getUserManagerin interfaceAdminConnection- Returns:
- the UserManager
-
getRoleManager
public RoleManager getRoleManager()
Return theRoleManagerto be used for role-centric security changes- Specified by:
getRoleManagerin interfaceAdminConnection- Returns:
- the RoleManager
-
getPermissionManager
public PermissionManager getPermissionManager()
Return thePermissionManagerfor changing user & role permissions- Specified by:
getPermissionManagerin interfaceAdminConnection- Returns:
- the PermissionManager
-
getQueryManager
public QueryManager getQueryManager()
Return theQueryManagerfor managing running queries- Specified by:
getQueryManagerin interfaceAdminConnection
-
getProcessManager
public com.complexible.stardog.process.ProcessManager getProcessManager()
- Specified by:
getProcessManagerin interfaceAdminConnection- Returns:
- The
ProcessManagerfor managing running queries
-
getTokenManager
public com.complexible.stardog.security.TokenManager getTokenManager()
Return a link to the object that will allow clients to interact with JWT bearer tokens- Specified by:
getTokenManagerin interfaceAdminConnection- Returns:
- the TokenManager
-
currentStatus
public java.util.Map<java.lang.String,java.lang.Object> currentStatus(Options theOptions) throws StardogException
Description copied from interface:AdminConnectionReturn the server status information, including Server/Protocols running, Stardog Home path, OS, etc. Theoptionscan be used to configure which metrics will be included in the results.- Specified by:
currentStatusin interfaceAdminConnection- Parameters:
theOptions- the options for customizing the metrics that will be returned- Returns:
- the metrics showing the server status
- Throws:
StardogException- if there was an error retrieving the DBMS info- See Also:
MetricOptions
-
getStoredQueries
public StoredQueries getStoredQueries()
Description copied from interface:AdminConnectionReturns the stored queries in this server. Returned object can be used to add and remove stored queries.- Specified by:
getStoredQueriesin interfaceAdminConnection- Returns:
- the stored queries
-
getStoredFunctions
public com.complexible.stardog.StoredFunctions getStoredFunctions()
Description copied from interface:AdminConnectionReturns the stored functions in this server. Returned object can be used to add and remove stored functions.- Specified by:
getStoredFunctionsin interfaceAdminConnection- Returns:
- the stored functions
-
-