Note the main ReStore branch is now for Dolphin Smalltalk 7.2. Please use named branches for Dolphin Smalltalk 7.1 and 7.0.
ReStore is a framework enabling Dolphin Smalltalk objects to be stored in and read from relational databases (SQLite, PostgreSQL etc.). ReStore aims to make relational persistency as simple as possible, creating and maintaining the database structure itself and providing access to stored objects via familiar Smalltalk messages.
- Install Dolphin Smalltalk 7.2
- Download and install GitHub Package Manager
- Evaluate:
GitHubPackageManager install: 'rko281/ReStore'
- All required packages and prerequisites will be downloaded and installed
- This repository should then be cloned/downloaded to your Dolphin working directory
- Install package
ReStore\SSW ReStore Examples
- this will load all required prerequisites
Previous versions of ReStore transformed class and instance variable names to table and column names using the following strategy
- CamelCase to UPPER_CASE
- Transformed names matching SQL Reserved words appended with _TABLE or _FIELD to avoid clash
ReStore now users lowercase for transformed names and wraps any reserved words in quotes to avoid the need to append postfixes. If you synchronizeClasses with an existing ReStore database you may experience data loss where new name transformations do not match previous ones. You can revert to the previous strategy by sending useLegacyNameTransformations
to the ReStore instance after login. You should of course also always backup important data prior to synchronizing classes. You may also find the SSW ReStore Deprecated package useful.
ReStore now optionally supports SQLite via a non-ODBC native interface
- To install ReStore with SQLite native support evaluate:
GitHubPackageManager install: 'rko281/ReStore/SQLite3'
- Ensure the 32-bit
sqlite3.dll
is available on your system path (download here) - To specify a SQLite connection send the message
connection:
to your ReStore instance; example:
aReStore connection: (SSWSQLite3Connection on: 'c:\temp\sqlite.db')
Let's consider a simple customer order application with the following classes (found in the SSW ReStore Examples
package):
Object subclass: #Customer
instanceVariableNames: 'firstName surname emailAddress dateOfBirth address orders'
Object subclass: #Address
instanceVariableNames: 'line1 postcode country'
Object subclass: #CustomerOrder
instanceVariableNames: 'orderDate customer items totalPrice'
Object subclass: #CustomerOrderItem
instanceVariableNames: 'order product quantity'
Object subclass: #Product
instanceVariableNames: 'name description price'
The first step in adding persistency with ReStore is to define the structure of the classes. This is done with the class method reStoreDefinition - for the Customer class this is:
reStoreDefinition
^super reStoreDefinition
define: #surname as: (String maxSize: 100);
define: #firstName as: (String maxSize: 100);
define: #emailAddress as: (String maxSize: 100);
define: #dateOfBirth as: Date;
define: #address as: Address dependent;
define: #orders as: (OrderedCollection of: CustomerOrder dependent owner: #customer);
yourself.
A couple of things worth highlighting here:
define: #address as: Address dependent
- addingdependent
to a definition means that object is dependent on the originating object for its existence. In this case the customer's address object is dependent on the owning customer - this means any changes to the address will be saved along with the customer, and the address will be deleted if the customer is deleted.define: #orders as: (OrderedCollection of: CustomerOrder dependent owner: #customer)
- this is an example of an owned collection definition. An owned collection is one where the elements of the collection contain a reference to the owner of the collection. In this case instances of Order refer to their owning customer via their customer instance variable.
With ReStore definitions created for all classes we can now connect to the database and create the database structure:
ReStore
dsn: 'ReStoreExamples';
connect;
addClasses: {Customer. Address. CustomerOrder. CustomerOrderItem. Product};
synchronizeAllClasses.
- You first need to create an ODBC Datasource named 'ReStoreExamples'. Since Dolphin is a 32bit application you must use the 32bit ODBC control panel - evaluate
ReStore openODBC
. For speed and simplicity SQLite is suggested; this requires the SQLite ODBC driver. When creating the datasource specify SQLite3 ODBC Driver. synchronizeAllClasses
prompts ReStore to create the necessary database tables for the classesCustomer
,Address
,Order
andProduct
. If you subsequently modify these classes (and their ReStore definitions) you can runsynchronizeAllClasses
again to prompt ReStore to automatically update the table definitions (add or remove columns from the tables) to match the updated class definitions.
With the database setup we can now create and persist objects using the store
message:
Customer new
firstName: 'John';
surname: 'Smith';
address: (Address new country: 'UK'; yourself);
store.
Customer new
firstName: 'Jen';
surname: 'Smith';
address: (Address new country: 'France'; yourself);
store.
Now we have some objects in the database we need a way to find and read them. ReStore does this via the message storedInstances
which gives a virtual collection of instances of a particular class stored in the database. The virtual collection can then be queried using the familiar Smalltalk collection enumeration messages select:
, detect:
etc.
"All Smiths"
Customer storedInstances select: [ :each | each surname = 'Smith'].
"John Smith"
Customer storedInstances select: [ :each | (each firstName = 'John') & (each surname = 'Smith')].
"alternatively:"
Customer storedInstances select: [ :each | each fullName = 'John Smith'].
"Customers in France"
Customer storedInstances select: [ :each | each address country = 'France'].
ReStore analyses the block argument to select:
, detect:
etc., translating this to SQL which is used to query the database. In this way required objects can be efficiently located without having to read all objects into the image. If all objects are required this can be done by converting the storedInstances
virtual collection to a real collection:
Customer storedInstances asOrderedCollection
Persisting changes to objects is also done using the store
message:
"Updating a Customer"
johnSmith := Customer storedInstances detect: [ :each | each fullName = 'John Smith'].
johnSmith dateOfBirth: (Date newDay: 1 monthIndex: 2 year: 1983).
johnSmith address postcode: 'W1 1AA'.
johnSmith store.
"Check it:"
Customer storedInstances detect: [ :each | each address postcode = 'W1 1AA'].
"Creating an Order - first we need a product"
widget := Product new name: 'Widget'; price: 2.5s2; store; yourself.
johnSmith
addOrder:
(CustomerOrder new
orderDate: Date today;
addItem:
(CustomerOrderItem new
product: widget;
quantity: 4;
yourself);
yourself);
store.
"Check it:"
Customer storedInstances detect: [ :each | each orders anySatisfy: [ :order | order totalPrice = 10]].
This is just a sample of what ReStore can do with an empahsis on simplicity. ReStore also supports more sophisticated usage patterns including:
- transactions with automatic change-tracking
- multi-user update clash detection and resolution
- persistent class hierarchies
- multiple, independent ReStore instances, including per-process and per-session support
- query-by-example (template queries)
- customisable Smalltalk-to-SQL conversion
Full documentation can be found here. Please also see the included SUnits for more examples.