1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
/*
* 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.netbeans.lib.ddl.util;
import java.util.*;
import org.netbeans.lib.ddl.*;
/**
* Command buffer used to execute a bunch of commands. Main advantages of using
* buffer is:
* - Optimized connection handling. Buffer opens JDBC connection before executing
* of first command and closes it after a last one. It's safely then manually
* handling connection and better then leaving commands open and close connection
* for each comand separately.
* - Exception handler. You can assign an exception handler to buffer. When any
* error occures during the execution, this handler catches it and lets user to
* decide if continue or not (when you're dropping nonexisting table, you probably
* would like to continue).
* - Debgging. You can set up debug mode and buffer will print each command to
* System.out before execution.
*
* @author Slavek Psenicka
*/
public class CommandBuffer
{
/** Buffered items */
Vector commands;
/** Debug mode */
boolean debugmode;
/** Execution command with some exception */
boolean executionWithException;
/** Adds command to buffer
* @param cmd Command to add.
*/
public void add(DDLCommand cmd)
{
if (commands == null) commands = new Vector();
commands.add(cmd);
}
/** Returns true if debugging mode is on.
* You can set up debug mode and buffer will print each command to
* System.out before execution.
*/
public boolean isDebugMode()
{
return debugmode;
}
/** Sets debug mode on/off.
* You can set up debug mode and buffer will print each command to
* System.out before execution.
* @param flag true = debugging enabled
*/
public void setDebugMode(boolean flag)
{
debugmode = flag;
}
/** Returns a string with string representation of all commands in buffer
*/
public String getCommands()
throws DDLException
{
String cmds = "";
Enumeration cmd_e = commands.elements();
while (cmd_e.hasMoreElements()) {
DDLCommand e_cmd = (DDLCommand)cmd_e.nextElement();
cmds = cmds + e_cmd.getCommand() + "\n";
}
return cmds;
}
/** Executes commnds in buffer.
* Buffer opens JDBC connection before executing (if isn't already open)
* of first command and closes it after a last one. It's safely then manually
* handling connection and better then leaving commands open and close connection
* for each comand separately. You can also assign an exception handler to buffer.
* When any error occures during the execution, this handler catches it and lets user to
* decide if continue or not (when you're dropping nonexisting table, you probably
* would like to continue).
*/
public void execute()
throws DDLException
{
boolean opencon = false;
executionWithException = false;
DatabaseSpecification spec = null;
Enumeration cmd_e = commands.elements();
while (cmd_e.hasMoreElements()) {
DDLCommand e_cmd = (DDLCommand)cmd_e.nextElement();
if (spec == null) {
spec = e_cmd.getSpecification();
if (spec.getJDBCConnection() == null) {
opencon = true;
spec.openJDBCConnection();
}
}
if (debugmode) System.out.println(e_cmd);
e_cmd.execute();
executionWithException = e_cmd.wasException();
}
if (opencon) spec.closeJDBCConnection();
}
/** information about appearance some exception in the last execute a bunch of commands */
public boolean wasException() {
return executionWithException;
}
}
|