self_msgproto 0.0.4 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0857c1696c3c5ce7f1bd22f0ecc8bf9393758e2fe7da6007e360a5671d4d47d4'
4
- data.tar.gz: 752789bf93fef19f6da65f5e904c8653b5fd095c579adf98ee61cf2499c69ee5
3
+ metadata.gz: cab7cc6b6f6a48df982c1ee3d9b170e85cfd55178f79bdab9e6ced5676f52199
4
+ data.tar.gz: 88f152ebe1b13969258c96be8d1fb98036a51509957e236bdf2ece2a15c18389
5
5
  SHA512:
6
- metadata.gz: a62825acfee718518cbe3f34514089094358607ab17219b3fa6f6eeac878d246bd75b397ea5b1215587dcba622fe818df9d28a139918a12356aaeff4b2034d43
7
- data.tar.gz: 43b65bce4e69770a0d342105834feb839654231be5ab7bd6b35c2feb8d9dedae772988e61e147bbc32d441a54e6b9043555aa82d809bc60f78680b72913ce2fe
6
+ metadata.gz: 7903916cb4d14f524c312b582b92b19d18094a582df509ae8e2cb3df8621d2b852dae659d6faf306b6402a4335c96faed5309495e997ee80cb93095baedc1255
7
+ data.tar.gz: 84fa5070a8d235c1e42ca4b8a93407861288b3ccb62ac307dadebb62482055afbdeca52907aaa3bae85341d29a04bc397e1f5de82694715ddc48deb78d50a370
@@ -63,11 +63,21 @@ VALUE acl_to_fb(VALUE self)
63
63
  char *idstr = RSTRING_PTR(idv);
64
64
 
65
65
  VALUE commandv = rb_ivar_get(self, rb_intern("@command"));
66
- uint8_t commandint = NUM2INT(commandv);
66
+ int64_t commandint = NUM2INT(commandv);
67
67
 
68
68
  ACLCommand command;
69
69
 
70
- if (commandint < ACLCommand_MIN || commandint > ACLCommand_MAX) {
70
+ switch(commandint) {
71
+ case 0:
72
+ command = ACLCommand_LIST;
73
+ break;
74
+ case 1:
75
+ command = ACLCommand_PERMIT;
76
+ break;
77
+ case 2:
78
+ command = ACLCommand_REVOKE;
79
+ break;
80
+ default:
71
81
  rb_raise(rb_eStandardError, "acl command is invalid");
72
82
  }
73
83
 
@@ -75,6 +85,7 @@ VALUE acl_to_fb(VALUE self)
75
85
 
76
86
  u_char *payloadstr;
77
87
  long payloadlen;
88
+ flatbuffers::Offset<flatbuffers::Vector<uint8_t>> payload;
78
89
 
79
90
  if (payloadv != Qnil) {
80
91
  payloadstr = (u_char *)RSTRING_PTR(payloadv);
@@ -84,7 +95,10 @@ VALUE acl_to_fb(VALUE self)
84
95
  flatbuffers::FlatBufferBuilder builder(1024);
85
96
 
86
97
  auto id = builder.CreateString(idstr);
87
- auto payload = builder.CreateVector(payloadstr, payloadlen);
98
+
99
+ if (payloadv != Qnil) {
100
+ payload = builder.CreateVector(payloadstr, payloadlen);
101
+ }
88
102
 
89
103
  ACLBuilder acl_builder(builder);
90
104
 
@@ -113,7 +127,7 @@ void acl_init() {
113
127
  VALUE cRubySelfMsg = rb_define_module("SelfMsg");
114
128
  VALUE cAcl = rb_define_class_under(cRubySelfMsg, "Acl", rb_cObject);
115
129
 
116
- rb_define_method(cAcl, "initialize", acl_initialize, -1);
117
- rb_define_method(cAcl, "to_fb", acl_to_fb, 0);
130
+ rb_define_method(cAcl, "initialize", reinterpret_cast< VALUE ( * ) ( ... ) >(acl_initialize), -1);
131
+ rb_define_method(cAcl, "to_fb", reinterpret_cast< VALUE ( * ) ( ... ) >(acl_to_fb), 0);
118
132
  }
119
133
 
@@ -101,7 +101,7 @@ void auth_init() {
101
101
  VALUE cRubySelfMsg = rb_define_module("SelfMsg");
102
102
  VALUE cAuth = rb_define_class_under(cRubySelfMsg, "Auth", rb_cObject);
103
103
 
104
- rb_define_method(cAuth, "initialize", auth_initialize, -1);
105
- rb_define_method(cAuth, "to_fb", auth_to_fb, 0);
104
+ rb_define_method(cAuth, "initialize", reinterpret_cast< VALUE ( * ) ( ... ) >(auth_initialize), -1);
105
+ rb_define_method(cAuth, "to_fb", reinterpret_cast< VALUE ( * ) ( ... ) >(auth_to_fb), 0);
106
106
  }
107
107
 
@@ -48,6 +48,6 @@ void header_init() {
48
48
  VALUE cRubySelfMsg = rb_define_module("SelfMsg");
49
49
  VALUE cHeader = rb_define_class_under(cRubySelfMsg, "Header", rb_cObject);
50
50
 
51
- rb_define_method(cHeader, "initialize", header_initialize, -1);
51
+ rb_define_method(cHeader, "initialize", reinterpret_cast< VALUE ( * ) ( ... ) >(header_initialize), -1);
52
52
  }
53
53
 
@@ -125,7 +125,7 @@ void message_init() {
125
125
  VALUE cRubySelfMsg = rb_define_module("SelfMsg");
126
126
  VALUE cMessage = rb_define_class_under(cRubySelfMsg, "Message", rb_cObject);
127
127
 
128
- rb_define_method(cMessage, "initialize", message_initialize, -1);
129
- rb_define_method(cMessage, "to_fb", message_to_fb, 0);
128
+ rb_define_method(cMessage, "initialize", reinterpret_cast< VALUE ( * ) ( ... ) >(message_initialize), -1);
129
+ rb_define_method(cMessage, "to_fb", reinterpret_cast< VALUE ( * ) ( ... ) >(message_to_fb), 0);
130
130
  }
131
131
 
@@ -54,6 +54,6 @@ void notification_init() {
54
54
  VALUE cRubySelfMsg = rb_define_module("SelfMsg");
55
55
  VALUE cHeader = rb_define_class_under(cRubySelfMsg, "Notification", rb_cObject);
56
56
 
57
- rb_define_method(cHeader, "initialize", notification_initialize, -1);
57
+ rb_define_method(cHeader, "initialize", reinterpret_cast< VALUE ( * ) ( ... ) >(notification_initialize), -1);
58
58
  }
59
59
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module SelfMsg
4
4
 
5
- VERSION="0.0.4"
5
+ VERSION="0.0.8"
6
6
 
7
7
  end
@@ -13,6 +13,9 @@ class TestMessage < Minitest::Test
13
13
  p h.type
14
14
  p h.command
15
15
  p h.payload
16
+
17
+ p h.command = SelfMsg::AclCommandPERMIT
18
+ p h.to_fb
16
19
  end
17
20
 
18
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: self_msgproto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Bevan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-22 00:00:00.000000000 Z
11
+ date: 2021-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rice