-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathindex.js
More file actions
125 lines (103 loc) · 3.05 KB
/
index.js
File metadata and controls
125 lines (103 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
const child_process = require("node:child_process");
const spawn = child_process.spawn;
const execSync = child_process.execSync;
const util = require("node:util");
let config;
switch (process.platform) {
case "darwin":
config = require("./platform/darwin");
break;
case "win32":
config = require("./platform/win32");
break;
case "linux":
if (process.env.WAYLAND_DISPLAY) {
config = require("./platform/linux-wayland");
} else {
config = require("./platform/linux");
}
break;
case "freebsd":
config = require("./platform/linux");
break;
case "openbsd":
config = require("./platform/linux");
break;
case "android":
config = require("./platform/android");
break;
default:
throw new Error(`Unknown platform: "${process.platform}"`);
}
const noop = () => {};
exports.copy = (text, callback) => {
const opts = { env: { ...process.env, ...config.copy.env } };
const child = spawn(config.copy.command, config.copy.args, opts);
let done = callback
? (...args) => {
callback(...args);
done = noop;
}
: (err) => {
if (err) throw err;
done = noop;
};
const err = [];
child.stdin.on("error", (err) => done(err));
child
.on("exit", () => done(null, text))
.on("error", (err) => done(err))
.stderr.on("data", (chunk) => err.push(chunk))
.on("end", () => {
if (err.length === 0) return;
done(new Error(config.decode(err)));
});
if (!child.pid) return text;
if (text?.pipe) text.pipe(child.stdin);
else {
let output;
const type = Object.prototype.toString.call(text);
if (type === "[object String]") output = text;
else if (type === "[object Object]") output = util.inspect(text, { depth: null });
else if (type === "[object Array]") output = util.inspect(text, { depth: null });
else if (type === "[object Null]") output = "null";
else if (type === "[object Undefined]") output = "undefined";
else output = text.toString();
child.stdin.end(config.encode(output));
}
return text;
};
exports.copy.json = (obj, callback) => exports.copy(JSON.stringify(obj, null, "\t"), callback);
const pasteCommand = [config.paste.command].concat(config.paste.args).join(" ");
exports.paste = (callback) => {
const opts = { env: { ...process.env, ...config.paste.env }, maxBuffer: 1024 * 1024 * 10 };
if (execSync && !callback) return config.decode(execSync(pasteCommand, opts));
if (callback) {
const child = spawn(config.paste.command, config.paste.args, opts);
let done =
callback &&
((...args) => {
callback(...args);
done = noop;
});
const data = [];
const err = [];
child.on("error", (err) => done(err));
child.stdout
.on("data", (chunk) => data.push(chunk))
.on("end", () => done(null, config.decode(data)));
child.stderr
.on("data", (chunk) => err.push(chunk))
.on("end", () => {
if (err.length === 0) return;
done(new Error(config.decode(err)));
});
} else {
throw new Error("A synchronous version of paste is not supported on this platform.");
}
};
exports.global = () => {
global.copy = exports.copy;
global.paste = exports.paste;
return exports;
};