Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

thread safe function helpers #138

Merged
merged 1 commit into from
Aug 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions lib/sassc/functions_handler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ def setup(native_options)

list = Native.make_function_list(Script.custom_functions.count)

functions = FunctionWrapper.extend(Script::Functions)
# use an anonymous class wrapper to avoid mutations in a threaded environment
functions = Class.new do
attr_accessor :options
include Script::Functions
end.new
functions.options = @options

Script.custom_functions.each_with_index do |custom_function, i|
Expand Down Expand Up @@ -65,11 +69,5 @@ def error(message)
$stderr.puts "[SassC::FunctionsHandler] #{message}"
Native.make_error(message)
end

class FunctionWrapper
class << self
attr_accessor :options
end
end
end
end
20 changes: 20 additions & 0 deletions test/functions_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,22 @@ def test_function_that_takes_a_sass_list
CSS
end

def test_concurrency
10.times do
threads = []
10.times do |i|
threads << Thread.new(i) do |id|
out = Engine.new("div { url: inspect_options(); }", {test_key1: 'test_value', test_key2: id}).render
assert_match /test_key1/, out
assert_match /test_key2/, out
assert_match /test_value/, out
assert_match /#{id}/, out
end
end
threads.each(&:join)
end
end

private

def assert_sass(sass, expected_css)
Expand Down Expand Up @@ -279,6 +295,10 @@ def inspect_list(argument)
return argument
end

def inspect_options
SassC::Script::Value::String.new(self.options.inspect, :string)
end

def returns_sass_value
return SassC::Script::Value::Color.new(red: 0, green: 0, blue: 0)
end
Expand Down