From cae8bbfe6271a15cf212a83a9c3ac3fedcdc7718 Mon Sep 17 00:00:00 2001 From: Koichi Sasada Date: Tue, 22 Dec 2020 17:07:23 +0900 Subject: [PATCH] pp is ractor-ready. `@sharing_detection` is only one obstruction to support pp on non-main ractors, so make it ractor-local. --- lib/pp.rb | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/lib/pp.rb b/lib/pp.rb index dede0d1517..a410a0d04a 100644 --- a/lib/pp.rb +++ b/lib/pp.rb @@ -93,11 +93,24 @@ class PP < PrettyPrint end # :startdoc: - @sharing_detection = false - class << self - # Returns the sharing detection flag as a boolean value. - # It is false by default. - attr_accessor :sharing_detection + if defined? ::Ractor + class << self + # Returns the sharing detection flag as a boolean value. + # It is false (nil) by default. + def sharing_detection + Ractor.current[:pp_sharing_detection] + end + def sharing_detection=(b) + Ractor.current[:pp_sharing_detection] = b + end + end + else + @sharing_detection = false + class << self + # Returns the sharing detection flag as a boolean value. + # It is false by default. + attr_accessor :sharing_detection + end end module PPMethods