#publish 测试自动更新
parent
ca25285d2a
commit
5e426908c6
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 302 KiB |
@ -0,0 +1,64 @@
|
|||||||
|
onmessage = function (e) {
|
||||||
|
var request = e.data;
|
||||||
|
|
||||||
|
switch (request.command) {
|
||||||
|
case 'compare':
|
||||||
|
compare_file_info(request.local_file_info, request.remote_file_info);
|
||||||
|
send_command('finish', []);
|
||||||
|
break;
|
||||||
|
case 'finish':
|
||||||
|
send_command('finish');
|
||||||
|
break;
|
||||||
|
case 'delete':
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function compare_file_info(local_file_info, remote_file_info) {
|
||||||
|
if (!remote_file_info || local_file_info.is_dir !== remote_file_info.is_dir) {
|
||||||
|
send_command('delete', generate_file_list(local_file_info));
|
||||||
|
send_command('update', generate_file_list(remote_file_info));
|
||||||
|
} else if (local_file_info.sha_512 !== remote_file_info.sha_512) {
|
||||||
|
if (local_file_info.is_dir) {
|
||||||
|
var visited_children = new Set();
|
||||||
|
for (var i in local_file_info.children) {
|
||||||
|
compare_file_info(local_file_info.children[i], remote_file_info.children[i]);
|
||||||
|
visited_children.add(i);
|
||||||
|
}
|
||||||
|
for (var i in remote_file_info.children) {
|
||||||
|
if (!visited_children.has(i)) {
|
||||||
|
send_command('update', generate_file_list(remote_file_info.children[i]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
send_command('update', generate_file_list(remote_file_info));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function generate_file_list(file_info) {
|
||||||
|
if (!file_info) { return []; }
|
||||||
|
|
||||||
|
var file_list = [];
|
||||||
|
if (file_info.is_dir) {
|
||||||
|
for (var i in file_info.children) {
|
||||||
|
file_list = file_list.concat(generate_file_list(file_info.children[i]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_list.push(file_info.file_name);
|
||||||
|
return file_list;
|
||||||
|
}
|
||||||
|
|
||||||
|
// command: delete, update, finish
|
||||||
|
function send_command(command, file_list) {
|
||||||
|
var command_data = {
|
||||||
|
command: command,
|
||||||
|
file_list: file_list
|
||||||
|
};
|
||||||
|
postMessage(command_data);
|
||||||
|
}
|
||||||
|
|
||||||
|
function delete_file(file_name) {
|
||||||
|
|
||||||
|
}
|
@ -1,24 +0,0 @@
|
|||||||
onmessage = function (e) {
|
|
||||||
var local_file_info = e.data[0];
|
|
||||||
var remote_file_info = e.data[1];
|
|
||||||
|
|
||||||
local_file_info.is_dir = local_file_info.is_dir || false;
|
|
||||||
remote_file_info.is_dir = remote_file_info.is_dir || false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function compare_file_info(local_file_info, remote_file_info) {
|
|
||||||
}
|
|
||||||
|
|
||||||
function compare_file_file(local_file_info, remote_file_info) {
|
|
||||||
console.assert(local_file_info.is_file === remote_file_info.is_file);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
function generate_delete_file_list(file_info) {
|
|
||||||
var delete_file_list = [];
|
|
||||||
if (file_info.is_dir) {
|
|
||||||
for (var i = 0; i < file_info.children.length; i++) {
|
|
||||||
delete_file_list = delete_file_list.concat(generate_delete_file_list(file_info.children[i]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,12 +1,17 @@
|
|||||||
{
|
{
|
||||||
"name": "",
|
"name": "ycrpg",
|
||||||
"main": "index.html",
|
"main": "index.html",
|
||||||
"js-flags": "--expose-gc",
|
"js-flags": "--expose-gc",
|
||||||
"window": {
|
"window": {
|
||||||
"title": "",
|
"title": "异常生物见闻录",
|
||||||
"toolbar": false,
|
"toolbar": true,
|
||||||
"width": 816,
|
"width": 1024,
|
||||||
"height": 624,
|
"height": 560,
|
||||||
"icon": "icon/icon.png"
|
"icon": "icon/icon.png"
|
||||||
}
|
},
|
||||||
}
|
"chromium-args": "--enable-node-worker",
|
||||||
|
"node-remote": "<all_urls>",
|
||||||
|
"web_accessible_resources": [
|
||||||
|
"*"
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue