Diffusion C API  6.7.4
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
topic-views.h File Reference

This feature allows a client session to manage topic views. More...

Data Structures

struct  diffusion_create_topic_view_params_s
 Structure describing a request to create a topic view. More...
 
struct  diffusion_topic_views_list_params_s
 Structure describing a request to list topic views. More...
 
struct  diffusion_remove_topic_view_params_s
 Structure describing a request to remove a topic view. More...
 

Typedefs

typedef struct
DIFFUSION_TOPIC_VIEW_T 
DIFFUSION_TOPIC_VIEW_T
 Opaque topic view struct.
 
typedef int(* on_topic_view_created_cb )(const DIFFUSION_TOPIC_VIEW_T *topic_view, void *context)
 Callback when a topic view has successfully been created. More...
 
typedef int(* on_topic_view_response_cb )(void *context)
 Callback when a response is received from the server regarding a topic view operation. More...
 
typedef int(* on_topic_views_list_cb )(const LIST_T *topic_views, void *context)
 Callback when a response is received from the server regarding a diffusion_topic_views_list_topic_views operation. More...
 
typedef struct
diffusion_create_topic_view_params_s 
DIFFUSION_CREATE_TOPIC_VIEW_PARAMS_T
 Structure describing a request to create a topic view. More...
 
typedef struct
diffusion_topic_views_list_params_s 
DIFFUSION_TOPIC_VIEWS_LIST_PARAMS_T
 Structure describing a request to list topic views.
 
typedef struct
diffusion_remove_topic_view_params_s 
DIFFUSION_REMOVE_TOPIC_VIEW_PARAMS_T
 Structure describing a request to remove a topic view.
 

Functions

char * diffusion_topic_view_get_name (const DIFFUSION_TOPIC_VIEW_T *topic_view)
 Return a memory allocated copy of the topic view's name. More...
 
char * diffusion_topic_view_get_specification (const DIFFUSION_TOPIC_VIEW_T *topic_view)
 Return a memory allocated copy of the topic view's specification. More...
 
SET_Tdiffusion_topic_view_get_roles (const DIFFUSION_TOPIC_VIEW_T *topic_view)
 Return a memory allocated SET_T of the topic view's roles. More...
 
DIFFUSION_TOPIC_VIEW_Tdiffusion_topic_view_dup (const DIFFUSION_TOPIC_VIEW_T *topic_view)
 Returns a memory allocated copy of a DIFFUSION_TOPIC_VIEW_T. More...
 
void diffusion_topic_view_free (DIFFUSION_TOPIC_VIEW_T *topic_view)
 Free a memory allocated DIFFUSION_TOPIC_VIEW_T More...
 
bool diffusion_topic_views_create_topic_view (SESSION_T *session, const DIFFUSION_CREATE_TOPIC_VIEW_PARAMS_T params, DIFFUSION_API_ERROR *api_error)
 Create a new named topic view. More...
 
bool diffusion_topic_views_list_topic_views (SESSION_T *session, const DIFFUSION_TOPIC_VIEWS_LIST_PARAMS_T params, DIFFUSION_API_ERROR *api_error)
 List all the topic views that have been created. More...
 
bool diffusion_topic_views_remove_topic_view (SESSION_T *session, const DIFFUSION_REMOVE_TOPIC_VIEW_PARAMS_T params, DIFFUSION_API_ERROR *api_error)
 Remove a named topic view if it exists. More...
 

Detailed Description

This feature allows a client session to manage topic views.

A topic view maps one part of a server's topic tree to another. It dynamically creates a set of reference topics from a set of source topics, based on a declarative topic view specification. The capabilities of topic views range from simple mirroring of topics within the topic tree to advanced capabilities including publication of partial values, expanding a single topic value into many topics, inserting values from other topics, throttling the rate of publication, and applying a fixed delay to the publication.

A topic view can even map topics from another server (in a different cluster). This capability is referred to as 'remote topic views'. The view can specify the server that the source topics are hosted on in terms of a remote server (see remote servers for details of how to create and maintain remote servers).

Each reference topic has a single source topic and has the same topic type as its source topic. Reference topics are read-only (they cannot be updated), nor can they be created or removed directly. Otherwise, they behave just like standard topics. A client session can subscribe to a reference topic, and can fetch the reference topic's current value if it has one.

