orthoses 1.17.0 → 1.19.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 +4 -4
- data/README.md +5 -0
- data/lib/orthoses/content/header_builder.rb +10 -6
- data/lib/orthoses/content.rb +1 -1
- data/lib/orthoses/create_file_by_name.rb +2 -2
- data/lib/orthoses/lazy_trace_point.rb +2 -2
- data/lib/orthoses/missing_name.rb +2 -2
- data/lib/orthoses/resolve_type_names.rb +97 -0
- data/lib/orthoses/shims.rb +18 -0
- data/lib/orthoses/utils.rb +10 -8
- data/lib/orthoses/version.rb +1 -1
- data/lib/orthoses.rb +2 -0
- data/sig/orthoses/content.rbs +1 -0
- data/sig/orthoses/resolve_type_names.rbs +17 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 245f65c0f676602acf06354591c87ed0d5ed7cd39b997a4db2736004da99476f
|
4
|
+
data.tar.gz: b8f5ec5da61b79d5cc1994f94cd71c6e9da1b36679dd8aef3f6d7c5fcd88bf46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9278d20b972e610772ca19fa849ea147564b49bacf5d0bd81854fe636be99eb2061482569b88370588424f4d3e6059ccb2530c896f8ce9bf921acfd675771153
|
7
|
+
data.tar.gz: 4c271a0f6a3105fe3bb9813c392d47965cb709e2c86e38db6cc9cc3be54a009210a0cdef693a3c6b6ad441b2da5546e7c4a2284d2a0a2fb8c2aee47ffb6373a3
|
data/README.md
CHANGED
@@ -189,6 +189,11 @@ If it is unknown whether it is a class or a module, it is defined as an empty mo
|
|
189
189
|
You can specify that the specified RBS should not be intentionally generated.
|
190
190
|
This is useful when you want to exclude handwritten RBS.
|
191
191
|
|
192
|
+
### Orthoses::ResolveTypeNames
|
193
|
+
|
194
|
+
Call `RBS::Environment#resolve_type_names` and output.
|
195
|
+
Using this middleware improves the efficiency of loading files after they are generated.
|
196
|
+
|
192
197
|
## Development
|
193
198
|
|
194
199
|
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
@@ -21,9 +21,15 @@ module Orthoses
|
|
21
21
|
|
22
22
|
private
|
23
23
|
|
24
|
+
def resolve_full_name(entry:)
|
25
|
+
full_name = entry.decl.name.relative!
|
26
|
+
context = build_context(entry: entry)
|
27
|
+
@resolver.resolve(full_name, context: context) || full_name
|
28
|
+
end
|
29
|
+
|
24
30
|
def build_module(entry:, name_hint: nil)
|
25
31
|
primary = entry.primary
|
26
|
-
full_name = name_hint || primary.
|
32
|
+
full_name = name_hint || resolve_full_name(entry: primary).relative!
|
27
33
|
|
28
34
|
self_types =
|
29
35
|
if primary.decl.self_types.empty?
|
@@ -37,7 +43,7 @@ module Orthoses
|
|
37
43
|
|
38
44
|
def build_class(entry:, name_hint: nil)
|
39
45
|
primary = entry.primary
|
40
|
-
full_name = name_hint || primary.
|
46
|
+
full_name = name_hint || resolve_full_name(entry: primary).relative!
|
41
47
|
|
42
48
|
"class #{name_and_params(full_name, primary.decl.type_params)}#{build_super_class(primary)}"
|
43
49
|
end
|
@@ -60,10 +66,8 @@ module Orthoses
|
|
60
66
|
end
|
61
67
|
|
62
68
|
def build_interface(entry:, name_hint: nil)
|
63
|
-
full_name = name_hint || entry.
|
64
|
-
|
65
|
-
resolved_name = @resolver.resolve(full_name, context: context) || full_name
|
66
|
-
"interface #{name_and_params(resolved_name.relative!, entry.decl.type_params)}"
|
69
|
+
full_name = name_hint || resolve_full_name(entry: entry).relative!
|
70
|
+
"interface #{name_and_params(full_name, entry.decl.type_params)}"
|
67
71
|
end
|
68
72
|
|
69
73
|
include RBS::Environment::ContextUtil
|
data/lib/orthoses/content.rb
CHANGED
@@ -86,7 +86,7 @@ module Orthoses
|
|
86
86
|
|
87
87
|
def auto_header
|
88
88
|
env = Utils.rbs_environment
|
89
|
-
if entry = env.class_decls[TypeName(name).absolute!]
|
89
|
+
if entry = env.class_decls[RBS::TypeName.parse(name).absolute!]
|
90
90
|
@header = Content::HeaderBuilder.new(env: env).build(entry: entry)
|
91
91
|
return
|
92
92
|
end
|
@@ -76,8 +76,8 @@ module Orthoses
|
|
76
76
|
when Integer
|
77
77
|
name.split('::')[0, @depth].join('::')
|
78
78
|
when Hash
|
79
|
-
|
80
|
-
name.start_with?(n)
|
79
|
+
_, found_index = @depth.find do |n, _|
|
80
|
+
n == '*' || name.start_with?(n)
|
81
81
|
end
|
82
82
|
case found_index
|
83
83
|
when nil
|
@@ -25,7 +25,7 @@ module Orthoses
|
|
25
25
|
h[mod_name]&.call(self, id)
|
26
26
|
end
|
27
27
|
end
|
28
|
-
rescue TypeError
|
28
|
+
rescue TypeError
|
29
29
|
end
|
30
30
|
super
|
31
31
|
end
|
@@ -41,7 +41,7 @@ module Orthoses
|
|
41
41
|
h[mod_name]&.call(self, id)
|
42
42
|
end
|
43
43
|
end
|
44
|
-
rescue TypeError
|
44
|
+
rescue TypeError
|
45
45
|
end
|
46
46
|
end
|
47
47
|
end
|
@@ -33,7 +33,7 @@ module Orthoses
|
|
33
33
|
if content.header && content.header.include?("<")
|
34
34
|
_, superclass = content.header.split(/\s*<\s*/, 2)
|
35
35
|
superclass.sub!(/\[.*/, "")
|
36
|
-
new_name = TypeName(superclass).relative!.to_s
|
36
|
+
new_name = RBS::TypeName.parse(superclass).relative!.to_s
|
37
37
|
recur(@store[new_name])
|
38
38
|
end
|
39
39
|
end
|
@@ -60,7 +60,7 @@ module Orthoses
|
|
60
60
|
def split_name(key_name)
|
61
61
|
ret = []
|
62
62
|
|
63
|
-
type_name = TypeName(key_name).relative!
|
63
|
+
type_name = RBS::TypeName.parse(key_name).relative!
|
64
64
|
if !Utils.rbs_defined_class?(type_name.to_s) && !@store.has_key?(type_name.to_s)
|
65
65
|
ret << type_name.to_s
|
66
66
|
end
|
@@ -0,0 +1,97 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Orthoses
|
4
|
+
# use Orthoses::ResolveTypeNames
|
5
|
+
class ResolveTypeNames
|
6
|
+
def initialize(loader)
|
7
|
+
@loader = loader
|
8
|
+
end
|
9
|
+
|
10
|
+
def call
|
11
|
+
@loader.call.tap do |store|
|
12
|
+
env = Utils.rbs_environment(cache: false)
|
13
|
+
|
14
|
+
signatures = store.map do |name, content|
|
15
|
+
buffer = RBS::Buffer.new(content: content.to_rbs, name: "orthoses-resolve_type_names-#{name.downcase}.rbs")
|
16
|
+
decls = [content.to_decl]
|
17
|
+
|
18
|
+
# Add as known types
|
19
|
+
env.add_signature(buffer: buffer, directives: [], decls: decls)
|
20
|
+
|
21
|
+
# Will resolve names
|
22
|
+
[buffer, [[], decls]]
|
23
|
+
end.to_h
|
24
|
+
|
25
|
+
# Reduce resolving names
|
26
|
+
env.signatures.replace(signatures)
|
27
|
+
env = env.resolve_type_names
|
28
|
+
|
29
|
+
store.each do |name, content|
|
30
|
+
out = StringIO.new
|
31
|
+
writer = RBS::Writer.new(out: out)
|
32
|
+
type_name = RBS::TypeName.parse(content.name).absolute!
|
33
|
+
entry = env.class_decls[type_name] || raise
|
34
|
+
content.header = content_header(entry)
|
35
|
+
entry.decls.each do |decl|
|
36
|
+
decl.decl.members.each do |member|
|
37
|
+
writer.write_member(member)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
content.body.replace(out.string.lines)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
private
|
46
|
+
|
47
|
+
def content_header(entry)
|
48
|
+
case primary_decl = entry.primary.decl
|
49
|
+
when RBS::AST::Declarations::Class
|
50
|
+
class_header(primary_decl)
|
51
|
+
when RBS::AST::Declarations::Module
|
52
|
+
module_header(primary_decl)
|
53
|
+
else
|
54
|
+
raise "unexpected decl: #{primary_decl.class}"
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
def class_header(decl)
|
59
|
+
super_class = if super_class = decl.super_class
|
60
|
+
" < #{name_and_args(super_class.name, super_class.args)}"
|
61
|
+
end
|
62
|
+
"class #{name_and_params(decl.name, decl.type_params)}#{super_class}"
|
63
|
+
end
|
64
|
+
|
65
|
+
def module_header(decl)
|
66
|
+
self_type = unless decl.self_types.empty?
|
67
|
+
" : #{decl.self_types.join(", ")}"
|
68
|
+
end
|
69
|
+
"module #{name_and_params(decl.name, decl.type_params)}#{self_type}"
|
70
|
+
end
|
71
|
+
|
72
|
+
module WriterCopy
|
73
|
+
def name_and_args(name, args)
|
74
|
+
if name && args
|
75
|
+
if args.empty?
|
76
|
+
"#{name}"
|
77
|
+
else
|
78
|
+
"#{name}[#{args.join(", ")}]"
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
def name_and_params(name, params)
|
84
|
+
if params.empty?
|
85
|
+
"#{name}"
|
86
|
+
else
|
87
|
+
ps = params.each.map do |param|
|
88
|
+
param.to_s
|
89
|
+
end
|
90
|
+
|
91
|
+
"#{name}[#{ps.join(", ")}]"
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
include WriterCopy
|
96
|
+
end
|
97
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# RBS 3.8
|
2
|
+
unless RBS::TypeName.singleton_class.method_defined?(:parse)
|
3
|
+
module RBS
|
4
|
+
class TypeName
|
5
|
+
def self.parse(string)
|
6
|
+
absolute = string.start_with?("::")
|
7
|
+
|
8
|
+
*path, name = string.delete_prefix("::").split("::").map(&:to_sym)
|
9
|
+
raise unless name
|
10
|
+
|
11
|
+
TypeName.new(
|
12
|
+
name: name,
|
13
|
+
namespace: RBS::Namespace.new(path: path, absolute: absolute)
|
14
|
+
)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
data/lib/orthoses/utils.rb
CHANGED
@@ -61,12 +61,14 @@ module Orthoses
|
|
61
61
|
if collection
|
62
62
|
config_path = RBS::Collection::Config.find_config_path || RBS::Collection::Config::PATH || raise("needs rbs_collection.yaml")
|
63
63
|
lock_path = RBS::Collection::Config.to_lockfile_path(config_path)
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
64
|
+
if lock_path.file?
|
65
|
+
loader.add_collection(RBS::Collection::Config::Lockfile.from_lockfile(
|
66
|
+
lockfile_path: lock_path,
|
67
|
+
data: YAML.load_file(lock_path.to_s)
|
68
|
+
))
|
69
|
+
else
|
70
|
+
Orthoses.logger.debug("rbs_collection.lock.yaml not found in #{lock_path}")
|
71
|
+
end
|
70
72
|
end
|
71
73
|
|
72
74
|
case library
|
@@ -165,7 +167,7 @@ module Orthoses
|
|
165
167
|
def self.module_to_type_name(mod)
|
166
168
|
name = Utils.module_name(mod)
|
167
169
|
if name && !name.empty?
|
168
|
-
TypeName(name)
|
170
|
+
RBS::TypeName.parse(name)
|
169
171
|
else
|
170
172
|
nil
|
171
173
|
end
|
@@ -186,7 +188,7 @@ module Orthoses
|
|
186
188
|
type_name =
|
187
189
|
case name
|
188
190
|
when String
|
189
|
-
TypeName(name).absolute!
|
191
|
+
RBS::TypeName.parse(name).absolute!
|
190
192
|
when Module
|
191
193
|
module_to_type_name(name).absolute!
|
192
194
|
when RBS::TypeName
|
data/lib/orthoses/version.rb
CHANGED
data/lib/orthoses.rb
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
require 'rbs'
|
4
4
|
require 'pathname'
|
5
5
|
require 'stringio'
|
6
|
+
require_relative 'orthoses/shims'
|
6
7
|
|
7
8
|
require 'orthoses/utils'
|
8
9
|
|
@@ -27,6 +28,7 @@ module Orthoses
|
|
27
28
|
autoload :PP, 'orthoses/pp'
|
28
29
|
autoload :RBSPrototypeRB, 'orthoses/rbs_prototype_rb'
|
29
30
|
autoload :RBSPrototypeRuntime, 'orthoses/rbs_prototype_runtime'
|
31
|
+
autoload :ResolveTypeNames, 'orthoses/resolve_type_names'
|
30
32
|
autoload :Sort, 'orthoses/sort'
|
31
33
|
autoload :Store, 'orthoses/store'
|
32
34
|
autoload :Tap, 'orthoses/tap'
|
data/sig/orthoses/content.rbs
CHANGED
@@ -86,6 +86,7 @@ class Orthoses::Content::HeaderBuilder
|
|
86
86
|
@resolver: untyped
|
87
87
|
def initialize: (env: untyped) -> void
|
88
88
|
def build: (entry: untyped, ?name_hint: untyped?) -> untyped
|
89
|
+
private def resolve_full_name: (entry: untyped) -> untyped
|
89
90
|
private def build_module: (entry: untyped, ?name_hint: untyped?) -> ::String
|
90
91
|
private def build_class: (entry: untyped, ?name_hint: untyped?) -> ::String
|
91
92
|
private def build_super_class: (untyped primary) -> (nil | untyped)
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
|
+
|
3
|
+
# use Orthoses::ResolveTypeNames
|
4
|
+
class Orthoses::ResolveTypeNames
|
5
|
+
@loader: untyped
|
6
|
+
def initialize: (untyped loader) -> void
|
7
|
+
def call: () -> untyped
|
8
|
+
private def content_header: (untyped entry) -> untyped
|
9
|
+
private def class_header: (untyped decl) -> ::String
|
10
|
+
private def module_header: (untyped decl) -> ::String
|
11
|
+
end
|
12
|
+
|
13
|
+
module Orthoses::ResolveTypeNames::WriterCopy
|
14
|
+
def name_and_args: (untyped name, untyped args) -> (::String | nil)
|
15
|
+
|
16
|
+
def name_and_params: (untyped name, untyped params) -> ::String
|
17
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: orthoses
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.19.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ksss
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-08 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: rbs
|
@@ -64,6 +63,8 @@ files:
|
|
64
63
|
- lib/orthoses/pp.rb
|
65
64
|
- lib/orthoses/rbs_prototype_rb.rb
|
66
65
|
- lib/orthoses/rbs_prototype_runtime.rb
|
66
|
+
- lib/orthoses/resolve_type_names.rb
|
67
|
+
- lib/orthoses/shims.rb
|
67
68
|
- lib/orthoses/sort.rb
|
68
69
|
- lib/orthoses/store.rb
|
69
70
|
- lib/orthoses/tap.rb
|
@@ -103,6 +104,7 @@ files:
|
|
103
104
|
- sig/orthoses/pp.rbs
|
104
105
|
- sig/orthoses/rbs_prototype_rb.rbs
|
105
106
|
- sig/orthoses/rbs_prototype_runtime.rbs
|
107
|
+
- sig/orthoses/resolve_type_names.rbs
|
106
108
|
- sig/orthoses/sort.rbs
|
107
109
|
- sig/orthoses/store.rbs
|
108
110
|
- sig/orthoses/tap.rbs
|
@@ -116,7 +118,6 @@ licenses:
|
|
116
118
|
metadata:
|
117
119
|
homepage_uri: https://github.com/ksss/orthoses
|
118
120
|
source_code_uri: https://github.com/ksss/orthoses
|
119
|
-
post_install_message:
|
120
121
|
rdoc_options: []
|
121
122
|
require_paths:
|
122
123
|
- lib
|
@@ -131,8 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
131
132
|
- !ruby/object:Gem::Version
|
132
133
|
version: '0'
|
133
134
|
requirements: []
|
134
|
-
rubygems_version: 3.
|
135
|
-
signing_key:
|
135
|
+
rubygems_version: 3.6.2
|
136
136
|
specification_version: 4
|
137
137
|
summary: Framework for Generate RBS
|
138
138
|
test_files: []
|