summaryrefslogtreecommitdiff
path: root/jni/ruby/tool/gen_dummy_probes.rb
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/tool/gen_dummy_probes.rb
Fresh start
Diffstat (limited to 'jni/ruby/tool/gen_dummy_probes.rb')
-rwxr-xr-xjni/ruby/tool/gen_dummy_probes.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/jni/ruby/tool/gen_dummy_probes.rb b/jni/ruby/tool/gen_dummy_probes.rb
new file mode 100755
index 0000000..c19f9d5
--- /dev/null
+++ b/jni/ruby/tool/gen_dummy_probes.rb
@@ -0,0 +1,28 @@
+#!/usr/bin/ruby
+# -*- coding: us-ascii -*-
+
+text = ARGF.read
+text.gsub!(/^(?!#)(.*)/){$1.upcase}
+
+# remove comments
+text.gsub!(%r'(?:^ *)?/\*.*?\*/\n?'m, '')
+
+# remove the pragma declarations
+text.gsub!(/^#pragma.*\n/, '')
+
+# replace the provider section with the start of the header file
+text.gsub!(/PROVIDER RUBY \{/, "#ifndef\t_PROBES_H\n#define\t_PROBES_H\n#define DTRACE_PROBES_DISABLED 1\n")
+
+# finish up the #ifndef sandwich
+text.gsub!(/\};/, "\n#endif\t/* _PROBES_H */")
+
+text.gsub!(/__/, '_')
+
+text.gsub!(/\((.+?)(?=\);)/) {
+ "(arg" << (0..$1.count(',')).to_a.join(", arg")
+}
+
+text.gsub!(/ *PROBE ([^\(]*)(\([^\)]*\));/, "#define RUBY_DTRACE_\\1_ENABLED() 0\n#define RUBY_DTRACE_\\1\\2\ do \{ \} while\(0\)")
+puts "/* -*- c -*- */"
+print text
+