-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnrtsc140.js
226 lines (205 loc) · 6.36 KB
/
nrtsc140.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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/**
* Constants.
*/
var MAX_RECORDING_SEC = 30;
var SC_SEVER_STARTED_MSG = 'Shared memory server interface initialized';
var SC_SEVER_START_ERR_MSG = 'server failed to start';
var JACK_DRIVER_IGNORE_MSG = 'JackDriver: max output latency';
/**
* Module dependencies.
*/
var sc = require('sc4node'),
child_process = require('child_process'),
fs = require('fs'),
path = require('path'),
crypto = require('crypto'),
util = require('util');
// For backwards compatibility with node 0.6
if (!fs.existsSync) {
fs.existsSync = path.existsSync;
}
var NrtSc140 = exports.NrtSc140 = function(socket, sclangPath) {
this._socket = socket;
this._sclangPath = sclangPath;
this._audioDir = path.join(process.cwd(), 'public', 'audio');
this._curFile = null;
this._generatedFiles = [];
this._timeoutId = null;
this._intervalId = null;
this._sclang = null;
};
NrtSc140.prototype.start = function() {
this._socket.emit('scserverstarting');
this._sclang = this.createSclang();
this._socket.on('validate', this.onValidate.bind(this));
this._socket.on('generate', this.onGenerate.bind(this));
this._socket.on('stop', this.onStop.bind(this));
this._socket.on('restartsclang', this.onRestartSclang.bind(this));
this._socket.on('disconnect', this.onSocketDisconnect.bind(this));
};
NrtSc140.prototype.onRestartSclang = function() {
this.restartSclang();
};
NrtSc140.prototype.onValidate = function(msg) {
util.debug('validate: ' + msg);
this.validateScCode(msg, this._socket);
};
NrtSc140.prototype.onGenerate = function(msg) {
util.debug('generate: ' + msg);
if (!this.validateScCode(msg, this._socket)) {
return;
}
var aiffFile;
do {
this._curFile = randomString();
aiffFile = path.join(this._audioDir, this._curFile + '.aiff');
util.debug('aiffFile: ' + aiffFile);
} while (fs.existsSync(aiffFile));
//this._generatedFiles.push(path.join(_audioDir, _curFile + '.*'));
this._sclang.evaluate(
's.waitForBoot(s.prepareForRecord(\'' +
aiffFile + '\');s.record;' +
msg + '\n);',
false);
var timeRemaining = MAX_RECORDING_SEC + 1;
this._timeoutId = setTimeout(function() {
this._timeoutId = this.stopRecording();
}.bind(this), timeRemaining * 1000);
var timeRecorded = 0;
util.debug('timerecorded: ' + timeRecorded);
this._socket.emit('timerecorded', '' + timeRecorded);
this._intervalId = setInterval(function() {
timeRecorded++;
util.debug('timerecorded: ' + timeRecorded);
this._socket.emit('timerecorded', '' + timeRecorded);
if (timeRecorded >= MAX_RECORDING_SEC) {
clearInterval(this._intervalId);
}
}.bind(this), 1000);
};
NrtSc140.prototype.onStop = function() {
util.debug('stop');
if (this._timeoutId) {
clearTimeout(this._timeoutId);
}
if (this._intervalId) {
clearInterval(this._intervalId);
}
this.stopRecording();
};
NrtSc140.prototype.onSocketDisconnect = function() {
util.debug('disconnect');
if (this._timeoutId) {
clearTimeout(this._timeoutId);
}
if (this._intervalId) {
clearInterval(this._intervalId);
}
if (this._sclang) {
this._sclang.dispose();
}
for (var i = 0, len = this._generatedFiles.length; i < len; i++) {
rmFile(this._generatedFiles[i]);
}
};
NrtSc140.prototype.createSclang = function() {
var sclang =
sc.start(this._sclangPath, this.onSclangStdoutReceived.bind(this));
sclang.evaluate('Server.default = Server.internal;s = Server.default;s.boot;');
// FIXME workaround
var workaroundTmpFile;
do {
workaroundTmpFile = '/tmp/nrt-sc140-' + randomString() + '.aiff';
} while (fs.existsSync(workaroundTmpFile));
this._generatedFiles.push(workaroundTmpFile);
sclang.evaluate(
's.waitForBoot(s.prepareForRecord(\'' +
workaroundTmpFile +
'\');s.record;s.stopRecording;);',
false);
return sclang;
};
NrtSc140.prototype.restartSclang = function() {
this._socket.emit('scserverstarting');
if (this._sclang) {
this._sclang.dispose();
}
this._sclang = this.createSclang();
};
NrtSc140.prototype.onSclangStdoutReceived = function(data) {
util.debug('sclang stdout: ' + data);
var msg = '' + data;
if (msg.indexOf(SC_SEVER_STARTED_MSG) !== -1) {
this._socket.emit('scserverstarted');
} else if (msg.indexOf(SC_SEVER_START_ERR_MSG) !== -1) {
// FIXME workaround
// in case starting server failed (receive following stdout).
// ERROR:
// server failed to start
// ERROR:
// server failed to start
this._socket.emit('stdout', msg);
this.restartSclang(); // restart sclang
return;
} else if (msg.indexOf(JACK_DRIVER_IGNORE_MSG) !== -1) {
// FIXME workaround
// in case other user start sclang
return; // ignore
}
this._socket.emit('stdout', msg);
};
NrtSc140.prototype.validateScCode = function(msg) {
if (msg.length < 1) {
this._socket.emit('validationerror', 'code can not be blank.');
return false;
}
if (msg.length > 140) {
this._socket.emit('validationerror', 'code can not be over 140.');
return false;
}
if (msg.indexOf('unixCmd') !== -1) {
this._socket.emit('validationerror', '\'unixCmd\' can not be executed.');
return false;
}
this._socket.emit('validationerror', '');
return true;
};
NrtSc140.prototype.stopRecording = function() {
this._sclang.evaluate('s.stopRecording;', false);
this._sclang.stopSound();
this._timeoutId = setTimeout(function() {
var aiffFile = path.join(this._audioDir, this._curFile + '.aiff');
var mp3File = path.join(this._audioDir, this._curFile + '.mp3');
convert(aiffFile, mp3File, function(error, stdout, stderr) {
util.debug('stdout: ' + stdout);
util.debug('stderr: ' + stderr);
if (error) {
util.debug('exec error: ' + error);
}
this._socket.emit('filegenerated', this._curFile);
}.bind(this));
}.bind(this), 1000);
};
function randomString() {
var buf = crypto.randomBytes(4);
var rand = '';
for (var i = 0, len = buf.length; i < len; i++) {
rand = rand + buf[i];
}
return rand;
}
function convert(aiffFile, mp3File, callback) {
child_process.exec(
'ffmpeg -i ' + aiffFile +
' -f mp3 -acodec libmp3lame -ab 192000 -ar 44100 ' + mp3File,
callback);
}
function rmFile(file) {
child_process.exec('rm -f ' + file, function(error, stdout, stderr) {
util.debug('stdout: ' + stdout);
util.debug('stderr: ' + stderr);
if (error) {
util.debug('exec error: ' + error);
}
});
}