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

Improve case canonicalization performance #2552

Merged
merged 5 commits into from
Mar 31, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.86.1

* Improve the performance of `file:` URL case canonicalization on Windows and
Mac OS.

## 1.86.0

* Add support for `%` as an expression in its own right. It will still be parsed
Expand Down
20 changes: 14 additions & 6 deletions lib/src/io.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,13 @@ String canonicalize(String path) => _couldBeCaseInsensitive

/// Returns `path` with the case updated to match the path's case on disk.
///
/// This only updates `path`'s basename. It always returns `path` as-is on
/// operating systems other than Windows or Mac OS, since they almost never use
/// case-insensitive filesystems.
/// This always returns `path` as-is on operating systems other than Windows or
/// Mac OS, since they almost never use case-insensitive filesystems.
String _realCasePath(String path) {
// TODO(nweiz): Use an SDK function for this when dart-lang/sdk#35370 and/or
// nodejs/node#24942 are fixed, or at least use FFI functions.

if (!_couldBeCaseInsensitive) return path;
//if (!_couldBeCaseInsensitive) return path;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this supposed to be removed instead of commented out?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, this was supposed to just be a local test! Good catch.


if (isWindows) {
// Drive names are *always* case-insensitive, so convert them to uppercase.
Expand All @@ -47,14 +46,23 @@ String _realCasePath(String path) {
}
}

String helper(String path) {
String helper(String path, [String? realPath]) {
var dirname = p.dirname(path);
if (dirname == path) return path;

return _realCaseCache.putIfAbsent(path, () {
// If the path isn't a symlink, we can use the libraries' `realpath()`
// functions to get its actual basename much more efficiently than listing
// all its siblings.
if (!linkExists(path)) {
// Don't recompute the real path if it was already computed for a child
// and we haven't seen any symlinks between that child and this directory.
var realPathNonNull = realPath ?? realpath(path);
return p.join(helper(dirname, p.dirname(realPathNonNull)), p.basename(realPathNonNull));
}

var realDirname = helper(dirname);
var basename = p.basename(path);

try {
var matches = listDir(realDirname)
.where(
Expand Down
7 changes: 7 additions & 0 deletions lib/src/io/interface.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ bool fileExists(String path) => throw '';
/// Returns whether a dir at [path] exists.
bool dirExists(String path) => throw '';

/// Returns whether a symbolic link at [path] exists.
bool linkExists(String path) => throw '';

/// Ensures that a directory exists at [path], creating it and its ancestors if
/// necessary.
void ensureDir(String path) => throw '';
Expand All @@ -71,6 +74,10 @@ void ensureDir(String path) => throw '';
/// beneath [path] as well.
Iterable<String> listDir(String path, {bool recursive = false}) => throw '';

/// Returns the resolved physical path of [path] on disk, with symbolic links
/// resolved and with the same case as the physical file.
String realpath(String path) => throw '';

/// Returns the modification time of the file at [path].
DateTime modificationTime(String path) => throw '';

Expand Down
22 changes: 22 additions & 0 deletions lib/src/io/js.dart
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,21 @@ bool dirExists(String path) {
});
}

bool linkExists(String path) {
if (!isNodeJs) {
throw UnsupportedError("linkExists() is only supported on Node.js");
}
return _systemErrorToFileSystemException(() {
try {
return fs.statSync(path).isSymbolicLink();
} catch (error) {
var systemError = error as JsSystemError;
if (systemError.code == 'ENOENT') return false;
rethrow;
}
});
}

void ensureDir(String path) {
if (!isNodeJs) {
throw UnsupportedError("ensureDir() is only supported on Node.js");
Expand Down Expand Up @@ -220,6 +235,13 @@ Iterable<String> listDir(String path, {bool recursive = false}) {
});
}

String realpath(String path) {
if (!isNodeJs) {
throw UnsupportedError("listDir() is only supported on Node.js");
}
return _systemErrorToFileSystemException(() => fs.realpathSync.native(path));
}

DateTime modificationTime(String path) {
if (!isNodeJs) {
throw UnsupportedError("modificationTime() is only supported on Node.js");
Expand Down
5 changes: 5 additions & 0 deletions lib/src/io/vm.dart
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ bool fileExists(String path) => io.File(path).existsSync();

bool dirExists(String path) => io.Directory(path).existsSync();

bool linkExists(String path) => io.Link(path).existsSync();

void ensureDir(String path) => io.Directory(path).createSync(recursive: true);

Iterable<String> listDir(String path, {bool recursive = false}) =>
Expand All @@ -88,6 +90,9 @@ Iterable<String> listDir(String path, {bool recursive = false}) =>
.whereType<io.File>()
.map((entity) => entity.path);

// The `File()` method works with directories as well.
String realpath(String path) => io.File(path).resolveSymbolicLinksSync();

DateTime modificationTime(String path) {
var stat = io.FileStat.statSync(path);
if (stat.type == io.FileSystemEntityType.notFound) {
Expand Down
4 changes: 4 additions & 0 deletions pkg/sass-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.17

* No user-visible changes.

## 0.4.16

* Use union types rather than base classes for Sass nodes wherever possible.
Expand Down
2 changes: 1 addition & 1 deletion pkg/sass-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sass-parser",
"version": "0.4.16",
"version": "0.4.17",
"description": "A PostCSS-compatible wrapper of the official Sass parser",
"repository": "sass/sass",
"author": "Google Inc.",
Expand Down
4 changes: 4 additions & 0 deletions pkg/sass_api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 15.3.1

* No user-visible changes.

## 15.3.0

* No user-visible changes.
Expand Down
4 changes: 2 additions & 2 deletions pkg/sass_api/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ name: sass_api
# Note: Every time we add a new Sass AST node, we need to bump the *major*
# version because it's a breaking change for anyone who's implementing the
# visitor interface(s).
version: 15.3.0
version: 15.3.1
description: Additional APIs for Dart Sass.
homepage: https://github.com/sass/dart-sass

environment:
sdk: ">=3.6.0 <4.0.0"

dependencies:
sass: 1.86.0
sass: 1.86.1

dev_dependencies:
dartdoc: ^8.0.14
Expand Down
5 changes: 3 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: sass
version: 1.86.0
version: 1.86.1
description: A Sass implementation in Dart.
homepage: https://github.com/sass/dart-sass

Expand All @@ -21,7 +21,7 @@ dependencies:
js: ^0.6.3
meta: ^1.3.0
native_synchronization: ^0.3.0
node_interop: ^2.1.0
node_interop: ^2.2.0
package_config: ^2.0.0
path: ^1.8.0
pool: ^1.5.1
Expand Down Expand Up @@ -53,3 +53,4 @@ dev_dependencies:
test_process: ^2.0.0
yaml: ^3.1.0
cli_util: ^0.4.0

Loading