Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

However, this is only true for defined language constructs. Documents may also contain any number of arbitrary attributes (i.e. key-value pairs) possibly organized into nested/hierarchical structures for the purpose of template processing. Such attributes are not normalized as compiler has no knowledge of their meaning. Normally it does not cause any problems as such attributes are not shared across different files.

How is FacetScript Implemented

The Atomiton TQLEngine architecture is a Scalable Event-Driven Architecture which uses a high performance NIO-based communication framework that provide low level asynchronous socket communications. A data structure called Facet Instance is associated with each incoming request. Each facet instance is identified by its facet ID and represents a capability to perform certain actions on the engine. Incoming requests without valid facet IDs are rejected. Each facet instance is also associated with its Facet Type which is a piece of executable code (a Java class) intended to actually process the request.

Once request legitimacy is established by successful resolution of its facet ID, a processing [Netty] pipeline is created for low level request processing. This includes protocol handling, data decoding/encoding and initial data transformation and normalization.

Once request data is presented in a universal fashion (as an instance of ListMap data structure), engine invokes appropriate facet type method using current connection context and facet instance information as arguments.

When to use FacetScript

From TQLEngine implementation perspective FacetScript can be used in following Facet Types.