grpc-orin3-provider 0.1.0
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 +7 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +132 -0
- data/LICENSE.txt +21 -0
- data/README.md +74 -0
- data/Rakefile +4 -0
- data/gen/.DS_Store +0 -0
- data/gen/Message.ORiN3.Common/V1/orin3common_pb.rb +77 -0
- data/gen/Message.ORiN3.Provider/V1/orin3baseobject_pb.rb +38 -0
- data/gen/Message.ORiN3.Provider/V1/orin3baseobject_services_pb.rb +37 -0
- data/gen/Message.ORiN3.Provider/V1/orin3child_pb.rb +28 -0
- data/gen/Message.ORiN3.Provider/V1/orin3child_services_pb.rb +32 -0
- data/gen/Message.ORiN3.Provider/V1/orin3childcreator_pb.rb +38 -0
- data/gen/Message.ORiN3.Provider/V1/orin3childcreator_services_pb.rb +37 -0
- data/gen/Message.ORiN3.Provider/V1/orin3controllercreator_pb.rb +28 -0
- data/gen/Message.ORiN3.Provider/V1/orin3controllercreator_services_pb.rb +32 -0
- data/gen/Message.ORiN3.Provider/V1/orin3executable_pb.rb +28 -0
- data/gen/Message.ORiN3.Provider/V1/orin3executable_services_pb.rb +32 -0
- data/gen/Message.ORiN3.Provider/V1/orin3file_pb.rb +41 -0
- data/gen/Message.ORiN3.Provider/V1/orin3file_services_pb.rb +38 -0
- data/gen/Message.ORiN3.Provider/V1/orin3job_pb.rb +32 -0
- data/gen/Message.ORiN3.Provider/V1/orin3job_services_pb.rb +34 -0
- data/gen/Message.ORiN3.Provider/V1/orin3parent_pb.rb +31 -0
- data/gen/Message.ORiN3.Provider/V1/orin3parent_services_pb.rb +33 -0
- data/gen/Message.ORiN3.Provider/V1/orin3resourceopener_pb.rb +30 -0
- data/gen/Message.ORiN3.Provider/V1/orin3resourceopener_services_pb.rb +33 -0
- data/gen/Message.ORiN3.Provider/V1/orin3rootobject_pb.rb +44 -0
- data/gen/Message.ORiN3.Provider/V1/orin3rootobject_services_pb.rb +40 -0
- data/gen/Message.ORiN3.Provider/V1/orin3stream_pb.rb +28 -0
- data/gen/Message.ORiN3.Provider/V1/orin3stream_services_pb.rb +32 -0
- data/gen/Message.ORiN3.Provider/V1/orin3variable_pb.rb +30 -0
- data/gen/Message.ORiN3.Provider/V1/orin3variable_services_pb.rb +33 -0
- data/lib/grpc/orin3/provider/version.rb +9 -0
- data/lib/grpc/orin3/provider.rb +104 -0
- data/sig/grpc/orin3/provider.rbs +8 -0
- metadata +97 -0
@@ -0,0 +1,104 @@
|
|
1
|
+
require_relative "provider/version"
|
2
|
+
require_relative '../../../gen/Message.ORiN3.Common/V1/orin3common_pb'
|
3
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3baseobject_pb'
|
4
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3baseobject_services_pb'
|
5
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3child_pb'
|
6
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3child_services_pb'
|
7
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3childcreator_pb'
|
8
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3childcreator_services_pb'
|
9
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3controllercreator_pb'
|
10
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3controllercreator_services_pb'
|
11
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3executable_pb'
|
12
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3executable_services_pb'
|
13
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3file_pb'
|
14
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3file_services_pb'
|
15
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3job_pb'
|
16
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3job_services_pb'
|
17
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3parent_pb'
|
18
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3parent_services_pb'
|
19
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3resourceopener_pb'
|
20
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3resourceopener_services_pb'
|
21
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3rootobject_pb'
|
22
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3rootobject_services_pb'
|
23
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3stream_pb'
|
24
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3stream_services_pb'
|
25
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3variable_pb'
|
26
|
+
require_relative '../../../gen/Message.ORiN3.Provider/V1/orin3variable_services_pb'
|
27
|
+
|
28
|
+
module ORiN3ValueType
|
29
|
+
ORiN3Bool = 10
|
30
|
+
ORiN3BoolArray = 11
|
31
|
+
ORiN3NullableBool = 12
|
32
|
+
ORiN3NullableBoolArray = 13
|
33
|
+
|
34
|
+
ORiN3Int8 = 20
|
35
|
+
ORiN3Int8Array = 21
|
36
|
+
ORiN3NullableInt8 = 22
|
37
|
+
ORiN3NullableInt8Array = 23
|
38
|
+
|
39
|
+
ORiN3Int16 = 30
|
40
|
+
ORiN3Int16Array = 31
|
41
|
+
ORiN3NullableInt16 = 32
|
42
|
+
ORiN3NullableInt16Array = 33
|
43
|
+
|
44
|
+
ORiN3Int32 = 40
|
45
|
+
ORiN3Int32Array = 41
|
46
|
+
ORiN3NullableInt32 = 42
|
47
|
+
ORiN3NullableInt32Array = 43
|
48
|
+
|
49
|
+
ORiN3Int64 = 50
|
50
|
+
ORiN3Int64Array = 51
|
51
|
+
ORiN3NullableInt64 = 52
|
52
|
+
ORiN3NullableInt64Array = 53
|
53
|
+
|
54
|
+
ORiN3UInt8 = 60
|
55
|
+
ORiN3UInt8Array = 61
|
56
|
+
ORiN3NullableUInt8 = 62
|
57
|
+
ORiN3NullableUInt8Array = 63
|
58
|
+
|
59
|
+
ORiN3UInt16 = 70
|
60
|
+
ORiN3UInt16Array = 71
|
61
|
+
ORiN3NullableUInt16 = 72
|
62
|
+
ORiN3NullableUInt16Array = 73
|
63
|
+
|
64
|
+
ORiN3UInt32 = 80
|
65
|
+
ORiN3UInt32Array = 81
|
66
|
+
ORiN3NullableUInt32 = 82
|
67
|
+
ORiN3NullableUInt32Array = 83
|
68
|
+
|
69
|
+
ORiN3UInt64 = 90
|
70
|
+
ORiN3UInt64Array = 91
|
71
|
+
ORiN3NullableUInt64 = 92
|
72
|
+
ORiN3NullableUInt64Array = 93
|
73
|
+
|
74
|
+
ORiN3Float = 100
|
75
|
+
ORiN3FloatArray = 101
|
76
|
+
ORiN3NullableFloat = 102
|
77
|
+
ORiN3NullableFloatArray = 103
|
78
|
+
|
79
|
+
ORiN3Double = 110
|
80
|
+
ORiN3DoubleArray = 111
|
81
|
+
ORiN3NullableDouble = 112
|
82
|
+
ORiN3NullableDoubleArray = 113
|
83
|
+
|
84
|
+
ORiN3String = 120
|
85
|
+
ORiN3StringArray = 121
|
86
|
+
|
87
|
+
ORiN3DateTime = 130
|
88
|
+
ORiN3DateTimeArray = 131
|
89
|
+
ORiN3NullableDateTime = 132
|
90
|
+
ORiN3NullableDateTimeArray = 133
|
91
|
+
|
92
|
+
ORiN3Object = 140
|
93
|
+
end
|
94
|
+
|
95
|
+
module ORiN3ObjectType
|
96
|
+
ProviderRoot = 0
|
97
|
+
Controller = 1
|
98
|
+
Module = 2
|
99
|
+
Variable = 3
|
100
|
+
File = 4
|
101
|
+
Stream = 5
|
102
|
+
Event = 6
|
103
|
+
Job = 7
|
104
|
+
end
|
metadata
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: grpc-orin3-provider
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- KAKEI Kazuki
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-10-26 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: grpc
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
description: This gem provides a gRPC client to interact with ORiN3 devices, enabling
|
28
|
+
seamless communication and data exchange.
|
29
|
+
email:
|
30
|
+
- kkikzk@gmail.com
|
31
|
+
executables: []
|
32
|
+
extensions: []
|
33
|
+
extra_rdoc_files: []
|
34
|
+
files:
|
35
|
+
- CHANGELOG.md
|
36
|
+
- CODE_OF_CONDUCT.md
|
37
|
+
- LICENSE.txt
|
38
|
+
- README.md
|
39
|
+
- Rakefile
|
40
|
+
- gen/.DS_Store
|
41
|
+
- gen/Message.ORiN3.Common/V1/orin3common_pb.rb
|
42
|
+
- gen/Message.ORiN3.Provider/V1/orin3baseobject_pb.rb
|
43
|
+
- gen/Message.ORiN3.Provider/V1/orin3baseobject_services_pb.rb
|
44
|
+
- gen/Message.ORiN3.Provider/V1/orin3child_pb.rb
|
45
|
+
- gen/Message.ORiN3.Provider/V1/orin3child_services_pb.rb
|
46
|
+
- gen/Message.ORiN3.Provider/V1/orin3childcreator_pb.rb
|
47
|
+
- gen/Message.ORiN3.Provider/V1/orin3childcreator_services_pb.rb
|
48
|
+
- gen/Message.ORiN3.Provider/V1/orin3controllercreator_pb.rb
|
49
|
+
- gen/Message.ORiN3.Provider/V1/orin3controllercreator_services_pb.rb
|
50
|
+
- gen/Message.ORiN3.Provider/V1/orin3executable_pb.rb
|
51
|
+
- gen/Message.ORiN3.Provider/V1/orin3executable_services_pb.rb
|
52
|
+
- gen/Message.ORiN3.Provider/V1/orin3file_pb.rb
|
53
|
+
- gen/Message.ORiN3.Provider/V1/orin3file_services_pb.rb
|
54
|
+
- gen/Message.ORiN3.Provider/V1/orin3job_pb.rb
|
55
|
+
- gen/Message.ORiN3.Provider/V1/orin3job_services_pb.rb
|
56
|
+
- gen/Message.ORiN3.Provider/V1/orin3parent_pb.rb
|
57
|
+
- gen/Message.ORiN3.Provider/V1/orin3parent_services_pb.rb
|
58
|
+
- gen/Message.ORiN3.Provider/V1/orin3resourceopener_pb.rb
|
59
|
+
- gen/Message.ORiN3.Provider/V1/orin3resourceopener_services_pb.rb
|
60
|
+
- gen/Message.ORiN3.Provider/V1/orin3rootobject_pb.rb
|
61
|
+
- gen/Message.ORiN3.Provider/V1/orin3rootobject_services_pb.rb
|
62
|
+
- gen/Message.ORiN3.Provider/V1/orin3stream_pb.rb
|
63
|
+
- gen/Message.ORiN3.Provider/V1/orin3stream_services_pb.rb
|
64
|
+
- gen/Message.ORiN3.Provider/V1/orin3variable_pb.rb
|
65
|
+
- gen/Message.ORiN3.Provider/V1/orin3variable_services_pb.rb
|
66
|
+
- lib/grpc/orin3/provider.rb
|
67
|
+
- lib/grpc/orin3/provider/version.rb
|
68
|
+
- sig/grpc/orin3/provider.rbs
|
69
|
+
homepage: https://github.com/kkikzk/grpc-orin3-provider
|
70
|
+
licenses:
|
71
|
+
- MIT
|
72
|
+
metadata:
|
73
|
+
allowed_push_host: https://rubygems.org
|
74
|
+
homepage_uri: https://github.com/kkikzk/grpc-orin3-provider
|
75
|
+
source_code_uri: https://github.com/kkikzk/grpc-orin3-provider
|
76
|
+
changelog_uri: https://github.com/kkikzk/grpc-orin3-provider/CHANGELOG.md
|
77
|
+
post_install_message:
|
78
|
+
rdoc_options: []
|
79
|
+
require_paths:
|
80
|
+
- lib
|
81
|
+
- gen
|
82
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: 3.0.0
|
87
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
requirements: []
|
93
|
+
rubygems_version: 3.5.22
|
94
|
+
signing_key:
|
95
|
+
specification_version: 4
|
96
|
+
summary: A gRPC client for ORiN3 devices.
|
97
|
+
test_files: []
|