8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-27 05:23:02 +01:00
firebird-mirror/src/jrd/cch_proto.h

94 lines
4.5 KiB
C
Raw Normal View History

2001-05-23 15:26:42 +02:00
/*
* PROGRAM: JRD Access Method
* MODULE: cch_proto.h
* DESCRIPTION: Prototype header file for cch.cpp
2001-05-23 15:26:42 +02:00
*
* 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_CCH_PROTO_H
#define JRD_CCH_PROTO_H
namespace Ods {
struct pag;
}
2001-05-23 15:26:42 +02:00
void CCH_shutdown_database(Jrd::Database*);
USHORT CCH_checksum(Jrd::BufferDesc*);
int CCH_down_grade_dbb(void*);
bool CCH_exclusive(Jrd::thread_db*, USHORT, SSHORT);
bool CCH_exclusive_attachment(Jrd::thread_db*, USHORT, SSHORT);
void CCH_expand(Jrd::thread_db*, ULONG);
Ods::pag* CCH_fake(Jrd::thread_db*, Jrd::win*, SSHORT);
Ods::pag* CCH_fetch(Jrd::thread_db*, Jrd::win*, USHORT, SSHORT, SSHORT, SSHORT, bool);
SSHORT CCH_fetch_lock(Jrd::thread_db*, Jrd::win*, USHORT, SSHORT, SSHORT, SSHORT);
void CCH_fetch_page(Jrd::thread_db*, Jrd::win*, SSHORT, bool);
void CCH_fini(Jrd::thread_db*);
void CCH_flush(Jrd::thread_db*, USHORT, SLONG);
bool CCH_free_page(Jrd::thread_db*);
SLONG CCH_get_incarnation(Jrd::win*);
Ods::pag* CCH_handoff(Jrd::thread_db*, Jrd::win*, SLONG, SSHORT, SSHORT, SSHORT, SSHORT);
void CCH_init(Jrd::thread_db*, ULONG);
void CCH_mark(Jrd::thread_db*, Jrd::win*, USHORT);
void CCH_mark_must_write(Jrd::thread_db*, Jrd::win*);
void CCH_must_write(Jrd::win*);
Jrd::Lock* CCH_page_lock(Jrd::thread_db*);
void CCH_precedence(Jrd::thread_db*, Jrd::win*, SLONG);
void CCH_prefetch(Jrd::thread_db*, SLONG*, SSHORT);
bool CCH_prefetch_pages(Jrd::thread_db*);
void CCH_release(Jrd::thread_db*, Jrd::win*, bool);
void CCH_release_and_free(Jrd::win*);
void CCH_release_exclusive(Jrd::thread_db*);
bool CCH_rollover_to_shadow(Jrd::Database*, Jrd::jrd_file*, const bool);
void CCH_unwind(Jrd::thread_db*, bool);
bool CCH_validate(Jrd::win*);
void CCH_flush_database(Jrd::thread_db*);
bool CCH_write_all_shadows(Jrd::thread_db*, Jrd::Shadow*, Jrd::BufferDesc*,
2003-12-22 11:00:59 +01:00
ISC_STATUS*, USHORT, const bool);
2001-05-23 15:26:42 +02:00
/* macros for dealing with cache pages */
#define CCH_FETCH(tdbb, window, lock, type) CCH_fetch (tdbb, window, lock, type, 1, 1, true)
#define CCH_FETCH_NO_SHADOW(tdbb, window, lock, type) CCH_fetch (tdbb, window, lock, type, 1, 1, false)
#define CCH_FETCH_NO_CHECKSUM(tdbb, window, lock, type) CCH_fetch (tdbb, window, lock, type, 0, 1, true)
#define CCH_FETCH_TIMEOUT(tdbb, window, lock, type, latch_wait) CCH_fetch (tdbb, window, lock, type, 0, latch_wait, true)
2001-05-23 15:26:42 +02:00
#define CCH_FETCH_LOCK(tdbb, window, lock, wait, latch_wait, type) CCH_fetch_lock (tdbb, window, lock, wait, latch_wait, type)
#define CCH_FETCH_PAGE(tdbb, window, checksum, read_shadow) CCH_fetch_page (tdbb, window, checksum, read_shadow)
#define CCH_RELEASE(tdbb, window) CCH_release (tdbb, window, false)
#define CCH_RELEASE_TAIL(tdbb, window) CCH_release (tdbb, window, true)
2001-05-23 15:26:42 +02:00
#define CCH_MARK(tdbb, window) CCH_mark (tdbb, window, 0)
#define CCH_MARK_SYSTEM(tdbb, window) CCH_mark (tdbb, window, 1)
#define CCH_HANDOFF(tdbb, window, page, lock, type) CCH_handoff (tdbb, window, page, lock, type, 1, 0)
#define CCH_HANDOFF_TIMEOUT(tdbb, window, page, lock, type, latch_wait) CCH_handoff (tdbb, window, page, lock, type, latch_wait, 0)
#define CCH_HANDOFF_TAIL(tdbb, window, page, lock, type) CCH_handoff (tdbb, window, page, lock, type, 1, 1)
#define CCH_MARK_MUST_WRITE(tdbb, window) CCH_mark_must_write (tdbb, window)
#define CCH_PREFETCH(tdbb, pages, count) CCH_prefetch (tdbb, pages, count)
/* Flush flags */
2004-04-29 16:51:02 +02:00
const int FLUSH_ALL = 1; /* flush all dirty buffers in cache */
const int FLUSH_RLSE = 2; /* release page locks after flush */
const int FLUSH_TRAN = 4; /* flush transaction dirty buffers from dirty btree */
const int FLUSH_SWEEP = 8; /* flush dirty buffers from garbage collection */
const int FLUSH_SYSTEM = 16; /* flush system transaction only from dirty btree */
const int FLUSH_FINI = (FLUSH_ALL | FLUSH_RLSE);
2001-05-23 15:26:42 +02:00
#endif /* JRD_CCH_PROTO_H */