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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
|
/*
========== licence begin GPL
Copyright (C) 2002-2003 SAP AG
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
========== licence end
*/
package com.sap.dbtech.powertoys;
import java.sql.SQLException;
import java.util.Properties;
import com.sap.dbtech.jdbc.DriverSapDB;
import com.sap.dbtech.rte.comm.JdbcCommFactory;
import com.sap.dbtech.rte.comm.JdbcCommunication;
import com.sap.dbtech.rte.comm.NativeComm;
import com.sap.dbtech.rte.comm.RTEException;
import com.sap.dbtech.rte.comm.SocketComm;
import com.sap.dbtech.util.MessageKey;
import com.sap.dbtech.util.MessageTranslator;
import com.sap.dbtech.util.StructuredMem;
import com.sap.dbtech.util.Tracer;
/**
* Executes loader commands for SAP DB
*/
public class Loader
{
public static final String hostKeyC = "host";
private static final String hostDefaultC = "";
public static final String dbnameKeyC = "dbname";
private static final String dbnameDefaultC = "";
public static final String dbrootKeyC = "dbroot";
private static final String dbrootDefaultC = "";
public static final String userKeyC = "user";
private static final String pgmNameC = "lserver";
private static final String transportC = "transport";
private static final int alignSizeC = 8;
static final int indicatorLengthC = 4;
private JdbcCommunication connection;
private boolean inCommunication;
/**
creates a new Loader.
The following properties are used by this class:
<UL>
<LI>"host": start lserver on this host
<LI>"dbname": start lserver for this database
<LI>"dbroot": start dbmserver for this release/diretory
<LI>"user": user,pwd implicit lserver connect (not yet implemented)
<UL>
*/
public Loader(Properties properties) throws RTEException {
String host = properties.getProperty(hostKeyC, hostDefaultC);
String dbname = properties.getProperty(dbnameKeyC, dbnameDefaultC);
String dbroot = properties.getProperty(dbrootKeyC, dbrootDefaultC);
String transport = properties.getProperty(transportC, "socket");
JdbcCommFactory factory = null;
try {
try {
if (DriverSapDB.loadNativeCommunication() == DriverSapDB.nativeCommunication_enabled) {
factory = NativeComm.factory;
} else {
factory = SocketComm.factory;
// if native communication is available on all platforms the
// following should be uncomment
// throw new RTEException(MessageTranslator.translate(
// MessageKey.ERROR_LIBRARYNOTLOADED,
// DriverSapDB.nativeCommunication_dllName_C, ""), -10899);
}
DriverSapDB.openTrace("",properties);
Tracer.print ("new Loader Connection ", properties);
this.connection = factory.xopen(host, dbname, dbroot, pgmNameC,
properties);
} catch (Error linkErr) {
factory = SocketComm.factory;
this.connection = factory.xopen(host, dbname,
dbroot, pgmNameC, properties);
// if native communication is available on all platforms the
// following should be uncomment
// throw new RTEException(MessageTranslator.translate(
// MessageKey.ERROR_LIBRARYNOTLOADED,
// DriverSapDB.nativeCommunication_dllName_C, linkErr
// .toString()), -10899);
}
}catch (RTEException rteExc) {
Tracer.println ("using "+factory);
Tracer.println ("=> FAILED");
throw rteExc;
}
Tracer.println ("using "+this.connection);
Tracer.println ("=> " + this);
}
/**
* closes the connection
*/
public void release ()
throws RTEException
{
Tracer.println (this+"->release ()");
if (this.connection != null) {
try {
try {
this.cmd("release");
}
catch (Exception ignore) {}
this.connection.release ();
}
finally {
this.connection = null;
}
}
}
/**
*
*/
public void finalize ()
throws RTEException
{
this.release ();
}
/**
* executes <i>cmdString</i> in the current lserver session.
*
* @exception LoaderException
* @exception RTEException
*/
public String cmd(String cmdString) throws RTEException, LoaderException {
Tracer.println(this + "->cmd (" + cmdString + ")");
StructuredMem request;
int alignedLen;
StructuredMem reply;
String result;
try {
/*
* send request
*/
request = this.connection.getRequestPacket();
if (cmdString.length() == 0) {
request.putBytes(new byte[]{0x00}, 0);
alignedLen = (1+ alignSizeC - 1) / alignSizeC * alignSizeC;
} else {
request.putString(cmdString, 0);
alignedLen = (cmdString.length() + alignSizeC - 1) / alignSizeC * alignSizeC;
}
this.connection.request(request, alignedLen);
this.inCommunication = true;
reply = this.connection.receive();
this.inCommunication = false;
/*
* parse result and throw exception
*/
String errorIndicator = reply.getString(0, Math.min(
indicatorLengthC, reply.size()));
if (errorIndicator.startsWith("OK")) {
int dataStart = errorIndicator.indexOf('\n') + 1;
result = reply.getString(dataStart, reply.size() - dataStart);
} else {
throw LoaderException.create(reply);
}
Tracer.println("=> "+result);
return result;
} catch (LoaderException e) {
Tracer.println(" <-!");
Tracer.traceException(e);
throw e;
} catch (RTEException err) {
Tracer.println(" <-!");
Tracer.traceException(err);
throw err;
} finally {
this.inCommunication = false;
}
}
public void cancel() throws SQLException
{
if(inCommunication) {
this.connection.cancel();
}
}
/**
* creates a new Loader by specifying the host and the dbname
*/
public static Loader dbLoader (String host, String dbname)
throws RTEException
{
Properties props = new Properties ();
if (host != null) {
props.put (hostKeyC, host);
}
if (dbname != null) {
props.put (dbnameKeyC, dbname);
}
return new Loader (props);
}
/**
* create a new Loader by specifying the host and the dbroot
*/
public static Loader dbrootLoader (String host, String dbroot)
throws RTEException
{
Properties props = new Properties ();
if (host != null) {
props.put (hostKeyC, host);
}
props.put (dbrootKeyC, dbroot);
return new Loader (props);
}
}
|