-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtuner.js
211 lines (197 loc) · 7.62 KB
/
tuner.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
/*jslint node: true */
//"use strict";
var CONFIG = require('./config');
var Firebase = require('firebase');
var myRootRef = new Firebase(CONFIG.FB_URL);
var spawn = require('child_process').spawn;
//var hdhomerun_config = "./test/hdhomerun_config.sh";
var hdhomerun_config = "hdhomerun_config";
var pkg_name = "";
var pkg_count = -1;
var pkg_channel = {};
var name = function (return_value) {
if (pkg_name === "") {
// Spawn and get this info in the future.
var result = spawn(hdhomerun_config, ["discover"]);
var temp_data = "";
result.stdout.on('data', function (data) {
temp_data += data;
});
result.on('close', function (code) {
var scan_results = temp_data.split(" ");
pkg_name = scan_results[2];
console.log({name : {code : code}});
return_value(scan_results[2]);
});
} else {
return_value(pkg_name);
}
};
// 0 based count
var count = function (return_value) {
if (pkg_count === -1) {
name(function (local_name) {
console.log(local_name);
var result = spawn(hdhomerun_config, [local_name, "get", "/sys/debug/"]);
var temp_data = "";
var res = "";
var i;
var tuner_count;
result.stdout.on('data', function (data) {
temp_data += data;
});
result.on('close', function (code) {
var scan_results = temp_data.split("\n");
for (i = 0; i < scan_results.length; i += 1) {
tuner_count = "";
tuner_count = /^t(\d+): pt=(\d+) cal=/.exec(scan_results[i]);
if (tuner_count != null) {
pkg_count = tuner_count[1];
res = tuner_count[1];
}
}
console.log({count : {code : code}});
return_value(res);
});
});
} else {
return_value(pkg_count);
}
};
var cached_channel = function () {
return pkg_channel;
};
var channel = function (return_value) {
if (Object.keys(pkg_channel).length === 0) {
myRootRef.child("channel_data").once('value', function (childSnapshot) {
var i;
if (childSnapshot.val() === null || childSnapshot.val() === "") {
console.log("Made it to Inside of Channel");
name(function (local_name) {
// The TUNER should be found programmatically.
console.log("Made it to Name Inside of Channel");
var result = spawn(hdhomerun_config, [local_name, "scan", "/tuner0"]);
var temp_data = "";
result.stdout.on('data', function (data) {
temp_data += data;
});
result.on('close', function (code) {
console.log("Parsing scan results");
var scan_results = temp_data.split("\n");
console.log(scan_results);
var current_channel = "";
for (i = 0; i < scan_results.length; i += 1) {
var xchannel = /us-bcast:(\d+)/.exec(scan_results[i]);
if (xchannel != null) {
current_channel = xchannel[1];
console.log(current_channel);
}
var program = /PROGRAM (\d+): (\d+.\d+)(.*)/.exec(scan_results[i]);
console.log(scan_results[i]);
if (program != null) {
console.log("Program is not null!");
console.log(program);
pkg_channel[program[2].replace('.', '-')] = [current_channel, program[1], program[3]];
console.log(pkg_channel);
}
}
console.log("Finished Getting Channels");
console.log(pkg_channel);
if (Object.keys(pkg_channel).length !== 0){
myRootRef.update({
channel_data: pkg_channel
});
}
return_value(pkg_channel);
});
});
} else {
pkg_channel = childSnapshot.val();
return_value(pkg_channel);
}
});
} else {
return_value(pkg_channel);
}
};
var tune = function (tuner_index, tune_channel, tune_program) {
//hdhomerun_config 103DA852 set /tuner$5/channel auto:$2
//hdhomerun_config 103DA852 set /tuner$5/program $3
name(function (local_name) {
result = spawn(hdhomerun_config, [local_name, "set", "/tuner" + tuner_index + "/channel auto:" + tune_channel]);
var temp_data = "";
result.stdout.on('data', function (data) {
temp_data += data;
});
result.on('close', function (code) {
var scan_results = temp_data.split("\n");
// figure out if we changed channels
var progtemp_data = "";
progresult = spawn(hdhomerun_config, [local_name, "set", "/tuner" + tuner_index + "/program " + tune_channel]);
progresult.stdout.on('data', function (data) {
progtemp_data += data;
});
progresult.on('close', function (code) {
// figure out if we changed channels
});
});
});
};
function conflict(time1, duration1, time2, duration2) {
if ((time1 < time2) && (time2 < time1 + duration1)) {
return true;
}
if ((time2 < time1) && (time1 < time2 + duration2)) {
// so we've found a conflict
return true;
}
if (time1 === time2) {
return true;
}
return false;
}
// The scheduler should have a "conflict resolution"
var get = function (date, duration, scheduled_jobs) {
var return_val = 0; // always try to return 0 by default
var number_of_tuners = 0; // Assume only 1 tuner at a minimum
if (pkg_count !== -1){
number_of_tuners = pkg_count; // But if our tuner count is valid, well wemay have more tuners available so get that value :)
}
if (scheduled_jobs != null) {
//1. Look through all scheduled tasks and look for a date that is during the date time + duration (overlapping).
//1a. If none exists, then return 0
//1b. If only one exists, check the tuner identifier, if it's 0 return 1
//1b. If more than one exists, set fb/conflict list
for (var key in scheduled_jobs) {
// If the scheduled job is before this job
if (conflict(scheduled_jobs[key]["date"], scheduled_jobs[key]["length"], date, duration)) {
// total conflicts - 1 means we have had more conflicts than tuners and have to fail
if (return_val == number_of_tuners - 1) {
//we can't recover
return -1;
} else {
return_val++;
}
}
}
}
return return_val;
};
var start = function (result) {
name(function (res) {
count(function (res) {
channel(function (res) {
result("success");
}); // end channel
}); // end count
}); // end name
};
module.exports = {
name: name,
count: count,
channel: channel,
tune: tune,
start: start,
cached_channel: cached_channel,
get : get
};