⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 result.java

📁 Java写的含有一个jdbc驱动的小型数据库数据库引擎
💻 JAVA
字号:
/*
 * Result.java
 *
 * Copyright (c) 2001, The HSQL Development Group
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 *
 * Neither the name of the HSQL Development Group nor the names of its
 * contributors may be used to endorse or promote products derived from this
 * software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This package is based on HypersonicSQL, originally developed by Thomas Mueller.
 *
 */
package org.hsqldb;

import java.sql.SQLException;
import java.io.*;

/**
 * Class declaration
 *
 *
 * @version 1.0.0.1
 */
class Result {
    private Record   rTail;
    private int      iSize;
    private int      iColumnCount;
    final static int UPDATECOUNT = 0, ERROR = 1, DATA = 2;
    int		     iMode;
    String	     sError;
    int		     iUpdateCount;
    Record	     rRoot;
    String	     sLabel[];
    String	     sTable[];
    String	     sName[];
    int		     iType[];

    /**
     * Constructor declaration
     *
     */
    Result() {
	iMode = UPDATECOUNT;
	iUpdateCount = 0;
    }

    /**
     * Constructor declaration
     *
     *
     * @param error
     */
    Result(String error) {
	iMode = ERROR;
	sError = error;
    }

    /**
     * Constructor declaration
     *
     *
     * @param columns
     */
    Result(int columns) {
	prepareData(columns);

	iColumnCount = columns;
    }

    /**
     * Method declaration
     *
     *
     * @return
     */
    int getSize() {
	return iSize;
    }

    /**
     * Method declaration
     *
     *
     * @param columns
     */
    void setColumnCount(int columns) {
	iColumnCount = columns;
    }

    /**
     * Method declaration
     *
     *
     * @return
     */
    int getColumnCount() {
	return iColumnCount;
    }

    /**
     * Method declaration
     *
     *
     * @param a
     */
    void append(Result a) {
	if (rRoot == null) {
	    rRoot = a.rRoot;
	} else {
	    rTail.next = a.rRoot;
	}

	rTail = a.rTail;
	iSize += a.iSize;
    }

    /**
     * Method declaration
     *
     *
     * @param d
     */
    void add(Object d[]) {
	Record r = new Record();

	r.data = d;

	if (rRoot == null) {
	    rRoot = r;
	} else {
	    rTail.next = r;
	}

	rTail = r;
	iSize++;
    }

    /**
     * Constructor declaration
     *
     *
     * @param b
     */
    Result(byte b[]) throws SQLException {
	ByteArrayInputStream bin = new ByteArrayInputStream(b);
	DataInputStream      in = new DataInputStream(bin);

	try {
	    iMode = in.readInt();

	    if (iMode == ERROR) {
		throw Trace.getError(in.readUTF());
	    } else if (iMode == UPDATECOUNT) {
		iUpdateCount = in.readInt();
	    } else if (iMode == DATA) {
		int l = in.readInt();

		prepareData(l);

		iColumnCount = l;

		for (int i = 0; i < l; i++) {
		    iType[i] = in.readInt();
		    sLabel[i] = in.readUTF();
		    sTable[i] = in.readUTF();
		    sName[i] = in.readUTF();
		}

		while (in.available() != 0) {
		    add(Column.readData(in, l));
		}
	    }
	} catch (IOException e) {
	    Trace.error(Trace.TRANSFER_CORRUPTED);
	}
    }

    /**
     * Method declaration
     *
     *
     * @return
     *
     * @throws SQLException
     */
    byte[] getBytes() throws SQLException {
	ByteArrayOutputStream bout = new ByteArrayOutputStream();
	DataOutputStream      out = new DataOutputStream(bout);

	try {
	    out.writeInt(iMode);

	    if (iMode == UPDATECOUNT) {
		out.writeInt(iUpdateCount);
	    } else if (iMode == ERROR) {
		out.writeUTF(sError);
	    } else {
		int l = iColumnCount;

		out.writeInt(l);

		Record n = rRoot;

		for (int i = 0; i < l; i++) {
		    out.writeInt(iType[i]);
		    out.writeUTF(sLabel[i]);
		    out.writeUTF(sTable[i]);
		    out.writeUTF(sName[i]);
		}

		while (n != null) {
		    Column.writeData(out, l, iType, n.data);

		    n = n.next;
		}
	    }

	    return bout.toByteArray();
	} catch (IOException e) {
	    throw Trace.error(Trace.TRANSFER_CORRUPTED);
	}
    }

    /**
     * Method declaration
     *
     *
     * @param columns
     */
    private void prepareData(int columns) {
	iMode = DATA;
	sLabel = new String[columns];
	sTable = new String[columns];
	sName = new String[columns];
	iType = new int[columns];
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -