Difference between revisions of "Metadata Broker"

From Gcube Wiki
Jump to: navigation, search
(Transformation Rules)
(Transforming a single record using a XSLT)
Line 196: Line 196:
 
// defined in the transformation program
 
// defined in the transformation program
 
TransformationParameters tparams = TransformationParameters.newInstance();
 
TransformationParameters tparams = TransformationParameters.newInstance();
tparams.addParameter("//Input[@name='TPInput']/Schema", "Schema1");
+
tparams.addParameter("//Input[@name='TPInput']/Schema", "Schema1=URI1");
 
tparams.addParameter("//Input[@name='TPInput']/Language", "Eng");
 
tparams.addParameter("//Input[@name='TPInput']/Language", "Eng");
 
tparams.addParameter("//Input[@name='TPInput']/Reference", inputData);
 
tparams.addParameter("//Input[@name='TPInput']/Reference", inputData);
tparams.addParameter("//Output[@name='TPOutput']/Schema", "Schema2");
+
tparams.addParameter("//Output[@name='TPOutput']/Schema", "Schema2=URI2");
 
tparams.addParameter("//Output[@name='TPOutput']/Language", "Eng");
 
tparams.addParameter("//Output[@name='TPOutput']/Language", "Eng");
 
tparams.addParameter("//Variable[@name='XSLT']", XSLTDefinition);
 
tparams.addParameter("//Variable[@name='XSLT']", XSLTDefinition);

Revision as of 09:31, 18 April 2007

Metadata Broker

Introduction

The main functionality of the Metadata Broker is to convert XML documents from some input schema and/or language to another. The inputs and outputs of the transformation process can be single records, ResultSets or entire collections. In the special case where both the inputs and the output are collections, a persistent transformation is possible, meaning that whenever there is a change in the input collection(s), the new data will be automatically transformed in order for the change to be reflected to the output collection.

Transformation Programs

Complex transformation processes are described by transformation programs, which are XML documents. Transformation programs are stored in the DIS. Each transformation program can reference other transformation programs and use them as “black-box” components in the transformation process it defines.

Each transformation program consists of:

  • One or more input definitions. Each one may be a:
    • Data input: accepts a reference to a ResultSet, Collection or Record to be transformed. It also contains the schema-id and language-id that the input data should have.
    • Input variable: a placeholder for an additional string value which must be passed to the transformation program at run-time.
  • Exactly one output definition, which contains the transformation type (transitive or persistent), the output data type (Record, ResultSet or collection), schema and language. If the output is a collection, the output definition also contains the name of the resulting collection.
  • One or more transformation rule definitions.

Note: The name of the input or output schema must be given in the format NAME=URI, where NAME is the name of the schema and URI is the URI of its definition, e.g. DC=http://dublincore.org/schemas/xmls/simpledc20021212.xsd.

Transformation Rules

Transformation rules are the building block of transformation programs. Each transformation program always contains at least one transformation rule. Transformation rules describe simple transformations and execute in the order in which they are defined inside the transformation program. Usually the output of a transformation rule is the input of the next one. So, a transformation program can be thought of as a chain of transformation rules which work together in order to perform the complex transformation defined by the whole transformation program.

Each transformation program consists of:

  • One or more inputs definitions. Each definition contains the schema, language, type (record, ResultSet, collection or variable)and data reference of the input it describes. Each one of these elements (except for the 'type' element) can be either a literal value, or a reference to another value defined inside the transformation program (using XPath syntax).
  • Exactly one output, which can be:
    • A definition that contains the output data type (Record, ResultSet or collection), schema and language.
    • A reference to the transformation program‘s output (using XPath syntax). This is the way to express that the output of this transformation rule will also be the output of the whole transformation program, so such a reference is only valid for the transformation program‘s final rule.
  • The name of the underlying program to execute in order to do the transformation.

Note: The name of the input or output schema must be given in the format NAME=URI, where NAME is the name of the schema and URI is the URI of its definition, e.g. DC=http://dublincore.org/schemas/xmls/simpledc20021212.xsd.

Programs

A program (not to be confused with transformation program) is the Java class which performs the actual transformation on the input data. A transformation rule is just a XML description of the interface (inputs and output) of a program. A program must implement the Program Java interface:

interface Program {
  public String getOutput();
}

