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

📄 serialserialkeycreator.java

📁 嵌入式数据库Berkeley DB-4.5.20源代码
💻 JAVA
字号:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2000-2006 *      Oracle Corporation.  All rights reserved. * * $Id: SerialSerialKeyCreator.java,v 12.3 2006/08/31 18:14:05 bostic Exp $ */package com.sleepycat.bind.serial;import com.sleepycat.db.DatabaseEntry;import com.sleepycat.db.DatabaseException;import com.sleepycat.db.SecondaryDatabase;import com.sleepycat.db.SecondaryKeyCreator;/** * A abstract key creator that uses a serial key and a serial data entry. * This class takes care of serializing and deserializing the key and data * entry automatically. * The following abstract method must be implemented by a concrete subclass * to create the index key using these objects * <ul> * <li> {@link #createSecondaryKey(Object,Object)} </li> * </ul> * * @author Mark Hayes */public abstract class SerialSerialKeyCreator    implements SecondaryKeyCreator {    protected SerialBinding primaryKeyBinding;    protected SerialBinding dataBinding;    protected SerialBinding indexKeyBinding;    /**     * Creates a serial-serial key creator.     *     * @param classCatalog is the catalog to hold shared class information and     * for a database should be a {@link StoredClassCatalog}.     *     * @param primaryKeyClass is the primary key base class.     *     * @param dataClass is the data base class.     *     * @param indexKeyClass is the index key base class.     */    public SerialSerialKeyCreator(ClassCatalog classCatalog,                                  Class primaryKeyClass,                                  Class dataClass,                                  Class indexKeyClass) {        this(new SerialBinding(classCatalog, primaryKeyClass),             new SerialBinding(classCatalog, dataClass),             new SerialBinding(classCatalog, indexKeyClass));    }    /**     * Creates a serial-serial entity binding.     *     * @param primaryKeyBinding is the primary key binding.     *     * @param dataBinding is the data binding.     *     * @param indexKeyBinding is the index key binding.     */    public SerialSerialKeyCreator(SerialBinding primaryKeyBinding,                                  SerialBinding dataBinding,                                  SerialBinding indexKeyBinding) {        this.primaryKeyBinding = primaryKeyBinding;        this.dataBinding = dataBinding;        this.indexKeyBinding = indexKeyBinding;    }    // javadoc is inherited    public boolean createSecondaryKey(SecondaryDatabase db,                                      DatabaseEntry primaryKeyEntry,                                      DatabaseEntry dataEntry,                                      DatabaseEntry indexKeyEntry)        throws DatabaseException {        Object primaryKeyInput =            primaryKeyBinding.entryToObject(primaryKeyEntry);        Object dataInput = dataBinding.entryToObject(dataEntry);        Object indexKey = createSecondaryKey(primaryKeyInput, dataInput);        if (indexKey != null) {            indexKeyBinding.objectToEntry(indexKey, indexKeyEntry);            return true;        } else {            return false;        }    }    // javadoc is inherited    public boolean nullifyForeignKey(SecondaryDatabase db,                                     DatabaseEntry dataEntry)        throws DatabaseException {        Object data = dataBinding.entryToObject(dataEntry);        data = nullifyForeignKey(data);        if (data != null) {            dataBinding.objectToEntry(data, dataEntry);            return true;        } else {            return false;        }    }    /**     * Creates the index key object from primary key and entry objects.     *     * @param primaryKey is the deserialized source primary key entry, or     * null if no primary key entry is used to construct the index key.     *     * @param data is the deserialized source data entry, or null if no     * data entry is used to construct the index key.     *     * @return the destination index key object, or null to indicate that     * the key is not present.     */    public abstract Object createSecondaryKey(Object primaryKey, Object data);    /**     * Clears the index key in a data object.     *     * <p>On entry the data parameter contains the index key to be cleared.  It     * should be changed by this method such that {@link #createSecondaryKey}     * will return false.  Other fields in the data object should remain     * unchanged.</p>     *     * @param data is the source and destination data object.     *     * @return the destination data object, or null to indicate that the     * key is not present and no change is necessary.  The data returned may     * be the same object passed as the data parameter or a newly created     * object.     */    public Object nullifyForeignKey(Object data) {        return null;    }}

⌨️ 快捷键说明

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