Tutorial: Quickstart
Contents
Quickstart
Client opens a database session
To open a client session to a Simantics database server you need to fetch a Driver (javadoc) from the Driver manager (javadoc).
The basic idea is much the same as in JDBC Driver and DriverManager.
<syntaxhighlight lang="java">
// Try to load and register the Driver instance with the driver manager Class.forName("fi.vtt.simantics.procore.ProCoreDriver");
// Connect to the server at the specified host and credentials. Session session = Manager.getSession("procore", InetSocketAddress.createUnresolved("localhost", port), username, password);
</syntaxhighlight>
Reading the database
- Synchronous primitive read
<syntaxhighlight lang="java">
Boolean readBooleanProperty(RequestProcessor processor, final Resource resource, final Resource property) { return processor.syncRequest(new Read<Boolean>() { public Boolean perform(ReadGraph graph) throws DatabaseException { return graph.getRelatedValue(resource, property); } }); }
</syntaxhighlight>
Writing the database
- Synchronous write requests
<syntaxhighlight lang="java">
Resource createLibrary(WriteGraph graph) throws DatabaseException { Builtins b = graph.getBuiltins();
// Create new Library instance. Use claim(s,p,inv,o) // instead of claim(s,p,o) for defining (s, InstanceOf, o) // to not create the inverse statement (o, HasInstance, s). Resource library = graph.newResource(); graph.claim(library, b.InstanceOf, null, b.Library);
// Give the library a name graph.claimValue(library, b.HasName, "New Library");
// Attach the library to the specified container graph.claim(container, b.ConsistsOf, library); }
class CreateLibrary extends AbstractWriteResult<Resource> { Resource container; public CreateLibrary(Resource container) { this.container = container; } public Resource perform(WriteGraph graph) throws DatabaseException { return createLibrary(graph); } }
void createLibrary(RequestProcessor processor, Resource container) { processor.syncRequest(new CreateLibrary(container)); }
</syntaxhighlight>
Class Diagrams
Repairing corrupted database
When running the database in debug mode a complete journal of all the changes made to the database is kept. If an error is encountered during a change the erroneous command is written to the journal and the database will stop servicing requests. The journal can be used to initialize the database by reading it to an empty database. This can be done by:
- rename journal.procore file to journalRepair.procore
- delete or rename other *.procore files so that you have empty database
- start server
Simantics Database Properties
While Simantics DB uses transactions, it does not completely conform to ACID (Atomicity, Consistency, Isolation, Durability) rules:
- Atomicity
- Atomicity should be covered by checkpoints, journaling, and rollback, but these mechanisms are still under development. Currently, if something fails during write trasaction, changes are that part of the written data has already gone into the database. This work is targeted for the next release and possibly for an in-between service release.
- Consistency
- There are several different levels of consistency in play in Simantics and in its semantic graph database. These are from lowest to highest:
- Semantic graph consistency
- The database server (and client) will ensure all statements written in the database must be made up of valid resources. Duplicate statements cannot be created either.
- Core/Layer0 consistency
- As an example, a resource r in the database can be marked an InstanceOf some type t. In order for r to be semantically consistent, r needs to have the properties and relations marked mandatory for it in t with basic Layer0 requirement specifications. These rules are often fairly simple and easily verifiable. This level of consistency is not ensured by the database server nor the client, but can be considered the responsibility of custom database client query/changeset listeners.
- Domain-specific consistency
- A database may contain domain-specific models that may have very complex consistency rules. Such consistencies are meant to be handled through SCL Language and computing issues that are presented to the user. For example, some inconsistencies are caused by incomplete models which is a natural situation in the process of developing a model. We simply let the database be domain-specifically inconsistent but strive to make it possible to develop validations that inform the user of such inconsistencies or issues.
- Isolation
- Simantics DB allows multiple reads or a single write transaction simultaneously, so it should follow this rule.
- Durability
- The Simantics database is journaled in order guarantee durability. However, there remains work to be done to achieve full durability. Journal corruption has been experienced and is being debugged and fixed.
FAQ
Excerpt from RequestProcessor javadoc:
A client invoking any of the
syncRequest
-methods in this interface must not assume that the request is performed within the same thread that performed thesyncRequest
invocation. This is an implementation-specific matter.Granted, before 2009 the implementation was such that it would execute synchronous requests within the invoking thread but it is now specified as seen above. Note that you cannot synchronously schedule access to another thread and use the original ReadGraph/AsyncReadGraph from there since database access is tied to the dedicated threads assigned for it.
The current DB client implementation does properly support write request rollback, which unfortunately causes the DB client's view of the database to be corrupted. Also if your write operation is not small, even the server's view of the database may be corrupted. At the moment it looks like resolving this issue will be delayed until Simantics 1.2. Until then, the Simantics database cannot be considered for continuous use in any real-life applications.