The source topics of a topic view are defined by a topic selector. One or more reference topics created for each source topic, according to the topic view. If a source topic is removed, reference topics that are derived from it will automatically be removed. If a topic is added that matches the source topic selector of a topic view, a corresponding reference topic will be created. Removing a topic view will remove all of its reference topics.

Topic view specifications

The following is a simple topic view specification that mirrors all topics below the path a to reference topics below the path b.

map ?a// to b/<path(1)>

A topic view with this specification will map a source topic at the path a/x/y/z to a reference topic at the path b/x/y/z. The specification is simple, so the reference topic will exactly mirror the source topic.

A general topic view specification comprises several parts:

  • The source topic clause identifies the source topics.
  • The optional from clause which may identify a server that hosts the source topics.
  • The path mapping clause determines how reference topic paths are derived from the source topic paths, and when expanding to more than one reference topic, from where the values are obtained.
  • The optional insert clause(s) can specify that values from other topics are inserted into the final reference topic value.
  • The optional patch clause(s) can specify that a JSON patch is applied to the reference topic value.
  • The optional topic property mapping clause determines how reference topic properties are derived from source topic properties.
  • The optional value mapping clause determines how reference topic values are derived from source topic values or expanded values.
  • The optional throttle clause constrains the rate at which each reference topic is updated when its source topic is updated.
  • The optional delay by clause causes a change to a view's source topic to be delayed by a fixed time before it is reflected in reference topics.
  • The optional separator clause can define a replacement path separator for values extracted using the scalar or expand directives.
  • The optional type clause can specify that the reference topic that is created is of a different topic type from the selected source topic.

Topic view specification

Topic view specifications are described using a domain specific language (DSL). The DSL has two required clauses: the source clause and the path mapping clause. The source clause identifies which topics should be the source topics for the view. The path mapping clause describes how the paths of reference topics should be derived. A specification begins with the source clause, followed by the path mapping clause.

The source clause begins with the map keyword and is followed by a topic selector. These topic selectors follow the same as other topic selectors.

The path mapping clause begins with the to keyword and is followed by a path mapping template. A path mapping template is the topic path with embedded directives. Directives are evaluated when creating the topic reference and substituted into the topic path. Directives are surrounded by angle brackets, they contain the name of the directive and the parameters. The parameter list begins with an opening round bracket, ends with a closing round bracket and parameters in the list should be separated by colons.

Topic selectors and path mapping templates can be quoted or unquoted. They are quoted using the single quote mark. To include whitespace, single quotes or literal opening angle brackets they must be quoted. In quoted selectors and templates single quotes, literal opening angle brackets and backslashes must be escaped with a single backslash. In templates the opening angle bracket should be unescaped when beginning a directive. Characters in unquoted selectors and templates can't be escaped.

Any whitespace can be used to separate keywords, statements and clauses.

The following example creates reference topics with 'prefix/' prepended to the paths of the source topics.

map ?a/path/ to prefix/<path(0)>

Source topic clause

The source topic clause begins with the map keyword and is followed by a topic selector. These topic selectors follow the same parsing rules as other topic selectors.

When evaluating a topic view, topics in the topic tree that match the source topic selector are considered, excluding TOPIC_TYPE_ROUTING topics.

Reference topics are valid source topics. In particular, chaining of topic views is supported; that is, a reference topic created by one topic view can be the source topic of another topic view. Additionally, a reference topic can be the source topic of a routing topic subscription.

From clause

The 'from' clause optionally follows the source topic clause. It begins with the from keyword and is followed by a remote server name. The name refers to a remote server created using the RemoteServers feature.

The presence of the clause indicates that the source topics will be selected from the specified server and not from the local server.

Further details regarding the processing of remote topic views are given below.

Path mapping clause

The path of a reference topic is derived from the source topic according to the topic view path mapping. The path mapping allows the source topic path and the value of the source topic to determine the path of the reference topic. In addition the path mapping can include expand directives which allow objects and arrays in JSON source topic values to be expanded to produce many reference topics.

A path mapping clause begins with the to keyword and is followed by a path mapping template. A path mapping template is a topic path with embedded directives. Directives are evaluated when creating the topic reference and substituted into the topic path. Directives are delimited by angle brackets (<, >) and consist of the name of the directive and a list of parameters. The parameter list is comma-separated and surrounded by parentheses ((, )).

The following path mapping directives are supported:

Source path directives

Source path directives extract a portion of the source path and are parameterized by the index of the start part of the source path and the number of parts to include. The number of parts parameter is optional – if it is missing, the selection extends to the end of the source path. The syntax is <path(start, number)>, or <path(start)> when the number of parts parameter is omitted.

For example, given the source path a/b/c/d, the source path directive <path(1, 2)> is mapped to the reference topic path b/c, and the source path directive <path(2)> is mapped to the reference topic path c/d.

Source value ("scalar") directives

Source value directives are only applied to TOPIC_TYPE_JSON source topics or TOPIC_TYPE_TIME_SERIES topics with a JSON event type; if the path mapping contains a source value directive, topics with other topic types matching the source topic selector are ignored.

Source value directives use the keyword scalar and are parameterized by a single JSON pointer that extracts a scalar value from the source (or current) value. A scalar value is a string, a number, true, false, or null, that is, anything other than an array or a object. If the JSON pointer does not refer to a scalar value in the source (or current) value, no reference topic will be created. This includes cases where the JSON pointer refers to an array or an object), or when no part of the source value is selected.

Deriving the reference topic paths from part of the source topic value effectively creates a secondary index on the value. For source value directives to work efficiently, the selected scalar values should be relatively stable. If an update to the source topic changes the selected scalar value, the corresponding reference topic will be removed and a new reference topic will be created.

For example, given a source value of

  {
    "account" : "1234",
    "balance" : { "amount" : 12.57, "currency" : "USD" }
  }

and the source value directive currency/<scalar(/balance/currency)>/account/<scalar(/account)>, the reference topic path will be currency/USD/account/1234.

If the extracted value is a string, it is copied literally to the reference topic path. A value that contains path separators (/) will create a reference topic path with more levels than the path mapping template. Use the separator directive to replace path separators with an alternative string.

An extracted value of null will be copied to the reference topic path as the string "null".

Expand value directives

Expand value directives are only applied to JSON source topics; if the path mapping contains an expand value directive, non-JSON topics matching the source topic selector are ignored.

Expand value directives use the keyword expand and are parameterized by one or two JSON pointers.

The first pointer indicates the element within the value to be expanded, and if omitted, the value is expanded from the root. Expansion of a source topic indicates that every direct child of the element pointed to by the expand pointer will be used to create a new reference topic (or provide input to later expand or scalar directives). For example <expand()> would expand every child item in the source value and <expand(/account)> would expand every child of the account value in the source value. The specified value could be an object, an array or even a scalar value, but a scalar value would expand to only a single new value.

The optional second parameter of the expand directive specifies a pointer to a scalar value within the expanded value which will be used to derive the path fragment of the reference topic path. If the second pointer is not specified or no scalar value is found for the pointer, the path fragment is taken from the key (if the child value is an object) or the index (if the child value is an array). Scalar child values will expand to a reference topic but will not add anything to the generated path. For example <expand(,/name)> would expand from the root of the source value and each child value path fragment would be obtained from the scalar value with the key name.

So if a source topic had a value of

  {
      "values": [1, 5, 7]
  }

a path mapping of value<expand(/values)> would expand the value to the following reference topics:-

path "value0" with a value of 1
path "value1" with a value of 5
path "value2" with a value of 7

Expand directives can be nested (i.e. there can be more than one expand directive in a path mapping). In this case a second expand directive will use the value from the previous expand as its source (root) value and not the value of the source topic. This also applies to scalar directives that follow an expand directive.

If expansion causes more than one mapping to the same topic path, only the first encountered will be created and updated.

Expanding source topic values effectively creates secondary indices on the value. For expanded value directives to work efficiently, the value selected for expansion should be relatively stable in terms of the children it contains. If an update to the source topic changes the children of the expanded value, then corresponding reference topics will be removed and created. Updates should generally be limited to changing values within the expanded values.

Insert clause(s)

Insert clauses may be specified directly after the path mapping, but before any other clauses (except 'patch' with which they may be interspersed), to indicate that values from other topics (insertion topics) are to be added to the derived reference topic value.

