tucana 0.0.10 → 0.0.12
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 +4 -4
- data/lib/tucana/aquila/action_execute_pb.rb +21 -0
- data/lib/tucana/aquila/action_execute_services_pb.rb +38 -0
- data/lib/tucana/aquila/transfer_pb.rb +3 -1
- data/lib/tucana/aquila/transfer_services_pb.rb +1 -0
- data/lib/tucana/sagittarius/datatype_pb.rb +20 -0
- data/lib/tucana/sagittarius/datatype_services_pb.rb +24 -0
- data/lib/tucana/shared/datatype_definition_pb.rb +23 -0
- data/lib/tucana/shared/translations_pb.rb +17 -0
- data/lib/tucana/version.rb +1 -1
- metadata +12 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3ef1f127ef3b0455476d0f345874cee9244cfcc24b4255374ffe7e559c249340
|
4
|
+
data.tar.gz: cdbfc20838fdddc2fc98ebbf6f10997eaeef437db7aaaec36a32c24c5419dbd2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a47a9fdb2ade0c2773e2405e0d55a2e134bbf049599ca04d28911d82a16bfde3afb6bca7b4ab48471143c37ba97fa127a08e2ae75185f090f1c5db5319fc876
|
7
|
+
data.tar.gz: 41ad4cd1af0ce1055510482136cb039433651ef13fc8d2427ab160f13e3eac0d2afd9ee996e21f82ce89dfe63c3ed6c2c4bdc66ebd9c41598263b862e81f7d89
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: action_execute.proto
|
4
|
+
|
5
|
+
require 'google/protobuf'
|
6
|
+
|
7
|
+
|
8
|
+
descriptor_data = "\n\x14\x61\x63tion_execute.proto\x12\x06\x61quila\";\n\x11\x41\x63tionCallRequest\x12\x12\n\nidentifier\x18\x01 \x01(\t\x12\x12\n\nparameters\x18\x02 \x03(\t\"2\n\x12\x41\x63tionCallResponse\x12\x1c\n\x14\x65xecution_identifier\x18\x01 \x01(\t\"\x1e\n\x0c\x41\x63tionResult\x12\x0e\n\x06result\x18\x01 \x03(\t\"3\n\x13\x41\x63tionResultRequest\x12\x1c\n\x14\x65xecution_identifier\x18\x01 \x01(\t\"Z\n\x14\x41\x63tionResultResponse\x12\x30\n\raction_result\x18\x01 \x01(\x0b\x32\x14.aquila.ActionResultH\x00\x88\x01\x01\x42\x10\n\x0e_action_result2R\n\x11\x41\x63tionCallService\x12=\n\x04\x43\x61ll\x12\x19.aquila.ActionCallRequest\x1a\x1a.aquila.ActionCallResponse2]\n\x13\x41\x63tionResultService\x12\x46\n\tGetResult\x12\x1b.aquila.ActionResultRequest\x1a\x1c.aquila.ActionResultResponseB\x11\xea\x02\x0eTucana::Aquilab\x06proto3"
|
9
|
+
|
10
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
11
|
+
pool.add_serialized_file(descriptor_data)
|
12
|
+
|
13
|
+
module Tucana
|
14
|
+
module Aquila
|
15
|
+
ActionCallRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.ActionCallRequest").msgclass
|
16
|
+
ActionCallResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.ActionCallResponse").msgclass
|
17
|
+
ActionResult = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.ActionResult").msgclass
|
18
|
+
ActionResultRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.ActionResultRequest").msgclass
|
19
|
+
ActionResultResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.ActionResultResponse").msgclass
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: action_execute.proto for package 'Tucana.Aquila'
|
3
|
+
|
4
|
+
require 'grpc'
|
5
|
+
require_relative 'action_execute_pb'
|
6
|
+
|
7
|
+
module Tucana
|
8
|
+
module Aquila
|
9
|
+
module ActionCallService
|
10
|
+
class Service
|
11
|
+
|
12
|
+
include ::GRPC::GenericService
|
13
|
+
|
14
|
+
self.marshal_class_method = :encode
|
15
|
+
self.unmarshal_class_method = :decode
|
16
|
+
self.service_name = 'aquila.ActionCallService'
|
17
|
+
|
18
|
+
rpc :Call, ::Tucana::Aquila::ActionCallRequest, ::Tucana::Aquila::ActionCallResponse
|
19
|
+
end
|
20
|
+
|
21
|
+
Stub = Service.rpc_stub_class
|
22
|
+
end
|
23
|
+
module ActionResultService
|
24
|
+
class Service
|
25
|
+
|
26
|
+
include ::GRPC::GenericService
|
27
|
+
|
28
|
+
self.marshal_class_method = :encode
|
29
|
+
self.unmarshal_class_method = :decode
|
30
|
+
self.service_name = 'aquila.ActionResultService'
|
31
|
+
|
32
|
+
rpc :GetResult, ::Tucana::Aquila::ActionResultRequest, ::Tucana::Aquila::ActionResultResponse
|
33
|
+
end
|
34
|
+
|
35
|
+
Stub = Service.rpc_stub_class
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -7,7 +7,7 @@ require 'google/protobuf'
|
|
7
7
|
require_relative '../shared/definitions_pb'
|
8
8
|
|
9
9
|
|
10
|
-
descriptor_data = "\n\x0etransfer.proto\x12\x06\x61quila\x1a\x11\x64\x65\x66initions.proto\"\xaa\x01\n\x12InformationRequest\x12\x12\n\nidentifier\x18\x01 \x01(\t\x12>\n\x13\x66unction_definition\x18\x02 \x03(\x0b\x32!.shared.RuntimeFunctionDefinition\x12@\n\x14parameter_definition\x18\x03 \x03(\x0b\x32\".shared.RuntimeParameterDefinition\"&\n\x13InformationResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\
|
10
|
+
descriptor_data = "\n\x0etransfer.proto\x12\x06\x61quila\x1a\x11\x64\x65\x66initions.proto\"\xaa\x01\n\x12InformationRequest\x12\x12\n\nidentifier\x18\x01 \x01(\t\x12>\n\x13\x66unction_definition\x18\x02 \x03(\x0b\x32!.shared.RuntimeFunctionDefinition\x12@\n\x14parameter_definition\x18\x03 \x03(\x0b\x32\".shared.RuntimeParameterDefinition\"&\n\x13InformationResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\"e\n\x14\x41\x63tionExecuteRequest\x12\x1c\n\x14\x65xecution_identifier\x18\x01 \x01(\t\x12\x1b\n\x13\x66unction_identifier\x18\x02 \x01(\t\x12\x12\n\nparameters\x18\x03 \x03(\t\"E\n\x15\x41\x63tionExecuteResponse\x12\x1c\n\x14\x65xecution_identifier\x18\x01 \x01(\t\x12\x0e\n\x06result\x18\x02 \x03(\t2\xaa\x01\n\x15\x41\x63tionTransferService\x12\x45\n\x08Transfer\x12\x1a.aquila.InformationRequest\x1a\x1b.aquila.InformationResponse(\x01\x12J\n\x07\x45xecute\x12\x1c.aquila.ActionExecuteRequest\x1a\x1d.aquila.ActionExecuteResponse(\x01\x30\x01\x42\x11\xea\x02\x0eTucana::Aquilab\x06proto3"
|
11
11
|
|
12
12
|
pool = Google::Protobuf::DescriptorPool.generated_pool
|
13
13
|
pool.add_serialized_file(descriptor_data)
|
@@ -16,5 +16,7 @@ module Tucana
|
|
16
16
|
module Aquila
|
17
17
|
InformationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.InformationRequest").msgclass
|
18
18
|
InformationResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.InformationResponse").msgclass
|
19
|
+
ActionExecuteRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.ActionExecuteRequest").msgclass
|
20
|
+
ActionExecuteResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.ActionExecuteResponse").msgclass
|
19
21
|
end
|
20
22
|
end
|
@@ -16,6 +16,7 @@ module Tucana
|
|
16
16
|
self.service_name = 'aquila.ActionTransferService'
|
17
17
|
|
18
18
|
rpc :Transfer, stream(::Tucana::Aquila::InformationRequest), ::Tucana::Aquila::InformationResponse
|
19
|
+
rpc :Execute, stream(::Tucana::Aquila::ActionExecuteRequest), stream(::Tucana::Aquila::ActionExecuteResponse)
|
19
20
|
end
|
20
21
|
|
21
22
|
Stub = Service.rpc_stub_class
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: datatype.proto
|
4
|
+
|
5
|
+
require 'google/protobuf'
|
6
|
+
|
7
|
+
require_relative '../shared/datatype_definition_pb'
|
8
|
+
|
9
|
+
|
10
|
+
descriptor_data = "\n\x0e\x64\x61tatype.proto\x12\x0bsagittarius\x1a\x19\x64\x61tatype_definition.proto\"=\n\x15\x44\x61taTypeUpdateRequest\x12$\n\ndata_types\x18\x01 \x03(\x0b\x32\x10.shared.DataType\")\n\x16\x44\x61taTypeUpdateResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\x32\x66\n\x0f\x44\x61taTypeService\x12S\n\x06Update\x12\".sagittarius.DataTypeUpdateRequest\x1a#.sagittarius.DataTypeUpdateResponse\"\x00\x42\x16\xea\x02\x13Tucana::Sagittariusb\x06proto3"
|
11
|
+
|
12
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
14
|
+
|
15
|
+
module Tucana
|
16
|
+
module Sagittarius
|
17
|
+
DataTypeUpdateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.DataTypeUpdateRequest").msgclass
|
18
|
+
DataTypeUpdateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.DataTypeUpdateResponse").msgclass
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: datatype.proto for package 'Tucana.Sagittarius'
|
3
|
+
|
4
|
+
require 'grpc'
|
5
|
+
require_relative 'datatype_pb'
|
6
|
+
|
7
|
+
module Tucana
|
8
|
+
module Sagittarius
|
9
|
+
module DataTypeService
|
10
|
+
class Service
|
11
|
+
|
12
|
+
include ::GRPC::GenericService
|
13
|
+
|
14
|
+
self.marshal_class_method = :encode
|
15
|
+
self.unmarshal_class_method = :decode
|
16
|
+
self.service_name = 'sagittarius.DataTypeService'
|
17
|
+
|
18
|
+
rpc :Update, ::Tucana::Sagittarius::DataTypeUpdateRequest, ::Tucana::Sagittarius::DataTypeUpdateResponse
|
19
|
+
end
|
20
|
+
|
21
|
+
Stub = Service.rpc_stub_class
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: datatype_definition.proto
|
4
|
+
|
5
|
+
require 'google/protobuf'
|
6
|
+
|
7
|
+
require 'google/protobuf/any_pb'
|
8
|
+
require_relative '../shared/translations_pb'
|
9
|
+
|
10
|
+
|
11
|
+
descriptor_data = "\n\x19\x64\x61tatype_definition.proto\x12\x06shared\x1a\x19google/protobuf/any.proto\x1a\x12translations.proto\"\x8d\x03\n\x08\x44\x61taType\x12)\n\x07variant\x18\x01 \x01(\x0e\x32\x18.shared.DataType.Variant\x12!\n\x04name\x18\x02 \x03(\x0b\x32\x13.shared.Translation\x12#\n\x05rules\x18\x03 \x03(\x0b\x32\x14.shared.DataTypeRule\x12%\n\x0binput_types\x18\x04 \x03(\x0b\x32\x10.shared.DataType\x12*\n\x0breturn_type\x18\x05 \x01(\x0b\x32\x10.shared.DataTypeH\x00\x88\x01\x01\x12*\n\x0bparent_type\x18\x06 \x01(\x0b\x32\x10.shared.DataTypeH\x01\x88\x01\x01\"o\n\x07Variant\x12\x0b\n\x07UNKNOWN\x10\x00\x12\r\n\tPRIMITIVE\x10\x01\x12\x08\n\x04TYPE\x10\x02\x12\n\n\x06OBJECT\x10\x03\x12\x0c\n\x08\x44\x41TATYPE\x10\x04\x12\t\n\x05\x41RRAY\x10\x05\x12\x0b\n\x07GENERIC\x10\x06\x12\x0c\n\x08\x46UNCTION\x10\x07\x42\x0e\n\x0c_return_typeB\x0e\n\x0c_parent_type\"\xa6\x02\n\x0c\x44\x61taTypeRule\x12-\n\x07variant\x18\x01 \x01(\x0e\x32\x1c.shared.DataTypeRule.Variant\x12\x30\n\x06\x63onfig\x18\x02 \x03(\x0b\x32 .shared.DataTypeRule.ConfigEntry\x1a\x43\n\x0b\x43onfigEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12#\n\x05value\x18\x02 \x01(\x0b\x32\x14.google.protobuf.Any:\x02\x38\x01\"p\n\x07Variant\x12\x0b\n\x07UNKNOWN\x10\x00\x12\t\n\x05REGEX\x10\x01\x12\x10\n\x0cNUMBER_RANGE\x10\x02\x12\x16\n\x12ITEM_OF_COLLECTION\x10\x03\x12\x11\n\rCONTAINS_TYPE\x10\x04\x12\x10\n\x0c\x43ONTAINS_KEY\x10\x05\x42\x11\xea\x02\x0eTucana::Sharedb\x06proto3"
|
12
|
+
|
13
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
14
|
+
pool.add_serialized_file(descriptor_data)
|
15
|
+
|
16
|
+
module Tucana
|
17
|
+
module Shared
|
18
|
+
DataType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("shared.DataType").msgclass
|
19
|
+
DataType::Variant = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("shared.DataType.Variant").enummodule
|
20
|
+
DataTypeRule = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("shared.DataTypeRule").msgclass
|
21
|
+
DataTypeRule::Variant = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("shared.DataTypeRule.Variant").enummodule
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: translations.proto
|
4
|
+
|
5
|
+
require 'google/protobuf'
|
6
|
+
|
7
|
+
|
8
|
+
descriptor_data = "\n\x12translations.proto\x12\x06shared\")\n\x0bTranslation\x12\x0c\n\x04\x63ode\x18\x01 \x01(\t\x12\x0c\n\x04text\x18\x02 \x01(\tB\x11\xea\x02\x0eTucana::Sharedb\x06proto3"
|
9
|
+
|
10
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
11
|
+
pool.add_serialized_file(descriptor_data)
|
12
|
+
|
13
|
+
module Tucana
|
14
|
+
module Shared
|
15
|
+
Translation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("shared.Translation").msgclass
|
16
|
+
end
|
17
|
+
end
|
data/lib/tucana/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tucana
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Niklas van Schrick
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -66,7 +66,7 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '3.0'
|
69
|
-
description:
|
69
|
+
description:
|
70
70
|
email:
|
71
71
|
- mc.taucher2003@gmail.com
|
72
72
|
executables: []
|
@@ -74,17 +74,23 @@ extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
76
|
- lib/tucana.rb
|
77
|
+
- lib/tucana/aquila/action_execute_pb.rb
|
78
|
+
- lib/tucana/aquila/action_execute_services_pb.rb
|
77
79
|
- lib/tucana/aquila/transfer_pb.rb
|
78
80
|
- lib/tucana/aquila/transfer_services_pb.rb
|
79
81
|
- lib/tucana/sagittarius/action_pb.rb
|
80
82
|
- lib/tucana/sagittarius/action_services_pb.rb
|
83
|
+
- lib/tucana/sagittarius/datatype_pb.rb
|
84
|
+
- lib/tucana/sagittarius/datatype_services_pb.rb
|
81
85
|
- lib/tucana/sagittarius/flow_definition_pb.rb
|
82
86
|
- lib/tucana/sagittarius/flow_pb.rb
|
83
87
|
- lib/tucana/sagittarius/flow_services_pb.rb
|
84
88
|
- lib/tucana/sagittarius/node_pb.rb
|
85
89
|
- lib/tucana/sagittarius/ping_pb.rb
|
86
90
|
- lib/tucana/sagittarius/ping_services_pb.rb
|
91
|
+
- lib/tucana/shared/datatype_definition_pb.rb
|
87
92
|
- lib/tucana/shared/definitions_pb.rb
|
93
|
+
- lib/tucana/shared/translations_pb.rb
|
88
94
|
- lib/tucana/version.rb
|
89
95
|
homepage: https://github.com/code0-tech/tucana
|
90
96
|
licenses:
|
@@ -94,7 +100,7 @@ metadata:
|
|
94
100
|
source_code_uri: https://github.com/code0-tech/tucana
|
95
101
|
changelog_uri: https://github.com/code0-tech/tucana/releases
|
96
102
|
rubygems_mfa_required: 'true'
|
97
|
-
post_install_message:
|
103
|
+
post_install_message:
|
98
104
|
rdoc_options: []
|
99
105
|
require_paths:
|
100
106
|
- lib
|
@@ -110,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
116
|
version: '0'
|
111
117
|
requirements: []
|
112
118
|
rubygems_version: 3.4.10
|
113
|
-
signing_key:
|
119
|
+
signing_key:
|
114
120
|
specification_version: 4
|
115
121
|
summary: Code0 GRPC Protocol.
|
116
122
|
test_files: []
|