📄 player.java
字号:
/*
* Copyright 2004-2008 H2 Group. Licensed under the H2 License, Version 1.0
* (license2)
*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package org.h2.test.trace;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.io.LineNumberReader;
import java.util.HashMap;
/**
* This tool can re-run Java style log files. There is no size limit.
*/
public class Player {
// TODO support InputStream;
// TODO support Reader;
// TODO support int[];
// TODO support Blob and Clob;
// TODO support Calendar
// TODO support Object
// TODO support Object[]
// TODO support URL
// TODO support Array
// TODO support Ref
// TODO support SQLInput, SQLOutput
// TODO support Properties
// TODO support Map
// TODO support SQLXML
private boolean log;
private static final String[] IMPORTED_PACKAGES = { "", "java.lang.", "java.sql.", "javax.sql." };
private HashMap objects = new HashMap();
/**
* Execute a trace file using the command line. The log file name to execute
* (replayed) must be specified as the last parameter. The following
* optional command line parameters are supported:
* <ul>
* <li><code>-log</code> to enable logging the executed statement to
* System.out
* </ul>
*
* @param args the arguments of the application
*/
public static void main(String[] args) throws Exception {
new Player().run(args);
}
/**
* Execute a trace file.
*
* @param fileName
* @param log print debug information
* @param checkResult if the result of each method should be compared
* against the result in the file
*/
public static void execute(String fileName, boolean log, boolean checkResult) throws IOException {
new Player().runFile(fileName, log);
}
private void run(String[] args) throws IOException {
String fileName = "test.log.db";
try {
fileName = args[args.length - 1];
for (int i = 0; i < args.length - 1; i++) {
if ("-log".equals(args[i])) {
log = true;
} else {
throw new Error("Unknown setting: " + args[i]);
}
}
} catch (Exception e) {
e.printStackTrace();
System.out.println("Usage: java " + getClass().getName()
+ " [-log] <fileName>");
return;
}
runFile(fileName, log);
}
private void runFile(String fileName, boolean log) throws IOException {
this.log = log;
LineNumberReader reader = new LineNumberReader(new BufferedReader(
new FileReader(fileName)));
while (true) {
String line = reader.readLine();
if (line == null) {
break;
}
runLine(line.trim());
}
}
void log(String s) {
if (log) {
System.out.println(s);
}
}
private void runLine(String line) {
if (!line.startsWith("/**/")) {
return;
}
line = line.substring("/**/".length()) + ";";
Statement s = Parser.parseStatement(this, line);
log("> " + s.toString());
try {
s.execute();
} catch (Exception e) {
e.printStackTrace();
log("error: " + e.toString());
}
}
static Class getClass(String className) {
for (int i = 0; i < IMPORTED_PACKAGES.length; i++) {
try {
return Class.forName(IMPORTED_PACKAGES[i] + className);
} catch (ClassNotFoundException e) {
}
}
throw new Error("Class not found: " + className);
}
void assign(String objectName, Object obj) {
objects.put(objectName, obj);
}
Object getObject(String name) {
return objects.get(name);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -