|
|
|
@ -28,13 +28,35 @@ var refreshInterval=2;
|
|
|
|
|
var wait=0;
|
|
|
|
|
var changing=false; //change the interval
|
|
|
|
|
var statusLoaded=true;
|
|
|
|
|
/* Running crawls table DOM element */
|
|
|
|
|
var crawlsTable;
|
|
|
|
|
/* Size of the running crawls table header */
|
|
|
|
|
var crawlsHeadLength;
|
|
|
|
|
/* Running crawls legend DOM element */
|
|
|
|
|
var runningCrawlsLegend;
|
|
|
|
|
/* true when debug is enabled */
|
|
|
|
|
var debug;
|
|
|
|
|
|
|
|
|
|
function initCrawler(){
|
|
|
|
|
initCrawlProfiles();
|
|
|
|
|
|
|
|
|
|
refresh();
|
|
|
|
|
//loadInterval=window.setInterval("refresh()", refreshInterval*1000);
|
|
|
|
|
countInterval=window.setInterval("countdown()", 1000);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Init variables used to refresh the running crawls table
|
|
|
|
|
*/
|
|
|
|
|
function initCrawlProfiles() {
|
|
|
|
|
debug = document.getElementById("headerDebug") != null;
|
|
|
|
|
crawlsTable = document.getElementById("crawlProfiles");
|
|
|
|
|
if(crawlsTable != null && crawlsTable.rows != null) {
|
|
|
|
|
crawlsHeadLength = crawlsTable.tHead != null ? crawlsTable.tHead.rows.length : 0;
|
|
|
|
|
}
|
|
|
|
|
runningCrawlsLegend = document.getElementById("runningCrawlsLegend");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function changeInterval(){
|
|
|
|
|
if(!changing){
|
|
|
|
|
window.clearInterval(countInterval);
|
|
|
|
@ -125,6 +147,8 @@ function handleStatus(){
|
|
|
|
|
document.getElementById("citationSegmentCount").firstChild.nodeValue=citationSegmentCount;
|
|
|
|
|
document.getElementById("rwipublictextSize").firstChild.nodeValue=rwipublictext;
|
|
|
|
|
document.getElementById("rwipublictextSegmentCount").firstChild.nodeValue=rwipublictextSegmentCount;
|
|
|
|
|
|
|
|
|
|
refreshRunningCrawls(statusTag);
|
|
|
|
|
|
|
|
|
|
var postprocessing = getFirstChild(statusTag, "postprocessing");
|
|
|
|
|
document.getElementById("postprocessing_status").firstChild.nodeValue=getValue(getFirstChild(postprocessing, "status"));
|
|
|
|
@ -174,6 +198,172 @@ function handleStatus(){
|
|
|
|
|
statusLoaded=true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Insert a new crawl line to the end of the running crawls table
|
|
|
|
|
* @param table crawls table HTML DOM node
|
|
|
|
|
* @param crawl crawl profile node from status_p.xml
|
|
|
|
|
* @param handle {String} identifier of the running crawl profile
|
|
|
|
|
* @param status {String} running status of the crawl profile
|
|
|
|
|
*/
|
|
|
|
|
function insertCrawlRaw(table, crawl, handle, status) {
|
|
|
|
|
/* Insert a row in the table at the end */
|
|
|
|
|
var newRow = table.insertRow();
|
|
|
|
|
newRow.className = ((table.rows.length - crawlsHeadLength) % 2) == 0 ? "TableCellLight" : "TableCellDark";
|
|
|
|
|
newRow.id = handle;
|
|
|
|
|
|
|
|
|
|
/* Insert name cell */
|
|
|
|
|
var newCell = newRow.insertCell();
|
|
|
|
|
var newText = document.createTextNode(getValue(getFirstChild(crawl, "name")));
|
|
|
|
|
newCell.appendChild(newText);
|
|
|
|
|
|
|
|
|
|
if(debug) {
|
|
|
|
|
/* Insert count cell when debug is enabled */
|
|
|
|
|
newCell = newRow.insertCell();
|
|
|
|
|
newCell.textContent = getValue(getFirstChild(crawl, "count"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Insert status cell */
|
|
|
|
|
newCell = newRow.insertCell();
|
|
|
|
|
newCell.id = handle + "_status_cell";
|
|
|
|
|
|
|
|
|
|
if(status == "alive") {
|
|
|
|
|
var newDiv = document.createElement("div");
|
|
|
|
|
newDiv.id = handle + "_status";
|
|
|
|
|
newDiv.style = "text-decoration:blink;float:left;";
|
|
|
|
|
|
|
|
|
|
newText = document.createTextNode("Running");
|
|
|
|
|
newDiv.appendChild(newText);
|
|
|
|
|
|
|
|
|
|
newCell.appendChild(newDiv);
|
|
|
|
|
|
|
|
|
|
var newForm = document.createElement("form");
|
|
|
|
|
newForm.id = handle + "_terminate";
|
|
|
|
|
newForm.style = "float:left;";
|
|
|
|
|
newForm.action = "Crawler_p.html";
|
|
|
|
|
newForm.method = "get";
|
|
|
|
|
newForm.enctype="multipart/form-data";
|
|
|
|
|
newForm["accept-charset"]="UTF-8";
|
|
|
|
|
|
|
|
|
|
newDiv = document.createElement("div");
|
|
|
|
|
|
|
|
|
|
var newInput = document.createElement("input");
|
|
|
|
|
newInput.type = "hidden";
|
|
|
|
|
newInput.name = "handle";
|
|
|
|
|
newInput.value = handle;
|
|
|
|
|
|
|
|
|
|
newDiv.appendChild(newInput);
|
|
|
|
|
|
|
|
|
|
newInput = document.createElement("input");
|
|
|
|
|
newInput.type = "submit";
|
|
|
|
|
newInput.name = "terminate";
|
|
|
|
|
newInput.value = "Terminate";
|
|
|
|
|
newInput.className = "btn btn-danger btn-xs";
|
|
|
|
|
|
|
|
|
|
newDiv.appendChild(newInput);
|
|
|
|
|
|
|
|
|
|
newForm.appendChild(newDiv);
|
|
|
|
|
|
|
|
|
|
newCell.appendChild(newForm);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Refresh status cell text and terminate button presence
|
|
|
|
|
* @param handle name of the crawl
|
|
|
|
|
* @param status current crawl status label
|
|
|
|
|
*/
|
|
|
|
|
function refreshStatusCell(handle, status) {
|
|
|
|
|
var handleStatus = document.getElementById(handle + "_status");
|
|
|
|
|
if(handleStatus != null) {
|
|
|
|
|
handleStatus.textContent = status;
|
|
|
|
|
}
|
|
|
|
|
var terminateForm = document.getElementById(handle + "_terminate");
|
|
|
|
|
if(terminateForm != null && terminateForm.parentElement) {
|
|
|
|
|
terminateForm.parentElement.removeChild(terminateForm);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Refresh the count in running crawls legend
|
|
|
|
|
* @param legend the HTML DOM legend element
|
|
|
|
|
* @param crawls crawls node from xml api status_p.xml
|
|
|
|
|
*/
|
|
|
|
|
function refreshCrawlsLegend(legend, crawls) {
|
|
|
|
|
var count = crawls.getAttribute("count");
|
|
|
|
|
if(count && legend != null) {
|
|
|
|
|
legend.textContent = "Running Crawls (" + count + ")";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Refresh dark/light rows style
|
|
|
|
|
* @param table running crawls table
|
|
|
|
|
*/
|
|
|
|
|
function refreshRowsStyle(table, headLength) {
|
|
|
|
|
for(var i = headLength; i < table.rows.length; i++) {
|
|
|
|
|
raw = table.rows[i];
|
|
|
|
|
raw.className = ((i - headLength) % 2) == 0 ? "TableCellLight" : "TableCellDark";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Refresh running crawls table
|
|
|
|
|
*
|
|
|
|
|
* @param statusTag
|
|
|
|
|
* status tag from xml api status_p.xml
|
|
|
|
|
*/
|
|
|
|
|
function refreshRunningCrawls(statusTag) {
|
|
|
|
|
var crawls = getFirstChild(statusTag, "crawls");
|
|
|
|
|
/* crawls node should be present even when no crawl is running */
|
|
|
|
|
if(crawls != null) {
|
|
|
|
|
/* Update the table when present */
|
|
|
|
|
if(crawlsTable != null && crawlsTable.rows != null) {
|
|
|
|
|
var processedHandles = {}, crawlNode = getFirstChild(crawls, "crawl");
|
|
|
|
|
|
|
|
|
|
if(crawlNode) {
|
|
|
|
|
var handle, rowIndex, handleCell;
|
|
|
|
|
/* Loop on crawl node elements from xml */
|
|
|
|
|
for(; crawlNode; crawlNode = getNextSibling(crawlNode, "crawl")) {
|
|
|
|
|
handle = getValue(getFirstChild(crawlNode, "handle"));
|
|
|
|
|
if(handle != null) {
|
|
|
|
|
processedHandles[handle] = crawlNode;
|
|
|
|
|
status = getValue(getFirstChild(crawlNode, "status"));
|
|
|
|
|
/* Let's try to get the crawls table cell with id prefixed by this handle */
|
|
|
|
|
handleCell = document.getElementById(handle + "_status_cell");
|
|
|
|
|
if(handleCell == null) {
|
|
|
|
|
insertCrawlRaw(crawlsTable, crawlNode, handle, status);
|
|
|
|
|
refreshCrawlsLegend(runningCrawlsLegend, crawls);
|
|
|
|
|
refreshRowsStyle(crawlsTable, crawlsHeadLength);
|
|
|
|
|
} else if(status != "alive"){
|
|
|
|
|
refreshStatusCell(handle, status);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Collect raws to delete */
|
|
|
|
|
var raw, rawsToDelete = [];
|
|
|
|
|
for(var i = crawlsHeadLength; i < crawlsTable.rows.length; i++) {
|
|
|
|
|
raw = crawlsTable.rows[i];
|
|
|
|
|
if(processedHandles[raw.id] == null) {
|
|
|
|
|
rawsToDelete.push(raw);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Delete raws */
|
|
|
|
|
for(var i = 0; i < rawsToDelete.length; i++) {
|
|
|
|
|
raw = rawsToDelete[i];
|
|
|
|
|
raw.parentElement.removeChild(raw);
|
|
|
|
|
}
|
|
|
|
|
/* Refresh legend and rows style (dark/light alternate) */
|
|
|
|
|
if(rawsToDelete.length > 0) {
|
|
|
|
|
refreshCrawlsLegend(runningCrawlsLegend, crawls);
|
|
|
|
|
refreshRowsStyle(crawlsTable, crawlsHeadLength);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function putQueueState(queue, state) {
|
|
|
|
|
a = document.getElementById(queue + "stateA");
|
|
|
|
|
img = document.getElementById(queue + "stateIMG");
|
|
|
|
|