Insert clauses only apply to TOPIC_TYPE_JSON source topics; if the topic view specification contains an insert clause, non-JSON topics matching the source topic selector are ignored.

The name of the topic to insert from can be specified in a similar way to the path mapping in that constants, path directives, and scalar directives (but not expand directives) may be used.

The value from the insertion topic (if found) is inserted into the 'current' value at a specified key position. The current value may be the source topic value, the value output from expand directives (in which case the insertion applies to each value), or the value from a previous insert clause. Insertion topics may be JSON, STRING, INT64, or DOUBLE.

If, when evaluating a topic view, the insertion topic is not found (or the specified key within it is not found), or it is of an unsupported topic type, an optional default value may be inserted, but if no default is specified then no insertion takes place and the value is passed to the derived reference topic unchanged.

The values of the insertion topics are only taken at the point when the source topic is evaluated against the topic view (i.e. when the source topic is updated). Changes to the value of the insertion topic that occur in the interim are not applied to the derived reference topics.

The format of an insert clause is

insert path [key fromKey] at insertionKey [default defaultValue]

The path is specified in exactly the same way as for the path mapping clause, except it may not contain expand directives. path directives operate on the path of the source topic, whereas scalar directives operate on the 'current' value as defined previously.

key is optional and can specify a fromKey which is a JSON pointer indicating the data within the insertion topic that is to be inserted. If no key is specified then the whole of the insertion topic value is inserted.

at specifies the insertionKey which is a JSON pointer indicating where to insert the insertion topic value. If a value already exists at the specified key then it is replaced otherwise it is inserted. Insertion can only occur if the parent of the key exists in the value and is of a compatible type. Array pointers may only be used to replace existing entries or append one greater than the last entry. The special pointer value /- may be used to append to the end of an existing array.

default is optional and may be used to specify a string defaultValue to be inserted if the insertion topic does not exist, it is of an unsupported topic type, or the specified key within it could not be found.

The following insert clause would cause the whole value of the topic named AnyTopic to be inserted into the current value at key /T, assuming that the current value is an object.

insert AnyTopic at /T

The following insert clause would cause the whole value of the topic named AnyTopic to be inserted into the current value at key /T/MyKey, assuming that an object with the key T exists in the current value.

insert AnyTopic at /T/MyKey

The following insert clause would cause the whole value of the topic named AnyTopic to be appended to the array at the key T in the current value.

insert AnyTopic at /T/-

The following insert clause would cause the value at the key name within the topic named AnyTopic to be appended to the array at the key T in the current value.

insert AnyTopic key /name at /T/-

In the above examples no insertion would take place if the insertion value was not found, but a default value can be specified to insert into the current value in this case.

insert AnyTopic at /T/- default "unknown"

The path of the topic to insert from can be built from parts of the source topic path and/or scalar values within the current value. For example:

insert AC/<path(1,1)>/<scalar(/myval)> at /T

Any number of insert clauses may be chained together. For example:

insert AnyTopic at /T/- default "unknown" insert AnotherTopic at /X/Another

Patch clause(s)

Patch clauses may be specified directly after the path mapping, but before any other clauses (except 'insert', with which it may be interspersed), to indicate that a JSON patch is to be applied to the value.

Patch clauses only apply to JSON source topics; if the topic view specification contains a patch clause, non-JSON topics matching the source topic selector are ignored.

The patch is applied to the current value within a view processing chain, so if a patch occurs after an expand then the patch will be applied to each expanded value.

The format of a patch clause is

patch 'patch string'

The patch string should be formatted according to the JSON Patch standard (see RFC 6902: JavaScript Object Notation (JSON) Patch).

Patches are a sequence of JSON Patch operations contained in an array. They are applied as an atomic update to the previous value if the resulting update is successfully calculated. The following patch will check the value at a specific key and update if the expected value is correct:

[{"op":"test", "path":"/price", "value" : 22}, {"op":"add", "path":"/price", "value": 23}]

The available operations are:

  • Add: { "op": "add", "path": "/a/b/c", "value": [ "foo", "bar" ]}
  • Remove: { "op": "remove", "path": "/a/b/c" }
  • Replace: { "op": "replace", "path": "/a/b/c", "value": 43 }
  • Move: { "op": "move", "from": "/a/b/c", "path": "/a/b/d" }
  • Copy: { "op": "copy", "from": "/a/b/c", "path": "/a/b/e" }
  • Test: { "op": "test", "path": "/a/b/c", "value": "foo" }

The test operation checks that the CBOR representation of the value of a topic is identical to the value provided in the patch after converting it to CBOR. If the value is represented differently as CBOR, commonly due to different key ordering, then the patch will return the index of the failed operation. e.g the values {"foo": "bar", "count": 43} and {"count": 43, "foo": "bar"} are unequal despite semantic equality due to the differences in a byte for byte comparison.

The following patch clause would add the 'price' field and remove the 'name' field from an input JSON object.

patch '[{"op": "add", "path": "/price", "value": 22}, {"op": "remove", "path": "/name"}]'

Patches can only be applied to JSON arrays or objects and if they fail to apply, no resulting reference topic will be created by the view. If an update patch fails, any previously created reference topic would be removed.

Any number of patch clauses may be chained together and interspersed with insert clauses. For example:

  patch '[{"op": "add", "path": "/price", "value": 22}]'
  insert AnyTopic at /T/- default "unknown"
  patch '[{"op": "remove", "path": "/name"}]'

Topic property mapping clause

The topic specification of a reference topic is derived from the topic specification of the source topics. A reference topic has the same topic type as its source topic.

The topic properties of a reference topic are derived from the source topic. Some topic properties can be tuned using the optional topic properties mapping clause. The following table describes the behavior for each topic property.

Source topic property Reference topic specification default Can be set by topic property mapping? Notes
DIFFUSION_COMPRESSION Copied from source topic specification Yes
DIFFUSION_CONFLATION Copied from source topic specification Yes
DIFFUSION_DONT_RETAIN_VALUE Copied from source topic specification Yes
DIFFUSION_OWNER Not set No
DIFFUSION_PERSISTENT Not set No Reference topics are not persisted. Topic views are persisted, so a reference topic will be recreated on server restart if its source is persistent.
DIFFUSION_PRIORITY Copied from source topic specification Yes
DIFFUSION_PUBLISH_VALUES_ONLY Copied from source topic specification Yes
DIFFUSION_REMOVAL Not set No Reference topics cannot be removed directly.
DIFFUSION_SCHEMA Copied from source topic specification No A TOPIC_TYPE_RECORDV2 reference topic has the same schema as its source topic.
DIFFUSION_TIDY_ON_UNSUBSCRIBE Copied from source topic specification Yes
DIFFUSION_TIME_SERIES_EVENT_VALUE_TYPE Copied from source topic specification No A TOPIC_TYPE_TIME_SERIES reference topic has the same value type as its source topic.
DIFFUSION_TIME_SERIES_RETAINED_RANGE Copied from source topic specification Yes, with restrictions A topic property mapping cannot increase the time series retained range by overriding the DIFFUSION_TIME_SERIES_RETAINED_RANGE property. The retained range of a reference time series topic will be constrained to be no greater than that of its source topic.
DIFFUSION_TIME_SERIES_SUBSCRIPTION_RANGE Copied from source topic specification Yes
DIFFUSION_VALIDATE_VALUES Not set No A reference topic reflects updates to its source topic. It cannot reject updates.

A topic property mapping clause begins with the keywords with properties and consists of a comma-separated list of topic property keys and values, each separated by a colon. For example, the following topic view specification maps all topics below the path a to reference topics below the path b, and disables both conflation and compression for the reference topics.

map ?a// to b/<path(1)> with properties CONFLATION:off, COMPRESSION:false

Topic value mapping

By default, a reference topic's value is a copy of the source topic value, or part of the source value produced by an expand path mapping directive and/or modified by insert clauses. For JSON source topics or TIME_SERIES source topics with a JSON event type, the optional topic value mapping clause can be applied to extract part of the resulting value (the latest value in the case of TIME_SERIES topics).

A topic value mapping begins the keyword as and is followed by a value directive. A value directive is delimited by angle brackets (<, >), and consists of the value keywords and a single JSON pointer parameter. The JSON pointer selects the part of the current value to copy.

For example, given a current value of

  {
      "account" : "1234",
      "balance" : { "amount" : 12.57, "currency" : "USD" }
  }

and the value mapping clause as <value(/balance)>, the reference topic value will be

  {
      "amount" : 12.57,
      "currency" : "USD"
  }

Value mappings that follow expand directives and/or insert clauses apply to the current derived value and not the source topic value.

Topic value mappings only alter the reference topic value; only the path mapping determines whether a reference topic should exist. If the topic value mapping's JSON pointer fails to select anything from the source topic value, the reference topic will have the JSON value null.

Topic value mappings are often used with path value mappings to avoid repeating information in the path and the value. For example:

map ?accounts// to balances/<scalar(/account)> as <value(/balance)>

Throttle clause

The optional throttle clause can be used to constrain the rate at which a reference topic is updated when its source topic is updated. The primary application of a throttle clause is to restrict the number of updates sent to reference topic subscribers, reducing network utilization or the processing each subscriber must do. Throttling also restricts the rate at which client sessions can observe changes to reference topic values using the fetch API.

The throttle clause has the form throttle to X updates every period, where X is a positive integer, and period is a positive integer followed by a time unit which is one of seconds, minutes, or hours.

For example, the following topic view specification maps all topics below the path a to reference topics below the path b, but updates the value of each reference topic at most twice every five seconds:

map ?a// to b/<path(1)> throttle to 2 updates every 5 seconds

To improve readability, the throttling clause allows 1 update as an alternative to 1 updates, and every second as an alternative to every 1 seconds (and so on, for other time units). For example, the following topic view specification maps all topics below the path a to reference topics below the path b, but updates the value of each reference topic at most once every hour:

map ?a// to b/<path(1)> throttle to 1 update every minute

The throttle clause is only applied when a source topic is updated more frequently than the configured rate. If a source topic is updated less frequently, updates are passed on unconstrained. If the rate is exceeded, a reference topic will not be updated again until the configured period has expired. At this time, the reference topic will be updated based on the source topic updates that happened in the interim, and a single value will be published. Thus, a throttle clause provides topic-scoped conflation.

The throttle clause is ignored for time series topics because time series updates do not support efficient conflation. Updates to source time series topics are passed on immediately to the corresponding reference topics, regardless of any throttle clause.

Preserve topics clause

The default behavior for a topic view is that only the reference topics that can be derived from the current value of the source topic are maintained. This applies to views using directives that derive the path of the reference topic(s) from a value within the source topic (e.g. scalar or expand). For example if a view uses a scalar directive to determine the path of the reference topic and the source topic is updated such that the selected scalar value changes then the previously created reference topic will be removed and a new one created. Similarly an expand directive may create many reference topics from the source value but if the source is updated then only those reference topics that still have a corresponding value within the source value will be updated (or new ones added if not in the previous value), whilst others will be removed.

There are situations where an application may not want reference topics to be removed because of source value changes. In such cases the preserve topics clause may be used to indicate that all reference topics created by a view should be retained (and updated by later updates that apply to it) until either the source topic or the creating view are removed.

For example:

map ?a/path/ to b/<expand()> preserve topics

Topic type clause

The optional 'type' clause can be used to specify the topic type of the target reference topic. If the current source value of type indicated by the source topic's type can be converted to the target type, a reference topic of the specified type will be created.

The 'type' clause may occur anywhere after path mapping or transformation (e.g. 'insert') clauses.

For example:

map ?a/ to b<path(1)> type STRING

The specified type must be one of the supported target types STRING, INT64, DOUBLE, JSON, TIME_SERIES or BINARY, case insensitive.

The following table describes the supported conversions from the source topic type (the left column) to the supported target types. The number in brackets indicates a note at the foot of the table describing exactly how the conversion is processed. Where there is no number, no conversion is necessary and the derived source value is simply mapped to the target reference topic as if the type options was not specified. Where there is no entry for the source topic type in the left column, no conversion is supported and topics of unsupported types will not be processed by the topic view. An x indicates that the conversion is not supported.

In all cases the value being processed will be the current value as derived from other mappings with the topic view (e.g. expand) which is not necessarily the value of the source topic.

Source topic STRING INT64 DOUBLE JSON TIME_SERIES BINARY
STRING (1) (1) (2) (3) x
INT64 (4) (5) (2) (3) x
DOUBLE (4) (6) (2) (3) x
JSON (7) (7) (7) (3) x
TIME_SERIES (8) (8) (8) (8) (9)
BINARY x x x x (9)

