Created
March 8, 2016 16:40
-
-
Save krisrice/d8c7be3c7632dbee2aef to your computer and use it in GitHub Desktop.
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
// SQLCL's Command Registry | |
var CommandRegistry = Java.type("oracle.dbtools.raptor.newscriptrunner.CommandRegistry"); | |
// CommandListener for creating any new command | |
var CommandListener = Java.type("oracle.dbtools.raptor.newscriptrunner.CommandListener") | |
// Broke the .js out from the Java.extend to be easier to read | |
var cmd = {}; | |
// Called to attempt to handle any command | |
cmd.handle = function (conn,ctx,cmd) { | |
return false; | |
} | |
// fired before ANY command | |
cmd.begin = function (conn,ctx,cmd) { | |
if ( cmd.getSql().trim().equalsIgnoreCase("select 1 from dual") ) { | |
ctx.write("\nReally? Come on man, Try something harder next time.\n"); | |
} | |
} | |
// fired after ANY Command | |
cmd.end = function (conn,ctx,cmd) { | |
if ( cmd.getSql().trim().equalsIgnoreCase("select 1 from dual") ) { | |
ctx.write("\nWhat'd you really expect???.\n"); | |
} | |
} | |
// Actual Extend of the Java CommandListener | |
var SnarkCommand = Java.extend(CommandListener, { | |
handleEvent: cmd.handle , | |
beginEvent: cmd.begin , | |
endEvent: cmd.end | |
}); | |
// Registering the new Command | |
CommandRegistry.addForAllStmtsListener(SnarkCommand.class); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment