1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-05 23:22:47 +00:00
Files
l2jserver2/l2jserver2-common/src/main/java/com/l2jserver/service/database/DataAccessObject.java

144 lines
4.1 KiB
Java

/*
* This file is part of l2jserver2 <l2jserver2.com>.
*
* l2jserver2 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 3 of the License, or
* (at your option) any later version.
*
* l2jserver2 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 l2jserver2. If not, see <http://www.gnu.org/licenses/>.
*/
package com.l2jserver.service.database;
import java.util.Collection;
import java.util.Iterator;
import com.l2jserver.model.Model;
import com.l2jserver.model.id.ID;
/**
* The Data Access Object interface used used to retrieve, save and remove
* objects from the database. The underlying storage engine can be an plain text
* file, SQL Database or an serialized version of the object. This layer will
* abstract the translation of the data and ease the transition from one engine
* to another.
* <p>
* Every DAO is also an {@link Iterable}. If you wish you can iterate through
* all objects in the database very abstractly. But please note that the default
* {@link Iterator} implementation in {@link AbstractDAO} will load all the
* {@link ID} objects and for every call {@link Iterator#next()}, a new database
* query will be made requesting the given object. In a large dataset, this
* could be a huge performance issue. DAO implementations are encouraged to
* override the iterator implementation with a more specific implementation.
*
* @param <O>
* the {@link Model} supported by this DAO
* @param <I>
* the ID used to represent the {@link Model} in this DAO
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*
*/
public interface DataAccessObject<O extends Model<?>, I extends ID<?>> extends
Iterable<O> {
/**
* Load the instance represented by <tt>id</tt> from the database
*
* @param id
* the id
* @return the selected object. <tt>null</tt> if could not be found in the
* database.
*/
O select(I id);
/**
* Loads an List of all {@link ID}s in the database
*
* @return the list containing all {@link ID} objects
*/
Collection<I> selectIDs();
/**
* Save the instance to the database. If a new database entry was created
* returns true. This method will only save if the object has changed.
*
* @param object
* the object
* @return the number of affected rows
* @see DataAccessObject#save(Model, boolean)
*/
int save(O object);
/**
* Save the instance to the database. If a new database entry was created
* returns true.
*
* @param object
* the object
* @param force
* will force an save, even if the object has not changed
* @return the number of affected rows
*/
int save(O object, boolean force);
/**
* Inserts the instance in the database.
*
* @param object
* the object
*/
void insert(O object);
/**
* Inserts several instances in the database using a transaction (if
* possible).
*
* @param objects
* the objects
* @return the number of inserted rows
*/
int insertObjects(@SuppressWarnings("unchecked") O... objects);
/**
* Updates the instance in the database.
*
* @param object
* the object
*/
void update(O object);
/**
* Updates several instances in the database using a transaction (if
* possible).
*
* @param objects
* the objects
* @return the number of updated rows
*/
int updateObjects(@SuppressWarnings("unchecked") O... objects);
/**
* Deletes the instance in the database.
*
* @param object
* the object
*/
void delete(O object);
/**
* Deletes several instances in the database using an transaction (if
* possible).
*
* @param objects
* the objects
* @return the number of deleted rows
*/
int deleteObjects(@SuppressWarnings("unchecked") O... objects);
}