Conversion notes:

  1. STRING to number conversions will only occur if the value of the string can be converted to the target number type. If the string cannot be converted then no reference topic will be created.
  2. Primitive types to JSON will result in a JSON topic containing just the scalar value.
  3. Conversions to TIME_SERIES will result in a time series topic with an event type matching the source topic. Every update to the source topic will result in a new value being appended to the reference time series topic. It is not possible to convert to a time series topic with a different event type from the source topic.
  4. Conversions from number types to STRING will result in a simple string representation of the number in the reference topic value.
  5. INT64 to DOUBLE conversions perform a simple conversion. For example, 123 becomes 123.0.
  6. DOUBLE to INT64 conversions perform rounding to the nearest integer value. For example, 12.51 becomes 13.
  7. JSON to primitive type conversions only occur if the JSON value is a scalar which can be read as a string and converted to the target type. Currently, only string and integer scalar values can be read as a string (i.e. not doubles). The string representation of the value will be converted in the same way as specified for STRING to other primitive types. If the JSON value is a structure or cannot be converted then no conversion takes place and no reference topic will be created.
  8. The conversion of TIME_SERIES to other types follows the same rules as for conversion from the source topic type that matches the source time series topic's event value type. So if the time series event type is double then the conversion rules from source topic type DOUBLE to the target type will apply. Each value appended to the source time series topic will result in an update to the reference topic. If a failure to convert occurs at any point then the reference topic would be removed and only recreated if a value is appended that can be converted.
  9. BINARY to TIME_SERIES, and vice-versa is supported in the same way as for other time series conversions.

Separator clause

Views can use the scalar and expand directives in path mappings to extract text from the source value. By default, any / characters in the text are interpreted as path separators and will introduce extra levels in reference topic paths. If this is undesirable, the optional separator clause can be used to replace any / characters produced by the scalar and expand directives with a constant string. The replacement can contain path separators but must have no empty path segments (//).

Here is an example replacing all path separators with an alternate character:

map ?a/path/ to b/<scalar(/x/y)> separator '%'

If the value at /x/y in the source topic was foo/bar, this would cause the reference topic to be created at /b/foo%bar instead of /b/foo/bar.

Escaping and quoting special characters

Each part of a topic view expression has characters with special significance. Source topic clauses and path mapping clauses are delimited by white space. Directives in path and topic property mapping clauses are delimited by the < and > characters, and each directive parameter is terminated by , or ). Topic property mapping clauses are delimited by white space, and the : and , characters.

Sometimes a topic view must refer to or generate topics with paths that containing special characters, or use a JSON pointer containing special characters. The escape sequence \x can be used to literally insert any character x, with a one exception: \/ cannot be used in path fragments since the path delimiter / is always significant.

Here is an example topic view expression containing escape sequences. It maps the topic path a topic a reference topic with the path another topic.

map a\ topic to another\ topic

Here is an example with a source value directive that uses the JSON pointer /x()/y to extract the target path from the source value. The ) character in the JSON pointer must be escaped so it is not treated as the end of the parameter list.

map ?a// to <scalar(/x(\)/y)>

To insert \, the escape sequence \\ must be used.

There is no need to escape white space in JSON pointers directive parameters. However, white space is significant. For example, the following expressions have different topic value mapping clauses since the JSON pointer in the second expression is "/x "; that is, it has a trailing space:

  map a to b as <value(/x)>
  map a to b as <value(/x )>

Instead of using escape sequences, white space characters can be included in source topic clauses and path mapping clauses using quotes. A clause is quoted by wrapping it in single quote (') or double quote (") characters. For example:

map "a topic" to "another topic"

Within a quoted clause, quotes of the same type must be escaped:

map 'alice\'s topic' to 'bob\'s topic'

For consistency, the values in topic property mapping clauses can be escaped or quoted. However, there is no need to do so because none of the valid values for the mappable properties contain special characters.

Dealing with topic path conflicts

Reference topics have a lower priority than normal topics created through the API, including replicas of normal topics created by topic replication or fan-out. A reference topic will only be created if no topic or reference topic is already bound to its derived topic path.

Topic views have a precedence based on order of creation. If two topic views define mappings the same topic path, the earliest-created topic view will create a reference topic. If a topic view is updated, it retains its original precedence.

Remote topic views

A remote topic view is one that specifies another server as the location of the source topics using the from clause as shown in the example below:

  map ?a// from server1 to b/<path(1)>

The server name server1 in this example refers to the name of a remote server created using the RemoteServers feature.

In this case, upon establishing a successful connection with the remote server indicated the topic view will create reference topics locally based upon the topics selected by the topic view's selector at the remote server. It is important to note that the selector only refers to topics that match it at the remote server and not on the local server and there is no reason why there could not be a source topic at the remote server that has the same path as an entirely different topic on the local server.

More than one topic view can specify the same remote server.

A remote server only makes a physical connection when it is in use, therefore the first topic view that specifies a remote server will cause it to establish a connection. Similarly, if the last topic view that uses a remote server is removed then the connection will be closed.

It is not necessary for the named remote server definition to exist before creating the topic view, as if it does not then the topic view will simply remain dormant until the remote server is created and a successful connection to the server specified in its URL is established. Similarly, if a remote server that is in use by remote topic views is removed then all of the reference topics created by the topic views will be removed and the topic views will become dormant until the named remote server is created again or the views are changed to name a different remote server.

If a remote topic view selects a ROUTING topic at the remote server then local mappings will only be performed if the routing topic mapping at the remote server is able to establish a mapping for the remote server connection. The mapping will be done as if from the resolved routing topic.

The rules of precedence for remote topic views are the same as for other topic views. If the remote server for a remote topic view does not exist or does not have an established connection then the remote topic view is not evaluated (i.e. it is as if the source topics for the view did not exist), but if the remote server later connects then the view will be evaluated and rules of precedence will determine whether reference topic will replace those created by earlier views.

Topic view persistence and replication

Reference topics are neither replicated nor persisted. They are created and removed based on their source topics. However, topic views are replicated and persisted. A server that restarts will restore topic views during recovery. Each topic view will then create reference topics based on the source topics that have been recovered.

The server records all changes to topic views in a persistent store. Topic views are restored if the server is started.

If a server belongs to a cluster, topic views (and remote servers) will be replicated to each server in the cluster. Topic views are evaluated locally within a server. Replicated topic views that select non-replicated source topics can create different reference topics on each server in the cluster. When remote topic views are in use, each server in the cluster will make a connection to the specified remote server and will separately manage their remote topic views.

Access control

The following access control restrictions are applied:

  • To list the topic views, a session needs the READ_TOPIC_VIEWS global permission.

  • To create, replace, or remove a topic view, a session needs the MODIFY_TOPIC_VIEWS global permission and SELECT_TOPIC permission for the path prefix of the source topic selector.

  • Each topic view records the principal and security roles of the session that created it as the topic view security context. When a topic view is evaluated, this security context is used to constrain the creation of reference topics. A reference topic will only be created if the security context has READ_TOPIC permission for the source topic path, and MODIFY_TOPIC permission for the reference topic path. The topic view security context is copied from the creating session at the time the topic view is created or replaced, and is persisted with the topic view. The topic view security context is not updated if the roles associated with the session are changed.

Typedef Documentation

Structure describing a request to create a topic view.

If the name is empty, the operation will fail.

typedef int(* on_topic_view_created_cb)(const DIFFUSION_TOPIC_VIEW_T *topic_view, void *context)

Callback when a topic view has successfully been created.

Parameters
topic_viewThe created topic view.
contextUser supplied context.
Returns
HANDLERS_SUCCESS or HANDLER_FAILURE.
typedef int(* on_topic_view_response_cb)(void *context)

Callback when a response is received from the server regarding a topic view operation.

Parameters
contextUser supplied context.
Returns
HANDLERS_SUCCESS or HANDLER_FAILURE.
typedef int(* on_topic_views_list_cb)(const LIST_T *topic_views, void *context)

Callback when a response is received from the server regarding a diffusion_topic_views_list_topic_views operation.

Parameters
topic_viewsA LIST_T containing DIFFUSION_TOPIC_VIEW_Ts
contextUser supplied context.
Returns
HANDLERS_SUCCESS or HANDLER_FAILURE.