2001-05-23 15:26:42 +02:00
|
|
|
/*
|
|
|
|
* PROGRAM: JRD Access Method
|
|
|
|
* MODULE: lck.h
|
|
|
|
* DESCRIPTION: Lock hander definitions (NOT lock manager)
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Interbase Public
|
|
|
|
* License Version 1.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.Inprise.com/IPL.html
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an
|
|
|
|
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
|
|
|
|
* or implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
|
|
|
*
|
|
|
|
* The Original Code was created by Inprise Corporation
|
|
|
|
* and its predecessors. Portions created by Inprise Corporation are
|
|
|
|
* Copyright (C) Inprise Corporation.
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
* Contributor(s): ______________________________________.
|
|
|
|
*/
|
|
|
|
|
2003-10-03 03:53:34 +02:00
|
|
|
#ifndef JRD_LCK_H
|
|
|
|
#define JRD_LCK_H
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2004-03-20 15:57:40 +01:00
|
|
|
namespace Jrd {
|
|
|
|
|
2006-05-02 03:01:26 +02:00
|
|
|
class Database;
|
|
|
|
class Attachment;
|
2004-03-18 06:56:06 +01:00
|
|
|
|
2009-05-29 10:02:16 +02:00
|
|
|
// Lock types
|
2001-05-23 15:26:42 +02:00
|
|
|
|
|
|
|
enum lck_t {
|
2009-05-29 10:02:16 +02:00
|
|
|
LCK_database = 1, // Root of lock tree
|
|
|
|
LCK_relation, // Individual relation lock
|
|
|
|
LCK_bdb, // Individual buffer block
|
|
|
|
LCK_tra, // Individual transaction lock
|
|
|
|
LCK_rel_exist, // Relation existence lock
|
|
|
|
LCK_idx_exist, // Index existence lock
|
|
|
|
LCK_attachment, // Attachment lock
|
|
|
|
LCK_shadow, // Lock to synchronize addition of shadows
|
|
|
|
LCK_sweep, // Sweep lock for single sweeper
|
|
|
|
LCK_retaining, // Youngest commit retaining transaction
|
|
|
|
LCK_expression, // Expression index caching mechanism
|
|
|
|
LCK_prc_exist, // Procedure existence lock
|
|
|
|
LCK_update_shadow, // shadow update sync lock
|
|
|
|
LCK_backup_alloc, // Lock for page allocation table in backup spare file
|
|
|
|
LCK_backup_database, // Lock to protect writing to database file
|
|
|
|
LCK_backup_end, // Lock to protect end_backup consistency
|
|
|
|
LCK_rel_partners, // Relation partners lock
|
|
|
|
LCK_page_space, // Page space ID lock
|
|
|
|
LCK_dsql_cache, // DSQL cache lock
|
|
|
|
LCK_monitor, // Lock to dump the monitoring data
|
|
|
|
LCK_tt_exist, // TextType existence lock
|
|
|
|
LCK_cancel, // Cancellation lock
|
2008-10-14 15:15:25 +02:00
|
|
|
LCK_btr_dont_gc, // Prevent removal of b-tree page from index
|
|
|
|
LCK_shared_counter // Database-wide shared counter
|
2001-05-23 15:26:42 +02:00
|
|
|
};
|
|
|
|
|
2009-05-29 10:02:16 +02:00
|
|
|
// Lock owner types
|
2008-01-16 10:29:37 +01:00
|
|
|
|
|
|
|
enum lck_owner_t {
|
|
|
|
LCK_OWNER_database = 1, // A database is the owner of the lock
|
|
|
|
LCK_OWNER_attachment // An attachment is the owner of the lock
|
|
|
|
};
|
2001-12-24 03:51:06 +01:00
|
|
|
|
2006-05-02 03:01:26 +02:00
|
|
|
class Lock : public pool_alloc_rpt<UCHAR, type_lck>
|
2001-12-24 03:51:06 +01:00
|
|
|
{
|
|
|
|
public:
|
2004-03-18 06:56:06 +01:00
|
|
|
Lock()
|
2008-05-12 09:02:08 +02:00
|
|
|
: lck_parent(0),
|
2001-12-24 03:51:06 +01:00
|
|
|
lck_next(0),
|
|
|
|
lck_prior(0),
|
|
|
|
lck_collision(0),
|
|
|
|
lck_identical(0),
|
|
|
|
lck_compatible(0),
|
|
|
|
lck_compatible2(0),
|
2009-06-03 14:55:45 +02:00
|
|
|
lck_dbb(0),
|
2001-12-24 03:51:06 +01:00
|
|
|
lck_attachment(0),
|
|
|
|
lck_ast(0),
|
2009-06-03 14:55:45 +02:00
|
|
|
lck_object(0),
|
2001-12-24 03:51:06 +01:00
|
|
|
lck_id(0),
|
|
|
|
lck_owner_handle(0),
|
|
|
|
lck_length(0),
|
|
|
|
lck_logical(0),
|
|
|
|
lck_physical(0),
|
2003-01-28 16:23:28 +01:00
|
|
|
lck_data(0)
|
2001-12-24 03:51:06 +01:00
|
|
|
{
|
2003-01-28 16:23:28 +01:00
|
|
|
lck_key.lck_long = 0;
|
2008-04-03 03:11:26 +02:00
|
|
|
lck_tail[0] = 0;
|
2001-12-24 03:51:06 +01:00
|
|
|
}
|
|
|
|
|
2009-05-29 10:02:16 +02:00
|
|
|
Lock* lck_parent;
|
|
|
|
|
|
|
|
Lock* lck_next; // lck_next and lck_prior form a doubly linked list of locks
|
|
|
|
Lock* lck_prior; // bound to attachment
|
2009-06-06 20:13:57 +02:00
|
|
|
|
2009-05-29 10:02:16 +02:00
|
|
|
Lock* lck_collision; // Collisions in compatibility table
|
|
|
|
Lock* lck_identical; // Identical locks in compatibility table
|
|
|
|
void* lck_compatible; // Enter into internal_enqueue() and treat as compatible
|
|
|
|
void* lck_compatible2; // Sub-level for internal compatibility
|
|
|
|
|
2009-06-06 20:13:57 +02:00
|
|
|
Database* lck_dbb; // Database object is contained in
|
2009-05-29 10:02:16 +02:00
|
|
|
Attachment* lck_attachment; // Attachment that owns lock, set only using set_lock_attachment()
|
|
|
|
|
|
|
|
lock_ast_t lck_ast; // Blocking AST routine
|
|
|
|
void* lck_object; // Argument to be passed to AST
|
|
|
|
|
|
|
|
lck_t lck_type; // Lock type
|
|
|
|
SLONG lck_id; // Lock id from the lock manager
|
|
|
|
SLONG lck_owner_handle; // Lock owner handle from the lock manager's point of view
|
|
|
|
SSHORT lck_length; // Length of lock key string
|
|
|
|
UCHAR lck_logical; // Logical lock level
|
|
|
|
UCHAR lck_physical; // Physical lock level
|
|
|
|
SLONG lck_data; // Data associated with a lock
|
|
|
|
|
2008-05-10 05:44:57 +02:00
|
|
|
union
|
|
|
|
{
|
2006-05-02 03:01:26 +02:00
|
|
|
UCHAR lck_string[1];
|
2001-05-23 15:26:42 +02:00
|
|
|
SLONG lck_long;
|
2009-05-29 10:02:16 +02:00
|
|
|
} lck_key; // Lock key string
|
|
|
|
|
|
|
|
UCHAR lck_tail[1]; // Makes the allocator happy
|
2001-12-24 03:51:06 +01:00
|
|
|
};
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2009-06-06 20:13:57 +02:00
|
|
|
} // namespace Jrd
|
2004-03-20 15:57:40 +01:00
|
|
|
|
2004-02-20 07:43:27 +01:00
|
|
|
#endif // JRD_LCK_H
|