blob: 3b9be36e66d546301528ee9e9143cab5a8649c40 [file] [log] [blame]
/*
* Copyright 2009-2010 by The Regents of the University of California
* 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 from
*
* 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.
*/
package edu.uci.ics.hyracks.control.cc.adminconsole.pages;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.markup.html.link.BookmarkablePageLink;
import org.apache.wicket.markup.html.list.ListItem;
import org.apache.wicket.markup.html.list.ListView;
import org.apache.wicket.request.mapper.parameter.PageParameters;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import edu.uci.ics.hyracks.control.cc.ClusterControllerService;
import edu.uci.ics.hyracks.control.cc.web.util.JSONUtils;
import edu.uci.ics.hyracks.control.cc.work.GetJobSummariesJSONWork;
import edu.uci.ics.hyracks.control.cc.work.GetNodeSummariesJSONWork;
public class IndexPage extends AbstractPage {
private static final long serialVersionUID = 1L;
public IndexPage() throws Exception {
ClusterControllerService ccs = getAdminConsoleApplication().getClusterControllerService();
GetNodeSummariesJSONWork gnse = new GetNodeSummariesJSONWork(ccs);
ccs.getWorkQueue().scheduleAndSync(gnse);
JSONArray nodeSummaries = gnse.getSummaries();
add(new Label("node-count", String.valueOf(nodeSummaries.length())));
ListView<JSONObject> nodeList = new ListView<JSONObject>("node-list", JSONUtils.toList(nodeSummaries)) {
private static final long serialVersionUID = 1L;
@Override
protected void populateItem(ListItem<JSONObject> item) {
JSONObject o = item.getModelObject();
try {
item.add(new Label("node-id", o.getString("node-id")));
item.add(new Label("heap-used", o.getString("heap-used")));
item.add(new Label("system-load-average", o.getString("system-load-average")));
PageParameters params = new PageParameters();
params.add("node-id", o.getString("node-id"));
item.add(new BookmarkablePageLink<Object>("node-details", NodeDetailsPage.class, params));
} catch (JSONException e) {
throw new RuntimeException(e);
}
}
};
add(nodeList);
GetJobSummariesJSONWork gjse = new GetJobSummariesJSONWork(ccs);
ccs.getWorkQueue().scheduleAndSync(gjse);
JSONArray jobSummaries = gjse.getSummaries();
ListView<JSONObject> jobList = new ListView<JSONObject>("jobs-list", JSONUtils.toList(jobSummaries)) {
private static final long serialVersionUID = 1L;
@Override
protected void populateItem(ListItem<JSONObject> item) {
JSONObject o = item.getModelObject();
try {
item.add(new Label("job-id", o.getString("job-id")));
item.add(new Label("application-name", o.getString("application-name")));
item.add(new Label("status", o.getString("status")));
item.add(new Label("create-time", o.getString("create-time")));
item.add(new Label("start-time", o.getString("start-time")));
item.add(new Label("end-time", o.getString("end-time")));
PageParameters params = new PageParameters();
params.add("job-id", o.getString("job-id"));
item.add(new BookmarkablePageLink<Object>("job-details", JobDetailsPage.class, params));
} catch (JSONException e) {
throw new RuntimeException(e);
}
}
};
add(jobList);
}
}