getOutput() returns the output of the transformation program as a string. If the output is a record, the return value should be the transformed record. If the output is a ResultSet, the return value should be the ResultSet EPR. Finally, if the output is a collection, the return value should be the collection id.

Programs that produce collections as their output must implement the OutputCollectionProgram interface instead of the Program interface:

interface OutputCollectionProgram extends Program {
  public void setOutputCollectionName(String colName);
}

setOutputCollectionName(String colName) is called before the transformation process begins, in order to set the name of the output collection that will be produced by the program.

The two interfaces do not define any transformation methods. Each program can define any number of methods, but when the transformation rule which references it is executed, the metadata broker service will use reflection in order to locate the correct method to call based on the types of the inputs used. The valid data types for the parameters of each transformation method (so that the broker can locate and use them) are:

  • RecordType: A data type that holds a full record.
  • ResultSetType: A data type that holds the EPR of a ResultSet.
  • CollectionType: A data type that holds the id of a collection.
  • VariableType: A data type that holds the string value of a variable defined inside a transformation program.

The definitions of these data types are contained in the metadata broker library.

Implementation Overview

The metadata broker consists of two components:

  • The metadata broker service
    The metadata broker service provides the functionality of the metadata broker in the form of a stateless service. In the case of a persistent transformation, the service creates a WS-Resource holding information about this transformation and registers for notifications concerning changes in the input collection(s). The created resources are not published and remain completely invisible to the caller.

    The service exposes the following operations:
    • transform(TransformationProgramID, params) -> String
      This operation takes the DiligentID of a transformation program stored in the DIS and a set of transformation parameters. The referenced transformation program is executed using the provided parameters, which are just a set of value assignments to variables defined inside the transformation program. The metadata broker library contains a helper class for creating such a parameter set.
    • transformWithNewTP(TransformationProgram, params) -> String
      This operation offers the same functionality as the previous one. However, in this case the first parameter is the full XML definition of a transformation program in string format and not the DiligentID of a stored one.
    • findPossibleTransformationPrograms (InputDesc, OutputDesc) -> TransformationProgram[]
      This operation takes the description of some input format (type, language and schema) as well as the description of a desired output format, and returns an array of transformation programs definitions that could be used in order to perform the required conversion. These transformation programs may not exist before invoking this operation. They are produced on the fly, by combining all the existing transformation programs which are compatible with each other, trying to synthesize more complex transformation programs. Of course, if there is already an existing transformation program which is applicable for the requested type of transformation, it is included in the results.

  • The metadata broker library
    The metadata broker library contains the definitions of the RecordType, CollectionType, ResultSetType and VariableType Java classes, as well as the definition of the Program Java interface. The following programs are also included in it:
    • Generic XSLT record transformer: transforms a given record using a given XSLT definition. The output is the transformed record.
    • Generic XSLT ResultSet transformer: transforms a given ResultSet using a given XSLT definition, producing a new ResultSet. The output is the new ResultSet's EPR.

Dependencies

  • MetadataBrokerService
    • jdk 1.5
    • WS-Core
    • MetadatBrokerLibrary
  • MetadataBrokerLibrary
    • jdk 1.5
    • WS-Core
    • ResultSet bundle

Usage Example

The following examples use the transformWithNewTP operation of the metadata broker service.

Transforming a single record using a XSLT

This is the GXSLTRec class (included in the metadata broker library), which performs the actual conversion:

package org.diligentproject.metadatamanagement.metadatabrokerlibrary.programs.GXSLTRec;

import org.diligentproject.metadatamanagement.metadatabrokerlibrary.programs.Program;
import org.diligentproject.metadatamanagement.metadatabrokerlibrary.programs.RecordType;
import org.diligentproject.metadatamanagement.metadatabrokerlibrary.programs.VariableType;

import java.io.StringReader;
import java.io.StringWriter;
import java.rmi.RemoteException;

import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;

public class GXSLTRec implements Program {

	private StringWriter output;
	
	public void transform(RecordType record, VariableType xslt) throws RemoteException {
            try {
                 TransformerFactory factory = TransformerFactory.newInstance();
                 Transformer t = factory.newTransformer(new StreamSource(new 
                      StringReader(xslt.toString())));
                 output = new StringWriter();
                 t.transform(new StreamSource(new StringReader(record.toString())), 
                      new StreamResult(output));
             } catch(Exception e) {
                     throw new RemoteException(e.toString());
             }
	}
	
	/**
	 * Returns the output of the transformation process, which is the transformed record.
	 */
	public String getOutput() {
		return output.toString();
	}	
}

This is the XML definition of the transformation program:

<?xml version="1.0" encoding="UTF-8"?>
<TransformationProgram xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<Input name="TPInput">
		<Schema isVariable="true"/>
		<Language isVariable="true"/>
		<Type>record</Type>
		<Reference isVariable="true"/>
	</Input>
	<Variable name="XSLT"/>
	<Output name="TPOutput">
		<Schema isVariable="true"/>
		<Language isVariable="true"/>
		<Type>record</Type>
	</Output>
	<TransformationRule>
		<Definition>
			<Transformer>org.diligentproject.metadatamanagement.metadatabrokerlibrary.programs.GXSLTRec.GXSLTRec</Transformer>
			<Input name="Rule1Input1">
				<Schema isVariable="true"> //Input[@name='TPInput']/Schema </Schema>
				<Language isVariable="true"> //Input[@name='TPInput']/Language </Language>
				<Type>record</Type>
				<Reference isVariable="true"> //Input[@name='TPInput']/Reference </Reference>
			</Input>
			<Input name="Rule1Input2">
				<Schema/>
				<Language/>
				<Type>variable</Type>
				<Reference isVariable="true"> //Variable[@name='XSLT'] </Reference>
			</Input>
			<Output name="TPRule1Output">
				<Reference>//Output[@name='TPOutput']</Reference>
			</Output>
		</Definition>
	</TransformationRule>
</TransformationProgram>

In this example, the transformation program defined above is stored in a local file named GXSLTRec.xml. The input record that is going to be transformed is stored in another local file named input.xml, and the XSLT that will be used is defined by the file xslt.xml. The following code fragment reads the contents of these three files, creates a set of parameters which are used in order to assign the input data and the XSLT definition to the respective transformation program variable inputs, and then invokes the transformWithNewTP operation of the metadata broker service. The result is written to the console. The URI of the remote service is given as a command-line argument.

public class Client {
	public static void main(String[] args) {
		try {
			// Create endpoint reference to service
			EndpointReferenceType endpoint = new EndpointReferenceType();
			endpoint.setAddress(new Address(args[0]));
			MetadataBrokerPortType broker = 
                             new MetadataBrokerServiceAddressingLocator().getMetadataBrokerPortTypePort(endpoint);
			
			// Read the transformation program XML file into a string
			String TPDefinition = readTextFile("GXSLTRec.xml");

			// Read the input data file into a string
			String inputData = readTextFile("input.xml");

			// Read the XSLT file into a string
			String XSLTDefinition = readTextFile("xslt.xml");

			// Create a set of transformation parameters, assigning values to variables
			// defined in the transformation program
			TransformationParameters tparams = TransformationParameters.newInstance();
			tparams.addParameter("//Input[@name='TPInput']/Schema", "Schema1=URI1");
			tparams.addParameter("//Input[@name='TPInput']/Language", "Eng");
			tparams.addParameter("//Input[@name='TPInput']/Reference", inputData);
			tparams.addParameter("//Output[@name='TPOutput']/Schema", "Schema2=URI2");
			tparams.addParameter("//Output[@name='TPOutput']/Language", "Eng");
			tparams.addParameter("//Variable[@name='XSLT']", XSLTDefinition);
			
			// Prepare the invocation parameters
			TransformWithNewTP params = new TransformWithNewTP();
			params.setTransformationProgram(TPDefinition);
			params.setParameters(tparams.getAsString());
			
			// Invoke the remote operation and write the result to the console
			System.out.println(broker.transformWithNewTP(params));
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
	
	/**
	 * Reads the contents of a given text file and returns them in a String. 
	 */
	private static String readTextFile(String filename) throws IOException {
		BufferedReader br = new BufferedReader(new FileReader(filename));
		StringBuffer buf = new StringBuffer();
		String tmp;
		while ((tmp = br.readLine()) != null) {
			buf.append(tmp + "\n");
		}
		return buf.toString();
	}
}

-- Sboutsis 19:11, 19 March 2007 (EET)