Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Ruby with types

Ruby with types

RubyConf Taiwan 2019

- https://2019.rubyconf.tw

Soutaro Matsumoto

July 26, 2019
Tweet

More Decks by Soutaro Matsumoto

Other Decks in Programming

Transcript

  1. Outline • The overview of type checking for Ruby3 •

    Type checking benefits • Steep quick tour
  2. Ruby3 type checking • Detecting types of each Ruby expression

    statically to help developments • Performance is not our goal (it needs much more precise analysis) taiwan = Conference.find_by!(name: "RubyConf Taiwan", year: 2019) taiwan.talks.each do |talk| puts talk.speaker.email end
  3. Ruby3 type checking • Detecting types of each Ruby expression

    statically to help developments • Performance is not our goal (it needs much more precise analysis) taiwan = Conference.find_by!(name: "RubyConf Taiwan", year: 2019) taiwan.talks.each do |talk| puts talk.speaker.email end ::Conference
  4. Ruby3 type checking • Detecting types of each Ruby expression

    statically to help developments • Performance is not our goal (it needs much more precise analysis) taiwan = Conference.find_by!(name: "RubyConf Taiwan", year: 2019) taiwan.talks.each do |talk| puts talk.speaker.email end ::Conference () { (::Talk) -> void } -> self
  5. Ruby3 type checking • Detecting types of each Ruby expression

    statically to help developments • Performance is not our goal (it needs much more precise analysis) taiwan = Conference.find_by!(name: "RubyConf Taiwan", year: 2019) taiwan.talks.each do |talk| puts talk.speaker.email end ::String ::Conference () { (::Talk) -> void } -> self
  6. Ruby & types project From Ruby team Type checker developers

    Matz Koichi Sasada Yusuke Endoh Dmitry Petrashko and Sorbet team (Sorbet) Jeff Foster (RDL) Yusuke Endoh (type-profiler) Soutaro Matsumoto (Steep) Have meetings to discuss for collaboration, share the progress, and develop the foundation of type checking for Ruby
  7. Sub projects type-profiler Steep Sorbet RDL RBS ruby-signature Level 1

    type checker Level 2 type checkers Type signature language
  8. Sub projects type-profiler Steep Sorbet RDL RBS ruby-signature Level 1

    type checker Level 2 type checkers Type signature language Use/Generate Use
  9. Level 1 type checker • Type checking without any extra

    efforts • No type annotation, no signature of your program • Reads Ruby code without type annotations and infers the types as much as possible • Many expressions will be left untyped • No bugs can be found around the untyped expressions • Minimizing the cost for type checking sacrificing the precision/coverage
  10. Level 2 type checkers • You write inline type annotations

    as embedded DSL or comments • Detects types of most of Ruby expressions Sorbet Steep class Box extend T::Sig extend T::Generic Elem = type_member sig {returns(Elem)} attr_reader :x sig {params(x: Elem).returns(Elem)} attr_writer :x end box = Box[Integer].new class Box # @dynamic x attr_accessor :x end # @type var box: Box[Integer] box = Box.new box.x = "hello" class Box[X] attr_accessor x: X end
  11. The Ruby signature language • Ruby-like but different syntax •

    Defines the structure of Ruby programs • Classes, modules, mixin, and interfaces • Methods and instance variables • Generics, unions, tuples, optionals, ... • You can write types for most of the Ruby programs class Array[A] include Enumerable def []=: (Integer, A) -> A def []: (Integer) -> A? def each: { (A) -> void } -> self def partition: { (A) -> bool } -> [Array[A], Array[A]] ... end WIP
  12. Sub projects type-profiler Steep Sorbet RDL Level 1 type checker

    Level 2 type checkers Type signature language RBS ruby-signature
  13. Sub projects type-profiler Steep Sorbet RDL Level 1 type checker

    Level 2 type checkers Type signature language Will be part of Ruby3 RBS ruby-signature
  14. Type checking spectrum No type checking Type check your program

    with signature Type check your program with library signature
  15. Type checking spectrum No type checking Type check your program

    with signature Type check your program with library signature Auto-generate type signature
  16. Type checking spectrum No type checking Type check your program

    with signature Type check your program with library signature Write signature but no type checking Auto-generate type signature
  17. Type check with library signature • You don't write signatures

    of your Ruby program • Use library signatures and infer the types of your Ruby code • You can try with level 1 type checker (type-profiler) • Level 2 type checkers detects some trivial problems (Sorbet, Steep) taiwan = Conference.find_by!(name: "RubyConf Taiwan", year: 2019) taiwan.talks.each do |talk| puts talk.email end Missing #speaker call
  18. Auto generate type signature • You don't write signatures of

    your Ruby program • Let type-profiler generate type signature of your Ruby program class Fib def fib(x) if x <= 1 x else fib(x-1) + fib(x-2) end end end puts Fib.new.fib(30) Fib#fib :: (Integer) -> Integer
  19. Write signature but no type checking • Write type signature

    of your program to ship it with the gem • Run type-profiler with your tests to detect mismatches between your signature and tests class Fib def fib: (Integer) -> Integer end class FibTest < Minitest::Test def test_fib assert_equal 2, 3 assert_equal "two", Fib.new.fib("three") assert_equal "ೋ", Fib.new.fib("ࡾ") end end
  20. Write signature but no type checking • Write type signature

    of your program to ship it with the gem • Run type-profiler with your tests to detect mismatches between your signature and tests class Fib def fib: (Integer) -> Integer end class FibTest < Minitest::Test def test_fib assert_equal 2, 3 assert_equal "two", Fib.new.fib("three") assert_equal "ೋ", Fib.new.fib("ࡾ") end end class Fib def fib: (Integer) -> Integer | (String) -> String end
  21. Type check your code • Prepare the signature of your

    Ruby program and type check the implementation • You may write the signature manually • You may generate the signature with type-profiler class Box # @dynamic x attr_accessor :x end # @type var box: Box[Integer] box = Box.new box.x = "hello" Will require some inline type annotations
  22. Type checking spectrum No type checking Type check your program

    with signature Type check your program with library signature Write signature but no type checking Auto-generate type signature
  23. Type checking spectrum No type checking Type check your program

    with signature Type check your program with library signature Write signature but no type checking Auto-generate type signature
  24. Outline • The overview of type checking for Ruby3 •

    Type checking benefits • Steep quick tour
  25. Type checking benefits • Development experience improvements • Uncover bugs

    without running tests • Documentation with validation • Code navigations • Application quality improvements • Uncover bugs missed in tests • To help the development of advanced analyses
  26. conference = Conference.find_by(name: "RubyConf Taiwan") conference.update!(year: 2019) Conference | nil

    (name: String) -> (Conference | nil) NoMethodError (undefined method `update!' for nil:NilClass)
  27. conference = Conference.find_by(name: "RubyConf Taiwan") if conference conference.update!(year: 2019) end

    conference = Conference.find_by!(name: "RubyConf Taiwan") conference.update!(year: 2019) Test if it is nil before using the value Use find_by! instead and abort if there is no record
  28. Working with nils safely • The only way to avoid

    nil dereference error is by testing if it is nil or not • What if your teammate changes a value to nilable? • Type checkers will tell you if you forget the test • We can generalize to any union types type json = nil | Numeric | String
 | TrueClass | FalseClass 
 | Array[json] | Hash[String, json] • Best fit for case / case-in
  29. Outline • The overview of type checking for Ruby3 •

    Type checking benefits • Steep quick tour
  30. Steep Key ideas • Structural subtyping (for duck typing) •

    Doesn't change runtime behavior at all $ gem install steep https://github.com/soutaro/steep
  31. class Conference attr_reader :name attr_reader :talks def initialize(name:) @name =

    name @talks = [] end def speakers talks.each(&:speaker) # Should be #map call end end conference = Conference.new("RubyConf Taiwan") # Should be a keyword argument conference.talks << Talk.new(...)
  32. class Conference attr_reader name: String attr_reader talks: Array[Talk] def initialize:

    (name: String) -> void def speakers: -> Array[Speaker] end class Talk ... end class Speaker ... end class Conference attr_reader :name attr_reader :talks def initialize(name:) @name = name @talks = [] end def speakers talks.each(&:speaker) end end conference = Conference.new("RubyConf Taiwan") conference.talks << Talk.new(...)
  33. class Conference attr_reader :name attr_reader :talks def initialize(name:) @name =

    name @talks = [] end def speakers talks.each(&:speaker) end end conference = Conference.new("RubyConf Taiwan") conference.talks << Talk.new(...) class Conference attr_reader name: String attr_reader talks: Array[Talk] def initialize: (name: String) -> void def speakers: -> Array[Speaker] end class Talk ... end class Speaker ... end ArgumentTypeMismatch: receiver=singleton(::Conference), expected={ :name => ::String }, actual=::String
  34. class Conference attr_reader :name attr_reader :talks def initialize(name:) @name =

    name @talks = [] end def speakers talks.each(&:speaker) end end conference = Conference.new("RubyConf Taiwan") conference.talks << Talk.new(...) class Conference attr_reader name: String attr_reader talks: Array[Talk] def initialize: (name: String) -> void def speakers: -> Array[Speaker] end class Talk ... end class Speaker ... end MethodBodyTypeMismatch: method=speakers, expected=::Array[::Speaker], actual=::Array[::Talk]
  35. Duck typing support interface _DumpTo def <<: (String) -> any

    end class Conference ... def dump_titles: (_DumpTo) -> void end # conference.dump_titles("") # conference.dump_titles([]) # Error conference.dump_titles(3)
  36. No runtime invasion • Inline type annotations of Steep are

    comments • Better for libraries: • Your library users would not want to install Steep • You can keep # of runtime dependencies as small as possible spec.add_development_dependency "steep"
  37. Recap • Plan for Ruby3 type checking • We provide

    several options to adopt type checking • Level 2 type checkers will make Ruby more powerful • Helps to handle nils safely • Best fit for case / case-in • Steep is the best option for Ruby type checking [my personal opinion]
  38. References • Projects • https://github.com/soutaro/steep • https://sorbet.org • https://github.com/plum-umd/rdl •

    https://github.com/mame/ruby-type-profiler • https://github.com/ruby/ruby-signature • Sider • https://sider.review • https://blog.sideci.com/interview-with-bozhidar-batsov-99b049b6fd6a