2017-05-15 03:05:41 +00:00
|
|
|
#!/usr/bin/env node
|
|
|
|
/**
|
|
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-06-22 20:38:10 +00:00
|
|
|
let Downloader = require('./ChromiumDownloader');
|
|
|
|
let https = require('https');
|
|
|
|
let OMAHA_PROXY = 'https://omahaproxy.appspot.com/all.json';
|
2017-05-15 03:05:41 +00:00
|
|
|
|
2017-06-22 20:38:10 +00:00
|
|
|
let colors = {
|
2017-06-21 20:51:06 +00:00
|
|
|
reset: '\x1b[0m',
|
|
|
|
red: '\x1b[31m',
|
|
|
|
green: '\x1b[32m',
|
|
|
|
yellow: '\x1b[33m'
|
2017-05-15 03:05:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Table {
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {!Array<number>} columnWidths
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
constructor(columnWidths) {
|
|
|
|
this.widths = columnWidths;
|
|
|
|
}
|
2017-05-15 03:05:41 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {!Array<string>} values
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
drawRow(values) {
|
|
|
|
console.assert(values.length === this.widths.length);
|
2017-06-22 20:38:10 +00:00
|
|
|
let row = '';
|
|
|
|
for (let i = 0; i < values.length; ++i)
|
2017-06-21 20:51:06 +00:00
|
|
|
row += padCenter(values[i], this.widths[i]);
|
|
|
|
console.log(row);
|
|
|
|
}
|
2017-05-15 03:05:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (process.argv.length === 2) {
|
2017-06-21 20:51:06 +00:00
|
|
|
checkOmahaProxyAvailability();
|
|
|
|
return;
|
2017-05-15 03:05:41 +00:00
|
|
|
}
|
|
|
|
if (process.argv.length !== 4) {
|
2017-06-21 20:51:06 +00:00
|
|
|
console.log(`
|
2017-05-15 03:05:41 +00:00
|
|
|
Usage: node check_revisions.js [fromRevision] [toRevision]
|
|
|
|
|
|
|
|
This script checks availability of different prebuild chromium revisions.
|
|
|
|
Running command without arguments will check against omahaproxy revisions.`);
|
2017-06-21 20:51:06 +00:00
|
|
|
return;
|
2017-05-15 03:05:41 +00:00
|
|
|
}
|
|
|
|
|
2017-06-22 20:38:10 +00:00
|
|
|
let fromRevision = parseInt(process.argv[2], 10);
|
|
|
|
let toRevision = parseInt(process.argv[3], 10);
|
2017-05-15 03:05:41 +00:00
|
|
|
checkRangeAvailability(fromRevision, toRevision);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return {!Promise}
|
|
|
|
*/
|
|
|
|
async function checkOmahaProxyAvailability() {
|
2017-06-21 20:51:06 +00:00
|
|
|
console.log('Fetching revisions from ' + OMAHA_PROXY);
|
2017-06-22 20:38:10 +00:00
|
|
|
let platforms = await loadJSON(OMAHA_PROXY);
|
2017-06-21 20:51:06 +00:00
|
|
|
if (!platforms) {
|
|
|
|
console.error('ERROR: failed to fetch chromium revisions from omahaproxy.');
|
|
|
|
return;
|
|
|
|
}
|
2017-06-22 20:38:10 +00:00
|
|
|
let table = new Table([27, 7, 7, 7, 7]);
|
2017-06-21 20:51:06 +00:00
|
|
|
table.drawRow([''].concat(Downloader.supportedPlatforms()));
|
2017-06-22 20:38:10 +00:00
|
|
|
for (let platform of platforms) {
|
2017-06-21 20:51:06 +00:00
|
|
|
// Trust only to the main platforms.
|
|
|
|
if (platform.os !== 'mac' && platform.os !== 'win' && platform.os !== 'win64' && platform.os !== 'linux')
|
|
|
|
continue;
|
2017-06-22 20:38:10 +00:00
|
|
|
let osName = platform.os === 'win' ? 'win32' : platform.os;
|
|
|
|
for (let version of platform.versions) {
|
2017-06-21 20:51:06 +00:00
|
|
|
if (version.channel !== 'dev' && version.channel !== 'beta' && version.channel !== 'canary' && version.channel !== 'stable')
|
|
|
|
continue;
|
2017-06-22 20:38:10 +00:00
|
|
|
let revisionName = padLeft('[' + osName + ' ' + version.channel + ']', 15);
|
|
|
|
let revision = parseInt(version.branch_base_position, 10);
|
2017-06-21 20:51:06 +00:00
|
|
|
await checkAndDrawRevisionAvailability(table, revisionName, revision);
|
2017-05-15 03:05:41 +00:00
|
|
|
}
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-05-15 03:05:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {number} fromRevision
|
|
|
|
* @param {number} toRevision
|
|
|
|
* @return {!Promise}
|
|
|
|
*/
|
|
|
|
async function checkRangeAvailability(fromRevision, toRevision) {
|
2017-06-22 20:38:10 +00:00
|
|
|
let table = new Table([10, 7, 7, 7, 7]);
|
2017-06-21 20:51:06 +00:00
|
|
|
table.drawRow([''].concat(Downloader.supportedPlatforms()));
|
2017-06-22 20:38:10 +00:00
|
|
|
let inc = fromRevision < toRevision ? 1 : -1;
|
|
|
|
for (let revision = fromRevision; revision !== toRevision; revision += inc)
|
2017-06-21 20:51:06 +00:00
|
|
|
await checkAndDrawRevisionAvailability(table, '', revision);
|
2017-05-15 03:05:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {!Table} table
|
|
|
|
* @param {string} name
|
|
|
|
* @param {number} revision
|
|
|
|
* @return {!Promise}
|
|
|
|
*/
|
|
|
|
async function checkAndDrawRevisionAvailability(table, name, revision) {
|
2017-06-22 20:38:10 +00:00
|
|
|
let promises = [];
|
|
|
|
for (let platform of Downloader.supportedPlatforms())
|
2017-06-21 20:51:06 +00:00
|
|
|
promises.push(Downloader.canDownloadRevision(platform, revision));
|
2017-06-22 20:38:10 +00:00
|
|
|
let availability = await Promise.all(promises);
|
|
|
|
let allAvailable = availability.every(e => !!e);
|
|
|
|
let values = [name + ' ' + (allAvailable ? colors.green + revision + colors.reset : revision)];
|
|
|
|
for (let i = 0; i < availability.length; ++i) {
|
|
|
|
let decoration = availability[i] ? '+' : '-';
|
|
|
|
let color = availability[i] ? colors.green : colors.red;
|
2017-06-21 20:51:06 +00:00
|
|
|
values.push(color + decoration + colors.reset);
|
|
|
|
}
|
|
|
|
table.drawRow(values);
|
2017-05-15 03:05:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} url
|
|
|
|
* @return {!Promise<?Object>}
|
|
|
|
*/
|
|
|
|
function loadJSON(url) {
|
2017-06-22 20:38:10 +00:00
|
|
|
let resolve;
|
|
|
|
let promise = new Promise(x => resolve = x);
|
2017-06-21 20:51:06 +00:00
|
|
|
https.get(url, response => {
|
|
|
|
if (response.statusCode !== 200) {
|
|
|
|
resolve(null);
|
|
|
|
return;
|
|
|
|
}
|
2017-06-22 20:38:10 +00:00
|
|
|
let body = '';
|
2017-06-21 20:51:06 +00:00
|
|
|
response.on('data', function(chunk){
|
|
|
|
body += chunk;
|
|
|
|
});
|
|
|
|
response.on('end', function(){
|
2017-06-22 20:38:10 +00:00
|
|
|
let json = JSON.parse(body);
|
2017-06-21 20:51:06 +00:00
|
|
|
resolve(json);
|
2017-05-15 03:05:41 +00:00
|
|
|
});
|
2017-06-21 20:51:06 +00:00
|
|
|
}).on('error', function(e){
|
|
|
|
console.error('Error fetching json: ' + e);
|
|
|
|
resolve(null);
|
|
|
|
});
|
|
|
|
return promise;
|
2017-05-15 03:05:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {number} size
|
|
|
|
* @return {string}
|
|
|
|
*/
|
|
|
|
function spaceString(size) {
|
2017-06-21 20:51:06 +00:00
|
|
|
return new Array(size).fill(' ').join('');
|
2017-05-15 03:05:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} text
|
|
|
|
* @return {string}
|
|
|
|
*/
|
|
|
|
function filterOutColors(text) {
|
2017-06-22 20:38:10 +00:00
|
|
|
for (let colorName in colors) {
|
|
|
|
let color = colors[colorName];
|
2017-06-21 20:51:06 +00:00
|
|
|
text = text.replace(color, '');
|
|
|
|
}
|
|
|
|
return text;
|
2017-05-15 03:05:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} text
|
|
|
|
* @param {number} length
|
|
|
|
* @return {string}
|
|
|
|
*/
|
|
|
|
function padLeft(text, length) {
|
2017-06-22 20:38:10 +00:00
|
|
|
let printableCharacters = filterOutColors(text);
|
2017-06-21 20:51:06 +00:00
|
|
|
return printableCharacters.length >= length ? text : spaceString(length - text.length) + text;
|
2017-05-15 03:05:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} text
|
|
|
|
* @param {number} length
|
|
|
|
* @return {string}
|
|
|
|
*/
|
|
|
|
function padCenter(text, length) {
|
2017-06-22 20:38:10 +00:00
|
|
|
let printableCharacters = filterOutColors(text);
|
2017-06-21 20:51:06 +00:00
|
|
|
if (printableCharacters.length >= length)
|
|
|
|
return text;
|
2017-06-22 20:38:10 +00:00
|
|
|
let left = Math.floor((length - printableCharacters.length) / 2);
|
|
|
|
let right = Math.ceil((length - printableCharacters.length) / 2);
|
2017-06-21 20:51:06 +00:00
|
|
|
return spaceString(left) + text + spaceString(right);
|
2017-05-15 03:05:41 +00:00
|
|
|
}
|