Creating new layers

From WandoraWiki
Revision as of 14:27, 12 February 2007 by Akivela (Talk | contribs)

Jump to: navigation, search

Topic map standard defines a merge operation between identical topics. Merge operation is extremely powerful as it allows incremental knowledge building. Knowledge packets addressing same topics superposition. The only problem with merge rules is that the source of topic changes is lost. You can't recognise which source assigned which topic element. Backtracking the merge changes is essential not just backtracking errors in knowledge but also to ensure trust between knowledge sources and knowledge aggregator. One backtracking method is to allow the aggregator to cancel and redo the merge easily.

Wandora supports layered topic maps. Layered topic map contains one or more topic maps stacked into an ordered array. Wandora allows you to add and delete topic maps in the layer stack. You can also make topic map layer invisible and lock layer if you decide not to change layer's contents.

The concept of layers and layer stack in Wandora is similar to the layer concept of many graphic creation and manipulation applications such as Adobe's PhotoShop where single image may contain multiple layers and graphics designer manipulates one layer at time. Layer implementation in graphic application ables the designer to isolate finished image parts from unfinished and enables rapid versioning. This is the motivation behind Wandora's layer implementation also. To make designers life easier.

Wandora's layer stack locates in bottom left corner of Wandora window. When you start Wandora, application reads topic map from conf/wandora.xtm and creates the layer Base for it.

To create another layer you can

  • Drag and drop XTM, LTM or RDF(S) file to the layer stack. Wandora imports the file and creates a new memory layer for the imported file.
  • Select Layers > New layer or press ALT+N. This opens layer creating window used to define layer type and properties. Current version of Wandora supports memory, database and remote layers. Layer type defines also the source of topic map.


Contents

Creating Memory Layer

Configuring new memory layer is very easy. You can only import XTM topic map file to the layer. Note: You can later merge XTM or LTM topic map to the layer. Merging to empty layer is equivalent to import. Below is an example of memory layer configuration panel.


New layer memory.gif


Creating empty topic map does not actually create empty topic map but imports conf/wandora_mini.xtm to the created layer. This mini map contains a set of Wandora's fundamental topics and associations. In order to get absolutely empty topic map use Layer > Clear layer topic map... tool.

Creating Database Layer

To create a database layer is more complicated. If you have configured the layer during previous Wandora sessions, you can simply pick up the layer configuration. Below is an example of database layer selection window.


New layer database.gif


If you have not configured the layer before you need to create a configuration for the layer. Conguration is created clicking New button in database layer selection window. This opens configuration window shown below


New layer database configuration.gif


To define database configuration you have to select database type first. Current version of Wandora supports two specific and one generic database types. Specific types are for MySQL and Microsoft SQL Server. Generic database type allows you to create database layer with any JDBC capable SQL database.

Setting up MySQL or Microsoft SQL Server database configuration you need to enter

  • Database configuration name.
  • IP or domain name for the database server.
  • Database's name.
  • Name of valid database user.
  • Password for the database user. Although Wandora suggests that you can enter database password later without remembering it, current Wandora version supports only remembered passwords. Wandora does not request password separately but layer creation fails if you have decided not to remember the password.

Wandora's software package does not contain JDBC library for MySQL or Microsoft SQL Server. You need to download libraries separately from producer's own WWW site. See Download for specific download addresses.

Setting up generic database configuration you need to enter

  • Database configuration name.
  • Database JDBC driver class name.
  • Connection string.
  • Database user.
  • Database user password.
  • SQL clauses used to initialize the database.

After the initial database configuration the configuration settings are stored to Wandora's preferences and you can recall the configuration whenever you want to reconnect to an existing database topic map.


Creating database tables for the topic map

Database connection can be established to an existing or a new database. If you are configuring fresh database you probably want to create tables for the database. Wandora does not contain tool to create fresh database and you have to use database's native tools. SQL files to create database locate in conf/database folder. There is separate creation file to MySQL, Microsoft SQL Server, HSQL and generic SQL database. Detailed database initialization steps are beyond the scope of this chapter but in case of MySQL the steps are

Log in the MySQL server with

 mysql --user=<user_name> --password=<password>

Create empty database for the topic map layer

 create database mytopicmap;

Import database creation clauses from db_mysql.sql

 source db_mysql.sql;

Set database user name and password

 grant all on mytopicmap.* to "username"@"%" identified by "password";

And the database is ready to be used as a layer in Wandora. Wandora database contains 8 different database tables. Below is an illustration of database structure.


Database.gif


Restoring database topic map

It may be more convenient to handle SQL dumps instead of XTM exports when using database topic maps. Wandora features a SQL topic map import... tool used to restore existing SQL database dump to database layer. Of cource you can import SQL dump directly to database but sometimes it is difficult to access the database directly and optional method is required. To restore existing database dump you need empty database and wandora connected to the database. Select the database topic map layer and choose File > Import > SQL topic map import.... Tool requests the database dump file. Note that SQL topic map import... requires a valid database topic map dump. Invalid SQL dump makes Wandora easily unstable.

Note also that Wandora features Database extractor tool used to transform any SQL database into a topic map. Do not mix up SQL topic map import... and Database extractor. First is used to restore Wandora topic map database dumps as the latter is used to transform SQL databases to topic maps.

Creating Remote Layer

Remote layers are memory topic maps that locate in a remote Wandora server application. Remote layers are currently very experimental and unfinished. You should not use remote layers in current Wandora version.

Personal tools