sass-embedded 1.63.4 → 1.63.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bf1de1df747848d2132aad0dcd24b00b71fe8032ad67037ff7808dac28961687
4
- data.tar.gz: 287e69467756ff9fb35eefd18b7a0035c1143160e0eb1220ef9ac2135fe906c9
3
+ metadata.gz: c463495ed448856ecec61dd708f275713908553dfac183dbe5e006617701b501
4
+ data.tar.gz: dd1b24b9d4f5a68b666b18455bd8a67649be1d931dab12ea74fc9083de2c6fa1
5
5
  SHA512:
6
- metadata.gz: 1476feae1559c8c1d6e27736912fd05c438ac2fde873eb8c0b79fd855bd5b9343b6cc99bbfeedab3ac82b40388140e5796c9d2e156d6be517157da544c3010bd
7
- data.tar.gz: 69008ddf5695e6cc79b6a4adfd6ddf605c36568ffb31d822dde498dc2f0ba400f1d8dc4671223bf192914319bd09d6b38bc21b362d4c9285197186e38ea6e0e4
6
+ metadata.gz: 24fb32bbe970020cad694e98b453266b442dfb8622e74b54cec053b5ecd1a26ed8696a95a4d1a1f9ec5497665a521722c9fd8a7d8d0ce1fc1007c7e4e3e9272a
7
+ data.tar.gz: ec326d600ded86c87acc834c59a584ae024c9496a169d943e807fd678790c64aca94a77d3bc5bba2c9a8dd9c6732c45b7f995e55927fe1ecefce5df58f41ec52
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![build](https://github.com/ntkme/sass-embedded-host-ruby/actions/workflows/build.yml/badge.svg)](https://github.com/ntkme/sass-embedded-host-ruby/actions/workflows/build.yml)
4
4
  [![gem](https://badge.fury.io/rb/sass-embedded.svg)](https://rubygems.org/gems/sass-embedded)
5
5
 
6
- This is a Ruby library that implements the host side of the [Embedded Sass protocol](https://github.com/sass/embedded-protocol).
6
+ This is a Ruby library that implements the host side of the [Embedded Sass protocol](https://github.com/sass/sass/blob/HEAD/spec/embedded-protocol.md).
7
7
 
8
8
  It exposes a Ruby API for Sass that's backed by a native [Dart Sass](https://sass-lang.com/dart-sass) executable.
9
9
 
data/ext/sass/Rakefile CHANGED
@@ -255,7 +255,24 @@ module Configuration
255
255
  when 'x86_64'
256
256
  'x64'
257
257
  when 'aarch64'
258
- 'arm64'
258
+ if Platform::OS == 'windows'
259
+ begin
260
+ require_relative 'win32_api'
261
+
262
+ if Win32API.x64?
263
+ 'x64'
264
+ elsif Win32API.x86?
265
+ 'ia32'
266
+ else
267
+ raise NotImplementedError, message
268
+ end
269
+ rescue LoadError
270
+ # TODO: remove begin/rescue once jruby/jffi support windows aarch64
271
+ 'ia32'
272
+ end
273
+ else
274
+ 'arm64'
275
+ end
259
276
  when 'arm'
260
277
  'arm'
261
278
  else
@@ -295,7 +312,24 @@ module Configuration
295
312
  when 'x86_64'
296
313
  'x86_64'
297
314
  when 'aarch64'
298
- 'aarch_64'
315
+ if Platform::OS == 'windows'
316
+ begin
317
+ require_relative 'win32_api'
318
+
319
+ if Win32API.x64?
320
+ 'x86_64'
321
+ elsif Win32API.x86?
322
+ 'x86_32'
323
+ else
324
+ raise NotImplementedError, message
325
+ end
326
+ rescue LoadError
327
+ # TODO: remove begin/rescue once jruby/jffi support windows aarch64
328
+ 'x86_32'
329
+ end
330
+ else
331
+ 'aarch_64'
332
+ end
299
333
  when 'powerpc64le'
300
334
  'ppcle_64'
301
335
  when 's390x'
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "dependencies": {
3
- "sass": "1.63.4"
3
+ "sass": "1.63.5"
4
4
  }
5
5
  }
@@ -0,0 +1,129 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'fiddle'
4
+
5
+ # @!visibility private
6
+ # @see https://learn.microsoft.com/en-us/windows/win32/api/
7
+ module Win32API
8
+ Kernel32 = Fiddle.dlopen('Kernel32.dll')
9
+
10
+ # @see https://learn.microsoft.com/en-us/windows/win32/sysinfo/image-file-machine-constants
11
+ module ImageFileMachineConstants
12
+ IMAGE_FILE_MACHINE_I386 = 0x014c
13
+ IMAGE_FILE_MACHINE_ARMNT = 0x01c4
14
+ IMAGE_FILE_MACHINE_AMD64 = 0x8664
15
+ IMAGE_FILE_MACHINE_ARM64 = 0xaa64
16
+ end
17
+
18
+ private_constant :ImageFileMachineConstants
19
+
20
+ # @see https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/ne-processthreadsapi-machine_attributes
21
+ module MachineAttributes
22
+ USER_ENABLED = 0x00000001
23
+ KERNEL_ENABLED = 0x00000002
24
+ WOW64_CONTAINER = 0x00000004
25
+ end
26
+
27
+ private_constant :MachineAttributes
28
+
29
+ # Specifies the ways in which an architecture of code can run on a host operating system.
30
+ class MachineTypeAttributes
31
+ def initialize(machine_type_attributes)
32
+ @machine_type_attributes = machine_type_attributes
33
+ end
34
+
35
+ # The specified architecture of code can run in user mode.
36
+ def user_enabled?
37
+ @machine_type_attributes & MachineAttributes::USER_ENABLED == MachineAttributes::USER_ENABLED
38
+ end
39
+
40
+ # The specified architecture of code can run in kernel mode.
41
+ def kernel_enabled?
42
+ @machine_type_attributes & MachineAttributes::KERNEL_ENABLED == MachineAttributes::KERNEL_ENABLED
43
+ end
44
+
45
+ # The specified architecture of code runs on WOW64.
46
+ def wow64_container?
47
+ @machine_type_attributes & MachineAttributes::WOW64_CONTAINER == MachineAttributes::WOW64_CONTAINER
48
+ end
49
+ end
50
+
51
+ private_constant :MachineTypeAttributes
52
+
53
+ class << self
54
+ def x86?
55
+ get_machine_type_attributes(ImageFileMachineConstants::IMAGE_FILE_MACHINE_I386).user_enabled?
56
+ end
57
+
58
+ def arm?
59
+ get_machine_type_attributes(ImageFileMachineConstants::IMAGE_FILE_MACHINE_ARMNT).user_enabled?
60
+ end
61
+
62
+ def x64?
63
+ get_machine_type_attributes(ImageFileMachineConstants::IMAGE_FILE_MACHINE_AMD64).user_enabled?
64
+ end
65
+
66
+ def arm64?
67
+ get_machine_type_attributes(ImageFileMachineConstants::IMAGE_FILE_MACHINE_ARM64).user_enabled?
68
+ end
69
+
70
+ private
71
+
72
+ begin
73
+ # @see https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-getmachinetypeattributes
74
+ GetMachineTypeAttributes = Fiddle::Function.new(
75
+ Kernel32['GetMachineTypeAttributes'],
76
+ [-Fiddle::TYPE_SHORT, Fiddle::TYPE_VOIDP],
77
+ Fiddle::TYPE_LONG
78
+ )
79
+
80
+ def get_machine_type_attributes(machine)
81
+ p_machine_type_attributes = Fiddle::Pointer.malloc(Fiddle::SIZEOF_INT, Fiddle::RUBY_FREE)
82
+ raise Fiddle.win32_last_error unless GetMachineTypeAttributes.call(machine, p_machine_type_attributes).zero?
83
+
84
+ MachineTypeAttributes.new(p_machine_type_attributes.to_str.unpack1('i'))
85
+ end
86
+ rescue Fiddle::DLError
87
+ # @see https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-getcurrentprocess
88
+ GetCurrentProcess = Fiddle::Function.new(
89
+ Kernel32['GetCurrentProcess'],
90
+ [],
91
+ Fiddle::TYPE_VOIDP
92
+ )
93
+
94
+ # @see https://learn.microsoft.com/en-us/windows/win32/api/wow64apiset/nf-wow64apiset-iswow64process2
95
+ IsWow64Process2 = Fiddle::Function.new(
96
+ Kernel32['IsWow64Process2'],
97
+ [Fiddle::TYPE_VOIDP, Fiddle::TYPE_VOIDP, Fiddle::TYPE_VOIDP],
98
+ Fiddle::TYPE_CHAR
99
+ )
100
+
101
+ # @see https://learn.microsoft.com/en-us/windows/win32/api/wow64apiset/nf-wow64apiset-iswow64guestmachinesupported
102
+ IsWow64GuestMachineSupported = Fiddle::Function.new(
103
+ Kernel32['IsWow64GuestMachineSupported'],
104
+ [-Fiddle::TYPE_SHORT, Fiddle::TYPE_VOIDP],
105
+ Fiddle::TYPE_LONG
106
+ )
107
+
108
+ def get_machine_type_attributes(machine)
109
+ h_process = GetCurrentProcess.call
110
+ p_process_machine = Fiddle::Pointer.malloc(Fiddle::SIZEOF_SHORT, Fiddle::RUBY_FREE)
111
+ p_native_machine = Fiddle::Pointer.malloc(Fiddle::SIZEOF_SHORT, Fiddle::RUBY_FREE)
112
+ raise Fiddle.win32_last_error if IsWow64Process2.call(h_process, p_process_machine, p_native_machine).zero?
113
+
114
+ if p_native_machine.to_str.unpack1('S!') == machine
115
+ return MachineTypeAttributes.new(MachineAttributes::USER_ENABLED | MachineAttributes::KERNEL_ENABLED)
116
+ end
117
+
118
+ p_machine_is_supported = Fiddle::Pointer.malloc(Fiddle::SIZEOF_CHAR, Fiddle::RUBY_FREE)
119
+ raise Fiddle.win32_last_error unless IsWow64GuestMachineSupported.call(machine, p_machine_is_supported).zero?
120
+
121
+ if p_machine_is_supported.to_str.unpack1('c').zero?
122
+ MachineTypeAttributes.new(0)
123
+ else
124
+ MachineTypeAttributes.new(MachineAttributes::USER_ENABLED | MachineAttributes::WOW64_CONTAINER)
125
+ end
126
+ end
127
+ end
128
+ end
129
+ end
@@ -46,15 +46,11 @@ module Sass
46
46
 
47
47
  return unless @observers.empty?
48
48
 
49
- # if @id == UINT_MAX
50
- # close
51
- # else
52
- # @id = 1
53
- # end
54
-
55
- # Resetting @id can cause a race condition in compiler
56
- # See: https://github.com/sass/dart-sass/issues/2004
57
- close if @id == UINT_MAX
49
+ if @id == UINT_MAX
50
+ close
51
+ else
52
+ @id = 1
53
+ end
58
54
  end
59
55
  end
60
56
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sass
4
4
  class Embedded
5
- VERSION = '1.63.4'
5
+ VERSION = '1.63.5'
6
6
  end
7
7
  end
data/lib/sass/embedded.rb CHANGED
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative '../../ext/sass/cli'
4
- require_relative '../../ext/sass/embedded_sass_pb'
5
4
  require_relative 'compile_error'
6
5
  require_relative 'compile_result'
7
6
  require_relative 'embedded/connection'
@@ -12,6 +11,7 @@ require_relative 'embedded/resilient_dispatcher'
12
11
  require_relative 'embedded/structifier'
13
12
  require_relative 'embedded/varint'
14
13
  require_relative 'embedded/version'
14
+ require_relative 'embedded_protocol'
15
15
  require_relative 'logger/silent'
16
16
  require_relative 'logger/source_location'
17
17
  require_relative 'logger/source_span'
@@ -247,6 +247,4 @@ module Sass
247
247
  @dispatcher.closed?
248
248
  end
249
249
  end
250
-
251
- private_constant :EmbeddedProtocol
252
250
  end
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Sass
4
+ # @see https://github.com/sass/sass/blob/HEAD/spec/embedded-protocol.md
5
+ module EmbeddedProtocol
6
+ require_relative '../../ext/sass/embedded_sass_pb'
7
+ end
8
+
9
+ private_constant :EmbeddedProtocol
10
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-embedded
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.63.4
4
+ version: 1.63.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - なつき
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-06-15 00:00:00.000000000 Z
11
+ date: 2023-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -55,6 +55,7 @@ files:
55
55
  - ext/sass/embedded_sass_pb.rb
56
56
  - ext/sass/expand-archive.ps1
57
57
  - ext/sass/package.json
58
+ - ext/sass/win32_api.rb
58
59
  - lib/sass-embedded.rb
59
60
  - lib/sass/compile_error.rb
60
61
  - lib/sass/compile_result.rb
@@ -72,6 +73,7 @@ files:
72
73
  - lib/sass/embedded/structifier.rb
73
74
  - lib/sass/embedded/varint.rb
74
75
  - lib/sass/embedded/version.rb
76
+ - lib/sass/embedded_protocol.rb
75
77
  - lib/sass/logger/silent.rb
76
78
  - lib/sass/logger/source_location.rb
77
79
  - lib/sass/logger/source_span.rb
@@ -92,8 +94,8 @@ homepage: https://github.com/ntkme/sass-embedded-host-ruby
92
94
  licenses:
93
95
  - MIT
94
96
  metadata:
95
- documentation_uri: https://rubydoc.info/gems/sass-embedded/1.63.4
96
- source_code_uri: https://github.com/ntkme/sass-embedded-host-ruby/tree/v1.63.4
97
+ documentation_uri: https://rubydoc.info/gems/sass-embedded/1.63.5
98
+ source_code_uri: https://github.com/ntkme/sass-embedded-host-ruby/tree/v1.63.5
97
99
  funding_uri: https://github.com/sponsors/ntkme
98
100
  post_install_message:
99
101
  rdoc_options: []