In any filter, you can always depend on the following objects being defined.
Keep in mind that JavaScript objects should not be stored beyond the invocation of a filter, except in the thread context (see JavaScript environment for details).
This is the context in which a filter gets invoked. Any variables or functions you define in this context will be thrown away once the filter returns.
packet: the packet or token being filtered. The exact nature of this packet depends on the filter's circumstances. You can always get the type of the packet using the packetType property.
filterContext: see below
threadContext: see below
connectionContext: see below
projectContext: see below
let pkt = context.packet;
if (pkt.packetType === "Row" || pkt.packetType === "NBCRow") {
let fullName = context.packet.first_name + " " + context.packet.last_name;
}
This context is shared by all invocations of the filter.
There may be one or more variable defined in this context with a name that starts with an underscore. These are internal variables and should not be used.
You can define additional variables to store data that would be useful to subsequent invocations of this filter.
let startTime = context.filterContext.startTime;
if ( ! startTime) {
startTime = (new Date()).getTime();
context.filterContext.startTime = startTime;
}
This context is shared by all logic invoked during the lifetime of the connection from the database client.
clientIP: the IP address of the client, e.g. /23.45.67.89 or /2600:1701:6920:69a0:17:986a:da7a:c12a
userName: the name of the database user. When using user ID/password authentication, this is usually a simple name, e.g. jdoe. When using other authentication mechanisms, the user name may not be available.
lastSQL: the last SQL to be executed on this connection
let sql = context.connectionContext.lastSQL;
if ( ! sql.toLowerCase().startsWith("select")) {
log.debug("Non-select SQL statement: " + sql);
}
This context is as close as you can get to "global" variables. It is shared by all filters within a project.
None
This is a special context that is only shared by invocations of various filters that happen to be on the same Java thread. Anything stored in this context is thrown away when the thread is terminated, which can happen at any time between filter invocations. This context can be useful when dealing with non-thread-safe objects.
None
let startDate = context.threadContext.startDate;
if ( ! startDate) {
startDate = new Date();
// Note that we are storing a JavaScript object (Date), which is OK only in threadContext.
context.threadContext.startDate = startDate;
}