summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2017-05-31 16:28:52 -0400
committerPeter LaFosse <peter@vector35.com>2017-05-31 16:28:52 -0400
commit26c2df9ace8ce372ad14e114edd0c2713c033f67 (patch)
treee9d48e82d38634b789e8d6e668a603a0e2b56b11 /python
parent74a7c69b0a16ae55659a8824d90aacc058321319 (diff)
Example implementing notification callbacks
Diffstat (limited to 'python')
-rw-r--r--python/examples/notification_callbacks.py51
1 files changed, 51 insertions, 0 deletions
diff --git a/python/examples/notification_callbacks.py b/python/examples/notification_callbacks.py
new file mode 100644
index 00000000..b7c9cde9
--- /dev/null
+++ b/python/examples/notification_callbacks.py
@@ -0,0 +1,51 @@
+from binaryninja import BinaryDataNotification, PluginCommand, log_info
+import inspect
+
+def reg_notif(view):
+ demo_notification = DemoNotification(view)
+ view.register_notification(demo_notification)
+
+class DemoNotification(BinaryDataNotification):
+ def __init__(self, view):
+ self.view = view
+
+ def data_written(self, *args):
+ log_info(inspect.stack()[0][3] + str(args))
+
+ def data_inserted(self, *args):
+ log_info(inspect.stack()[0][3] + str(args))
+
+ def data_removed(self, *args):
+ log_info(inspect.stack()[0][3] + str(args))
+
+ def function_added(self, *args):
+ log_info(inspect.stack()[0][3] + str(args))
+
+ def function_removed(self, *args):
+ log_info(inspect.stack()[0][3] + str(args))
+
+ def function_updated(self, *args):
+ log_info(inspect.stack()[0][3] + str(args))
+
+ def data_var_added(self, *args):
+ log_info(inspect.stack()[0][3] + str(args))
+
+ def data_var_updated(self, *args):
+ log_info(inspect.stack()[0][3] + str(args))
+
+ def data_var_removed(self, *args):
+ log_info(inspect.stack()[0][3] + str(args))
+
+ def string_found(self, *args):
+ log_info(inspect.stack()[0][3] + str(args))
+
+ def string_removed(self, *args):
+ log_info(inspect.stack()[0][3] + str(args))
+
+ def type_defined(self, *args):
+ log_info(inspect.stack()[0][3] + str(args))
+
+ def type_undefined(self, *args):
+ log_info(inspect.stack()[0][3] + str(args))
+
+PluginCommand.register("Register Notification", "", reg_notif)