This repository has been archived by the owner on Feb 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
htmltidy.js
198 lines (175 loc) · 4.76 KB
/
htmltidy.js
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
var Stream = require('stream').Stream;
var inherits = require('util').inherits;
var fs = require('fs');
var path = require('path');
var spawn = require('child_process').spawn;
// tidy exit codes
var TIDY_OK = 0;
var TIDY_WARN = 1;
var TIDY_ERR = 2;
// default tidy opts
var DEFAULT_OPTS = {
showWarnings: false,
tidyMark: false,
forceOutput: true,
quiet: false
};
// choose suitable executable
var tidyExec = chooseExec();
function TidyWorker(opts) {
Stream.call(this);
// Store a reference to the merged options for consumption by error reporting logic
var mergedOpts = merge(opts, DEFAULT_OPTS);
this.writable= true;
this.readable= true;
this._worker = spawn(tidyExec, parseOpts(mergedOpts));
var self = this;
var errors = '';
this._worker.stdin.on('drain', function () {
self.emit('drain');
});
this._worker.stdin.on('error', function () {
self.emit('error');
});
this._worker.stdout.on('data', function (data) {
self.emit('data', data);
});
this._worker.stdout.on('close', function (data) {
self.emit('close');
});
this._worker.stderr.on('data', function (data) {
errors+= data;
});
this._worker.on('exit', function (code) {
switch(code){
// If there were any warnings or errors from Tiny command
case TIDY_WARN:
// The user asks to see warnings.
if(mergedOpts.showWarnings){
self.emit('error', errors);
}
break;
case TIDY_ERR:
// The user asks to see errors.
if(mergedOpts.showErrors){
self.emit('error', errors);
}
break;
}
self.emit('end');
});
}
inherits(TidyWorker, Stream);
TidyWorker.prototype.write = function (data) {
if (!this._worker)
throw new Error('worker has been destroyed');
return this._worker.stdin.write(data);
};
TidyWorker.prototype.end = function (data) {
if (!this._worker)
throw new Error('worker has been destroyed');
this._worker.stdin.end(data);
};
TidyWorker.prototype.pause = function () {
if (!this._worker)
throw new Error('worker has been destroyed');
if (this._worker.stdout.pause)
this._worker.stdout.pause();
};
TidyWorker.prototype.resume = function () {
if (!this._worker)
throw new Error('worker has been destroyed');
if (this._worker.stdout.resume)
this._worker.stdout.resume();
};
TidyWorker.prototype.destroy = function () {
if (this._worker)
return;
this._worker.kill();
this._worker= null;
this.emit('close');
};
function createWorker(opts) {
return new TidyWorker(opts);
}
function tidy(text, opts, cb) {
// options are optional
if (typeof opts == 'function') {
cb = opts;
opts = {};
}
if (typeof cb != 'function')
throw new Error('no callback provided for tidy');
var worker = new TidyWorker(opts);
var result = '';
var error = '';
worker.on('data', function (data) {
result+= data;
});
worker.on('error', function (data) {
error+= data;
});
worker.on('end', function (code) {
cb(error, result);
});
worker.end(text);
}
function chooseExec() {
var tidyExe;
switch (process.platform) {
case 'win32':
tidyExe = path.join('win32','tidy.exe');
break;
case 'linux':
tidyExe = path.join('linux', 'tidy');
break;
case 'darwin':
tidyExe = path.join('darwin', 'tidy');
break;
default:
throw new Error('unsupported execution platform');
}
tidyExe = path.join(__dirname, 'bin', tidyExe);
var existsSync = fs.existsSync||path.existsSync; // node > 0.6
if (!existsSync(tidyExe))
throw new Error('missing tidy executable: ' + tidyExe);
return tidyExe;
}
function parseOpts(opts) {
opts = opts || {};
var args = [];
for (var n in opts) {
args.push('--' + toHyphens(n));
switch (typeof opts[n]) {
case 'string':
case 'number':
args.push(opts[n]);
break;
case 'boolean':
args.push(opts[n]? 'yes': 'no');
break;
default:
throw new Error('unknown option type');
}
}
return args;
}
function toHyphens(str) {
return str.replace(/([A-Z])/g, function (m, w) { return '-' + w.toLowerCase(); });
}
/**
* Overwrites obj2's values with obj1's and adds obj2's if non existent in obj2
* @param obj1
* @param obj2
* @returns a new object based on obj1 and obj2
*/
function merge(obj1, obj2) {
obj1 = obj1 || {};
obj2 = obj2 || {};
var obj3 = {};
for (var attrname in obj2) obj3[attrname] = obj2[attrname];
for (var attrname2 in obj1) obj3[attrname2] = obj1[attrname2];
return obj3;
}
exports.createWorker = createWorker;
exports.tidy = tidy;