Created
September 22, 2016 16:41
-
-
Save jbuchbinder/1f8040005948e40ed3fde553a6b63717 to your computer and use it in GitHub Desktop.
Tungsten Replicator Javascript filter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* VMware Continuent Tungsten Replicator | |
* Copyright (C) 2015 VMware, Inc. All rights reserved. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, | |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
* See the License for the specific language governing permissions and | |
* limitations under the License. | |
* | |
* Does not replicate DELETE events. | |
* | |
* Example of how to define one in replicator.properties: | |
* | |
* replicator.filter.insertsonly=com.continuent.tungsten.replicator.filter.JavaScriptFilter | |
* replicator.filter.insertsonly.script=../support/filters-javascript/nodelete.js | |
*/ | |
/** | |
* Called on every filtered event. See replicator's javadoc for more details | |
* on accessible classes. Also, JavaScriptFilter's javadoc contains description | |
* about how to define a script like this. | |
* | |
* @param event Filtered com.continuent.tungsten.replicator.event.ReplDBMSEvent | |
* | |
* @see com.continuent.tungsten.replicator.filter.JavaScriptFilter | |
* @see com.continuent.tungsten.replicator.event.ReplDBMSEvent | |
* @see com.continuent.tungsten.replicator.dbms.DBMSData | |
* @see com.continuent.tungsten.replicator.dbms.StatementData | |
* @see com.continuent.tungsten.replicator.dbms.RowChangeData | |
* @see com.continuent.tungsten.replicator.dbms.OneRowChange | |
* @see com.continuent.tungsten.replicator.dbms.RowChangeData.ActionType | |
* @see com.continuent.tungsten.replicator.thl.THLManagerCtrl#printRowChangeData(StringBuilder, RowChangeData, String, boolean, int) | |
* @see java.lang.Thread | |
* @see org.apache.log4j.Logger | |
*/ | |
function filter(event) | |
{ | |
// Analyse what this event is holding. | |
data = event.getData(); | |
// One ReplDBMSEvent may contain many DBMSData events. | |
for(i=0;i<data.size();i++) | |
{ | |
// Get com.continuent.tungsten.replicator.dbms.DBMSData | |
d = data.get(i); | |
// Determine the underlying type of DBMSData event. | |
if(d instanceof com.continuent.tungsten.replicator.dbms.StatementData) | |
{ | |
// It's a SQL statement event. | |
// Log the query into replicator's log. | |
logger.info("StatementData: " + d.getQuery()); | |
// It's a SQL statement event - search & remove comments. | |
sqlOriginal = d.getQuery(); | |
if(sqlOriginal.toUpperCase().startsWith("DELETE FROM")) { | |
data.remove(i); | |
logger.debug("nodeletes: removed statement: " + d.getQuery()); | |
// As we removed the array element all other ones came closer to us: | |
i--; | |
} | |
} | |
else if(d instanceof com.continuent.tungsten.replicator.dbms.RowChangeData) | |
{ | |
// It's a row change event. | |
logger.info("RowChangeData:"); | |
rowChanges = data.get(i).getRowChanges(); | |
// One RowChangeData may contain many OneRowChange events. | |
for(j=0;j<rowChanges.size();j++) | |
{ | |
// Get com.continuent.tungsten.replicator.dbms.OneRowChange | |
oneRowChange = rowChanges.get(j); | |
// Log action (INSERT, UPDATE, DELETE). | |
logger.info(oneRowChange.getAction()); | |
// Skip any events that are DELETESs. | |
if(oneRowChange.getAction() == "DELETE") | |
{ | |
rowChanges.remove(j); | |
logger.info("Removed DELETE row change event @ " + j); | |
// As we removed the array element all other ones came closer to us: | |
j--; | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment