/* Copyright (c) 2001-2009, 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 HSQL DEVELOPMENT GROUP, HSQLDB.ORG, * 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. */ package org.hsqldb; import org.hsqldb.lib.IntLookup; import org.hsqldb.lib.java.JavaSystem; import org.hsqldb.persist.CachedObject; import org.hsqldb.rowio.RowOutputInterface; import org.hsqldb.store.ValuePool; /** * Base class for a database row object. * * @author Fred Toussi (fredt@users dot sourceforge dot net) * @version 1.9.0 */ public class Row implements CachedObject { int tableId; int position; protected Object[] rowData; public volatile RowAction rowAction; public volatile boolean hasAction; public RowAction getAction() { return rowAction; } /** * Default constructor used only in subclasses. */ protected Row() {} /** * Returns the array of fields in the database row. */ public Object[] getData() { return rowData; } boolean isDeleted(Session session) { RowAction action = rowAction; if (action == null) { return false; } return RowActionBase.ACTION_DELETE == action.getLastChangeActionType(session.actionTimestamp); } public void setChanged() {} public void setStorageSize(int size) {} public int getStorageSize() { return 0; } public long getId() { return ((long) tableId << 32) + ((long) position); } public Object getRowidObject() { return ValuePool.getLong(getId()); } public boolean isMemory() { return true; } public void updateAccessCount(int count) {} public int getAccessCount() { return 0; } public int getPos() { return position; } public void setPos(int pos) { position = pos; } public boolean hasChanged() { return false; } public boolean isKeepInMemory() { return true; } public boolean keepInMemory(boolean keep) { return true; } public boolean isInMemory() { return true; } public void setInMemory(boolean in) {} public void restore() {} public void destroy() { JavaSystem.memoryRecords++; rowData = null; } public int getRealSize(RowOutputInterface out) { return 0; } public TableBase getTable() { return null; } public void write(RowOutputInterface out) {} public void write(RowOutputInterface out, IntLookup lookup) {} /** * Lifetime scope of this method is limited depends on the operations * performed. Rows deleted completely can equal rows produced later. * This can return invalid results if used with deleted rows. * * @param obj row to compare * @return boolean */ public boolean equals(Object obj) { if (obj == this) { return true; } if (obj instanceof Row) { return ((Row) obj).position == position; } return false; } /** * Hash code is always valid. * * @return file position of row */ public int hashCode() { return position; } }