/* * Copyright 2004-2014 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.dml; import java.util.Map; import java.util.TreeMap; import java.util.Map.Entry; import org.h2.command.CommandInterface; import org.h2.command.Prepared; import org.h2.engine.Database; import org.h2.engine.Session; import org.h2.expression.Expression; import org.h2.expression.ExpressionColumn; import org.h2.mvstore.db.MVTableEngine.Store; import org.h2.result.LocalResult; import org.h2.result.ResultInterface; import org.h2.store.PageStore; import org.h2.table.Column; import org.h2.value.Value; import org.h2.value.ValueString; /** * This class represents the statement * EXPLAIN */ public class Explain extends Prepared { private Prepared command; private LocalResult result; private boolean executeCommand; public Explain(Session session) { super(session); } public void setCommand(Prepared command) { this.command = command; } public Prepared getCommand() { return command; } @Override public void prepare() { command.prepare(); } public void setExecuteCommand(boolean executeCommand) { this.executeCommand = executeCommand; } @Override public ResultInterface queryMeta() { return query(-1); } @Override protected void checkParameters() { // Check params only in case of EXPLAIN ANALYZE if (executeCommand) { super.checkParameters(); } } @Override public ResultInterface query(int maxrows) { Column column = new Column("PLAN", Value.STRING); Database db = session.getDatabase(); ExpressionColumn expr = new ExpressionColumn(db, column); Expression[] expressions = { expr }; result = new LocalResult(session, expressions, 1); if (maxrows >= 0) { String plan; if (executeCommand) { PageStore store = null; Store mvStore = null; if (db.isPersistent()) { store = db.getPageStore(); if (store != null) { store.statisticsStart(); } mvStore = db.getMvStore(); if (mvStore != null) { mvStore.statisticsStart(); } } if (command.isQuery()) { command.query(maxrows); } else { command.update(); } plan = command.getPlanSQL(); Map<String, Integer> statistics = null; if (store != null) { statistics = store.statisticsEnd(); } else if (mvStore != null) { statistics = mvStore.statisticsEnd(); } //输出格式类似这样: /* total: 111 key1: 10 (9%) key2: 101 (90%) */ if (statistics != null) { int total = 0; for (Entry<String, Integer> e : statistics.entrySet()) { total += e.getValue(); } if (total > 0) { statistics = new TreeMap<String, Integer>(statistics); StringBuilder buff = new StringBuilder(); if (statistics.size() > 1) { buff.append("total: ").append(total).append('\n'); } for (Entry<String, Integer> e : statistics.entrySet()) { int value = e.getValue(); int percent = (int) (100L * value / total); buff.append(e.getKey()).append(": ").append(value); if (statistics.size() > 1) { buff.append(" (").append(percent).append("%)"); } buff.append('\n'); } plan += "\n/*\n" + buff.toString() + "*/"; } } } else { plan = command.getPlanSQL(); } add(plan); } result.done(); return result; } private void add(String text) { Value[] row = { ValueString.get(text) }; result.addRow(row); } @Override public boolean isQuery() { return true; } @Override public boolean isTransactional() { return true; } @Override public boolean isReadOnly() { return command.isReadOnly(); } @Override public int getType() { return executeCommand ? CommandInterface.EXPLAIN_ANALYZE : CommandInterface.EXPLAIN; } }