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

feat: support various encoding #446

Closed

Conversation

kkb912002
Copy link
Contributor

The Windows operating system often has a unique default encoding set for the terminal (such as PowerShell) depending on the country. For example, when running WinAppDriver as a SubProcess, if an OS error occurs in a non-English-speaking country, the error message will be translated into the local language, making it unreadable. This issue arises because the encoding options provided by Node.js are limited and cannot resolve the problem.

I propose using iconv-lite as a solution.

@@ -6,6 +6,8 @@ import { quote } from 'shell-quote';
import _ from 'lodash';
import { formatEnoent } from './helpers';
import { createInterface } from 'node:readline';
import iconv from 'iconv-lite';
Copy link
Contributor

Choose a reason for hiding this comment

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

prefer to use import { decode } from 'iconv-lite'; syntax

if (this.proc.stdout) {
this.proc.stdout.on('data', (chunk) => handleOutput({stdout: chunk.toString(), stderr: ''}));
this.proc.stdout.on('data', (chunk) => handleOutput({stdout: decode(chunk, encoding), stderr: ''}));
Copy link
Contributor

Choose a reason for hiding this comment

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

should it only be applied to Windows?

Copy link
Contributor

Choose a reason for hiding this comment

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

also, I assume it only makes sense to apply decode if the requested encoding differs from the default one (e.g. utf8)

@@ -48,6 +48,7 @@
},
"dependencies": {
"bluebird": "^3.7.2",
"iconv-lite": "0.6.3",
Copy link
Contributor

Choose a reason for hiding this comment

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

please use version range instead, e.g. ^0.x

Copy link
Contributor

Choose a reason for hiding this comment

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

I assume this project has not been regularly maintained recently. Have you considered using some alternatives? For example, the Buffer.toString method also supports setting encoding as an argument

Copy link
Contributor Author

Choose a reason for hiding this comment

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

How about the following solution? It provides the buffer as output, similar to exec.
#447

Copy link
Contributor

@mykola-mokhnach mykola-mokhnach Mar 1, 2025

Choose a reason for hiding this comment

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

yes, the other solution adds more flexibility

@kkb912002
Copy link
Contributor Author

I replace this PR with #447.

@kkb912002 kkb912002 closed this Mar 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants