/ ext / ssdeep /
ext/ssdeep/ruby-ssdeep.c
1 #include "ruby.h"
2 #include <stdint.h>
3 #include "fuzzy.h"
4
5 static VALUE ssdeep_compare(VALUE module, VALUE h1, VALUE h2)
6 {
7 int n;
8
9 Check_Type(h1, T_STRING);
10 Check_Type(h2, T_STRING);
11
12 n = fuzzy_compare(RSTRING(h1)->ptr, RSTRING(h2)->ptr);
13 if (n == -1)
14 rb_raise(rb_eRuntimeError, "Error while comparing hashes");
15 return (INT2FIX(n));
16 }
17
18 static VALUE ssdeep_hash_buf(VALUE module, VALUE buf)
19 {
20 char hash[FUZZY_MAX_RESULT];
21
22 Check_Type(buf, T_STRING);
23
24 if (fuzzy_hash_buf(RSTRING(buf)->ptr, RSTRING(buf)->len, hash))
25 rb_raise(rb_eRuntimeError, "Error while fuzzy hashing");
26
27 return rb_str_new2(hash);
28 }
29
30 static VALUE ssdeep_hash_filename(VALUE module, VALUE path)
31 {
32 char hash[FUZZY_MAX_RESULT];
33
34 Check_Type(path, T_STRING);
35
36 if (fuzzy_hash_filename(RSTRING(path)->ptr, hash))
37 rb_raise(rb_eRuntimeError, "Error while fuzzy hashing");;
38
39 return rb_str_new2(hash);
40 }
41
42 void Init_ssdeep()
43 {
44 VALUE mSsdeep;
45 mSsdeep = rb_define_module("Ssdeep");
46 rb_define_module_function(mSsdeep, "fuzzy_compare", ssdeep_compare, 2);
47 rb_define_module_function(mSsdeep, "fuzzy_hash_buf", ssdeep_hash_buf, 1);
48 rb_define_module_function(mSsdeep, "fuzzy_hash_filename", ssdeep_hash_filename, 1);
49 }