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

📄 globalxactid.java

📁 derby database source code.good for you.
💻 JAVA
字号:
/*   Derby - Class org.apache.derby.impl.store.raw.xact.GlobalXactId   Copyright 1998, 2004 The Apache Software Foundation or its licensors, as applicable.   Licensed 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.apache.derby.impl.store.raw.xact;import org.apache.derby.iapi.services.sanity.SanityManager;import org.apache.derby.iapi.services.io.FormatIdUtil;import org.apache.derby.iapi.services.io.StoredFormatIds;import org.apache.derby.catalog.UUID;import org.apache.derby.iapi.store.raw.GlobalTransactionId;import org.apache.derby.iapi.store.access.GlobalXact;import org.apache.derby.iapi.util.ByteArray;import java.io.ObjectOutput;import java.io.ObjectInput;import java.io.IOException;public class GlobalXactId extends GlobalXact implements GlobalTransactionId{    /**************************************************************************     * Private Fields of the class     **************************************************************************     */    /**************************************************************************     * Constructors for This class:     **************************************************************************     */	public GlobalXactId(						int     format_id,						byte[]  global_id,						byte[]  branch_id)    {		this.format_id = format_id;		this.global_id = new byte[global_id.length];		System.arraycopy(global_id, 0, this.global_id, 0, global_id.length);		this.branch_id = new byte[branch_id.length];		System.arraycopy(branch_id, 0, this.branch_id, 0, branch_id.length);	}    /**************************************************************************     * Public Methods of Formatable interface:     **************************************************************************     */	// no-arg constructor, required by Formatable 	public GlobalXactId()    {     }	/**		Write this out.		@exception IOException error writing to log stream	*/	public void writeExternal(ObjectOutput out) throws IOException 	{        out.writeInt(format_id);        if (SanityManager.DEBUG)        {            SanityManager.ASSERT(global_id.length <= 64);            SanityManager.ASSERT(global_id != null);            SanityManager.ASSERT(branch_id != null);        }        // write length of array followed by the array        out.write(global_id.length);        if (global_id.length > 0)            out.write(global_id);        // write length of array followed by the array        out.write(branch_id.length);        if (branch_id.length > 0)            out.write(branch_id);	}	/**		Read this in		@exception IOException error reading from log stream		@exception ClassNotFoundException log stream corrupted	*/	public void readExternal(ObjectInput in) 		throws IOException, ClassNotFoundException	{        format_id = in.readInt();        // read global_id in from disk        int array_len = in.read();        if (SanityManager.DEBUG)         {            SanityManager.ASSERT(array_len >= 0);        }        global_id = new byte[array_len];        if (array_len > 0)            in.read(global_id);        // read branch_id in from disk        array_len = in.read();        if (SanityManager.DEBUG)        {            SanityManager.ASSERT(array_len >= 0);        }        branch_id = new byte[array_len];        if (array_len > 0)            in.read(branch_id);	}	/**		Return my format identifier.	*/	public int getTypeFormatId() {		return StoredFormatIds.RAW_STORE_GLOBAL_XACT_ID_NEW;	}    /**************************************************************************     * Private/Protected methods of This class:     **************************************************************************     */    /**************************************************************************     * Public Methods of This class:     **************************************************************************     */    public int getFormat_Id()    {        return(format_id);    }    public byte[] getGlobalTransactionId()    {        return(global_id);    }    public byte[] getBranchQualifier()    {        return(branch_id);    }}

⌨️ 快捷键说明

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