forked from temporalio/sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
179 lines (150 loc) · 6.13 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
require 'bundler/gem_tasks'
require 'rbs_protobuf'
require 'fileutils'
require 'thermite/tasks'
require_relative 'lib/thermite_patch'
API_PROTO_ROOT = 'bridge/sdk-core/protos/api_upstream'.freeze
CORE_PROTO_ROOT = 'bridge/sdk-core/protos/local'.freeze
TEST_PROTO_ROOT = 'bridge/sdk-core/protos/testsrv_upstream'.freeze
PROTOBUF_PATH = 'lib/gen'.freeze
RBS_SIG_PATH = 'sig/protos'.freeze
GRPC_PATH = 'spec/support/grpc'.freeze
Thermite::Tasks.new(
cargo_project_path: File.expand_path('bridge', __dir__),
ruby_project_path: __dir__,
)
namespace :bridge do
desc 'Run a linter on SDK Core Bridge'
task :lint do
sh 'cd bridge && cargo clippy --workspace --all-features --all-targets -- -D warnings'
end
desc 'Build SDK Core Bridge'
task :build do
ENV['CARGO_PROFILE'] = 'debug'
Rake::Task['thermite:build'].invoke
end
desc 'Release SDK Core Bridge'
task release: ['thermite:build']
# Mac OS with rbenv users keep leaving behind build artifacts from
# when they tried to build against a statically linked Ruby and then
# try against a dynamically linked one causing errors in the build result
desc 'Clean up previous build artefacts'
task clean: ['thermite:clean']
desc 'Clean up and rebuild SDK Core Bridge'
task rebuild: ['bridge:clean', 'bridge:build']
end
namespace :test_server do
desc 'Build Go server and worker'
task :build do
sh 'cd spec/support/go_server && go build *.go'
sh 'cd spec/support/go_worker && go build *.go'
end
end
# rubocop:disable Metrics/BlockLength
namespace :proto do
desc 'Generate API and Core protobufs'
task :generate do
FileUtils.mkdir_p(PROTOBUF_PATH)
FileUtils.mkdir_p(RBS_SIG_PATH)
FileUtils.mkdir_p(GRPC_PATH)
api_protos = Dir.glob("#{API_PROTO_ROOT}/**/*.proto")
core_protos = Dir.glob("#{CORE_PROTO_ROOT}/**/*.proto")
test_protos = Dir.glob("#{TEST_PROTO_ROOT}/**/*.proto")
# Some files exist in more than one directories. Get rid of duplicates.
protos = (api_protos + core_protos + test_protos).uniq do |path|
path
.delete_prefix(API_PROTO_ROOT)
.delete_prefix(CORE_PROTO_ROOT)
.delete_prefix(TEST_PROTO_ROOT)
end.sort
sh 'bundle exec grpc_tools_ruby_protoc ' \
"--proto_path=#{API_PROTO_ROOT} " \
"--proto_path=#{CORE_PROTO_ROOT} " \
"--proto_path=#{TEST_PROTO_ROOT} " \
"--ruby_out=#{PROTOBUF_PATH} " \
"--grpc_out=#{GRPC_PATH} " \
"#{protos.join(' ')}"
# protobuf_rbs doesn't honour the ruby_package directive, which means that .rbs files modules
# would not match modules in .rb files. For now, we work around that by rewriting package
# directives in our input proto files.
# Collect package names and determine the corresponding Ruby package names
package_map = {}
protos.each do |path|
content = File.read(path)
original_package = content.match(/^\s*package\s+([^;]+)\s*;/).match(1)
ruby_package = content.match(/^\s*option\s+ruby_package\s*=\s*"([^"]+)"\s*;/)&.match(1)
if ruby_package
normalized_package = ruby_package.gsub(/::/, '.').gsub(/(?<=[a-zA-Z])([A-Z])/, '_\1').downcase
package_map[original_package] = normalized_package
else
package_map[original_package] = original_package
end
end
# Copy and fix all proto files to a temporary directory
protos.each do |path| # rubocop:disable Style/CombinableLoops
content = File.read(path)
original_package = content.match(/^\s*package\s+([^;]+)\s*;/).match(1)
normalized_package = package_map[original_package]
# Rewrite the package directive
content = content.gsub(/^\s*package\s+([^;]+)\s*;/, "package #{normalized_package};")
# Fix references to renamed packages
content = content.gsub(%r{(//.*?\R)|(?<![.a-z])(temporal\.api\.[a-z0-9.]+)\.([a-z0-9]+)}im) do
comment = Regexp.last_match(1)
package = Regexp.last_match(2)
element_name = Regexp.last_match(3)
comment || "#{package_map[package]}.#{element_name}"
end
# Write out the file for processing
FileUtils.mkdir_p(File.dirname("tmp/#{path}"))
File.write("tmp/#{path}", content)
end
sh 'RBS_PROTOBUF_BACKEND=protobuf RBS_PROTOBUF_EXTENSION=true' \
'bundle exec grpc_tools_ruby_protoc ' \
"--proto_path=tmp/#{API_PROTO_ROOT} " \
"--proto_path=tmp/#{CORE_PROTO_ROOT} " \
"--proto_path=tmp/#{TEST_PROTO_ROOT} " \
"--rbs_out=#{RBS_SIG_PATH} " \
"#{protos.map { |x| "tmp/#{x}" }.join(' ')}"
# Fix generated RBS files
rbs_files = Dir.glob("#{RBS_SIG_PATH}/**/*.rbs")
rbs_files.each do |path|
content = File.read(path)
# protobuf_rbs will have created some module directive like
# "Workflow_service". Rewrite those to proper camelcase.
content = content.gsub(/module ([a-z0-9]+_[a-z0-9_]+)/i) do
module_name = Regexp.last_match(1)
camelcase_name = module_name.split('_').map(&:capitalize).join
"module #{camelcase_name}"
end
# Also fix references such as Temporalio::Api::Task_queue::V1::TaskQueue
# by rewriting them to proper camelcase.
content = content.gsub(/Temporalio(?:::[a-z0-9][a-z0-9_]+)+(?=::)/im) do
Regexp.last_match(0).split('::').map do |segment|
if segment.match(/_/)
segment.split('_').map(&:capitalize).join
else
# Some segments are already camelcase.
# Calling capitalize on them would lowercase inner words.
segment
end
end.join('::')
end
# Add some missing methods to the generated RBS files
content = content.gsub(/([ \t]*)class ([a-z]+) < ::Protobuf::Message/i) do
indent = Regexp.last_match(1)
class_name = Regexp.last_match(2)
original_line = Regexp.last_match(0)
<<~EXTRA_METHODS
#{original_line}
#{indent} # Encode the message to a binary string
#{indent} #
#{indent} def self.encode: (#{class_name}) -> String
EXTRA_METHODS
end
File.write(path, content)
end
# Remove temporary files
FileUtils.rm_rf('tmp')
end
end
# rubocop:enable Metrics/BlockLength