mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 23:23:04 +01:00
f58c769c37
PandoraBox* pbox = reinterpret_cast<PandoraBox*>(&can_of_worms); pbox->open(); pbox->flush(); Nickolay may want to undo my ods.h changes if gcc insists in its crusade against non-PODs and poodles.
129 lines
4.3 KiB
C++
129 lines
4.3 KiB
C++
/*
|
|
* 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): ______________________________________.
|
|
*/
|
|
|
|
#ifndef JRD_LCK_H
|
|
#define JRD_LCK_H
|
|
|
|
struct blk;
|
|
class BlockingThread;
|
|
|
|
/* Lock types */
|
|
|
|
enum lck_t {
|
|
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_file_extend, /* Lock to synchronize file extension */
|
|
LCK_retaining, /* Youngest commit retaining transaction */
|
|
LCK_expression, /* Expression index caching mechanism */
|
|
LCK_record_locking, /* Lock on existence of record locking for this database */
|
|
LCK_record, /* Record Lock */
|
|
LCK_prc_exist, /* Relation existence lock */
|
|
LCK_range_relation, /* Relation refresh range lock */
|
|
LCK_update_shadow, /* shadow update sync lock */
|
|
LCK_backup_state, /* Lock to synchronize for objects depending on backup status */
|
|
LCK_backup_alloc, /* Lock for page allocation table in backup spare file */
|
|
LCK_backup_database /* Lock to protect writing to database file */
|
|
};
|
|
|
|
/* Lock owner types */
|
|
|
|
enum lck_owner_t {
|
|
LCK_OWNER_process = 1, /* A process is the owner of the lock */
|
|
LCK_OWNER_database, /* A database is the owner of the lock */
|
|
LCK_OWNER_attachment, /* An atttachment is the owner of the lock */
|
|
LCK_OWNER_transaction /* A transaction is the owner of the lock */
|
|
};
|
|
|
|
void MP_GDB_print(MemoryPool*);
|
|
|
|
class Lock : public pool_alloc_rpt<SCHAR, type_lck>
|
|
{
|
|
public:
|
|
Lock()
|
|
: lck_test_field(666),
|
|
lck_parent(0),
|
|
lck_next(0),
|
|
lck_att_next(0),
|
|
lck_prior(0),
|
|
lck_collision(0),
|
|
lck_identical(0),
|
|
lck_dbb(0),
|
|
lck_object(0),
|
|
lck_owner(0),
|
|
lck_compatible(0),
|
|
lck_compatible2(0),
|
|
lck_attachment(0),
|
|
lck_blocked_threads(0),
|
|
lck_ast(0),
|
|
lck_id(0),
|
|
lck_owner_handle(0),
|
|
lck_count(0),
|
|
lck_length(0),
|
|
lck_logical(0),
|
|
lck_physical(0),
|
|
lck_data(0)
|
|
{
|
|
lck_key.lck_long = 0;
|
|
lck_tail[0] = 0;
|
|
}
|
|
|
|
int lck_test_field;
|
|
Lock* lck_parent;
|
|
Lock* lck_next; /* Next lock in chain owned by Database */
|
|
Lock* lck_att_next; /* Next in chain owned by attachment */
|
|
Lock* lck_prior;
|
|
Lock* lck_collision; /* collisions in compatibility table */
|
|
Lock* lck_identical; /* identical locks in compatibility table */
|
|
class Database* lck_dbb; /* database object is contained in */
|
|
blk* lck_object; /* argument to be passed to ast */
|
|
blk* lck_owner; /* Logical owner block (transaction, etc.) */
|
|
blk* lck_compatible; /* Enter into internal_enqueue() and treat as compatible */
|
|
blk* lck_compatible2; /* Sub-level for internal compatibility */
|
|
class Attachment* lck_attachment; /* Attachment that owns lock */
|
|
BlockingThread* lck_blocked_threads; /* Threads blocked by lock */
|
|
lock_ast_t lck_ast; /* Blocking AST routine */
|
|
SLONG lck_id; /* Lock id from lock manager */
|
|
SLONG lck_owner_handle; /* Lock owner handle from the lock manager's point of view */
|
|
USHORT lck_count; /* count of locks taken out by attachment */
|
|
SSHORT lck_length; /* Length of lock string */
|
|
UCHAR lck_logical; /* Logical lock level */
|
|
UCHAR lck_physical; /* Physical lock level */
|
|
SLONG lck_data; /* Data associated with a lock */
|
|
enum lck_t lck_type;
|
|
union {
|
|
SCHAR lck_string[1];
|
|
SLONG lck_long;
|
|
} lck_key;
|
|
SCHAR lck_tail[1]; /* Makes the allocator happy */
|
|
};
|
|
|
|
#endif // JRD_LCK_H
|
|
|