mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-27 20:03:03 +01:00
57 lines
2.1 KiB
C++
57 lines
2.1 KiB
C++
/*
|
|
* PROGRAM: JRD Access Method
|
|
* MODULE: rng.h
|
|
* DESCRIPTION: Refresh Range Definitions
|
|
*
|
|
* 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_RNG_H_
|
|
#define _JRD_RNG_H_
|
|
|
|
/* refresh range block used to store info about a particular
|
|
set of records in a refresh range */
|
|
|
|
class rng : public pool_alloc_rpt<SCHAR, type_rng>
|
|
{
|
|
public:
|
|
struct rng *rng_next; /* next in list of ranges being created */
|
|
struct att *rng_attachment; /* attachment that owns range */
|
|
struct rng *rng_lck_next; /* next in list of ranges interested in a lock */
|
|
struct vec *rng_relation_locks; /* relation locks */
|
|
struct vec *rng_relation_trans; /* relation transactions */
|
|
struct vec *rng_record_locks; /* record locks */
|
|
struct vec *rng_page_locks; /* page locks */
|
|
struct vec *rng_transaction_locks; /* transaction locks */
|
|
USHORT rng_relations; /* count of relations in range */
|
|
USHORT rng_records; /* count of records in range */
|
|
USHORT rng_pages; /* count of index pages in range */
|
|
USHORT rng_transactions; /* count of uncommitted transactions in range */
|
|
USHORT rng_number; /* range number */
|
|
USHORT rng_flags; /* see flags below */
|
|
USHORT rng_event_length; /* length of event name */
|
|
UCHAR rng_event[1]; /* event name to post */
|
|
};
|
|
typedef rng *RNG;
|
|
|
|
#define RNG_posted 1 /* range has already been posted */
|
|
|
|
#define RANGE_NAME_LENGTH 31 /* max. length of range name for the event */
|
|
|
|
#endif /* _JRD_RNG_H_ */
|