8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-01 00:43:03 +01:00
firebird-mirror/src/utilities/gstat/ppg.cpp

429 lines
12 KiB
C++
Raw Normal View History

2001-05-23 15:26:42 +02:00
/*
* PROGRAM: JRD Access Method
2003-11-10 10:16:38 +01:00
* MODULE: ppg.cpp
2001-05-23 15:26:42 +02:00
* DESCRIPTION: Database page print module
*
* 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): ______________________________________.
*
* 2001.08.07 Sean Leyne - Code Cleanup, removed "#ifdef READONLY_DATABASE"
* conditionals, second attempt
2001-05-23 15:26:42 +02:00
*/
#include "firebird.h"
2001-05-23 15:26:42 +02:00
#include "../jrd/ib_stdio.h"
#include <string.h>
#include "../jrd/common.h"
#include "../jrd/jrd_time.h"
2003-11-08 17:40:17 +01:00
#include "../jrd/y_ref.h"
#include "../jrd/ibase.h"
2001-05-23 15:26:42 +02:00
#include "../jrd/ods.h"
#include "../jrd/os/guid.h"
#include "../jrd/nbak.h"
2001-05-23 15:26:42 +02:00
#include "../jrd/gds_proto.h"
#ifdef SUPERSERVER
#ifndef INCLUDE_FB_BLK
#include "../include/fb_blk.h"
#endif
#include "../jrd/svc.h"
#include "../jrd/svc_proto.h"
2003-07-15 04:43:36 +02:00
#include "../utilities/gstat/ppg_proto.h"
2001-05-23 15:26:42 +02:00
#define exit(code) {service->svc_handle = 0; return (code);}
#define FPRINTF SVC_fprintf
#endif
#ifndef FPRINTF
#define FPRINTF ib_fprintf
#endif
void PPG_print_header(const hdr* header, SLONG page,
2001-05-23 15:26:42 +02:00
#ifdef SUPERSERVER
SVC outfile)
#else
IB_FILE * outfile)
#endif
{
/**************************************
*
* P P G _ p r i n t _ h e a d e r
*
**************************************
*
* Functional description
* Print database header page.
*
**************************************/
SLONG number;
struct tm time;
SSHORT flags;
TEXT temp[257];
SSHORT flag_count = 0;
if (page == HEADER_PAGE)
FPRINTF(outfile, "Database header page information:\n");
else
FPRINTF(outfile, "Database overflow header page information:\n");
if (page == HEADER_PAGE) {
FPRINTF(outfile, "\tFlags\t\t\t%d\n", header->hdr_header.pag_flags);
FPRINTF(outfile, "\tChecksum\t\t%d\n",
header->hdr_header.pag_checksum);
2003-04-01 13:35:44 +02:00
FPRINTF(outfile, "\tGeneration\t\t%"ULONGFORMAT"\n",
2001-05-23 15:26:42 +02:00
header->hdr_header.pag_generation);
FPRINTF(outfile, "\tPage size\t\t%d\n", header->hdr_page_size);
FPRINTF(outfile, "\tODS version\t\t%d.%d\n", header->hdr_ods_version,
header->hdr_ods_minor);
2003-04-01 13:35:44 +02:00
FPRINTF(outfile, "\tOldest transaction\t%"SLONGFORMAT"\n",
2001-05-23 15:26:42 +02:00
header->hdr_oldest_transaction);
2003-04-01 13:35:44 +02:00
FPRINTF(outfile, "\tOldest active\t\t%"SLONGFORMAT"\n",
2001-05-23 15:26:42 +02:00
header->hdr_oldest_active);
2003-04-01 13:35:44 +02:00
FPRINTF(outfile, "\tOldest snapshot\t\t%"SLONGFORMAT"\n",
2001-05-23 15:26:42 +02:00
header->hdr_oldest_snapshot);
2003-04-01 13:35:44 +02:00
FPRINTF(outfile, "\tNext transaction\t%"SLONGFORMAT"\n",
2001-05-23 15:26:42 +02:00
header->hdr_next_transaction);
2003-04-01 13:35:44 +02:00
FPRINTF(outfile, "\tBumped transaction\t%"SLONGFORMAT"\n",
2001-05-23 15:26:42 +02:00
header->hdr_bumped_transaction);
FPRINTF(outfile, "\tSequence number\t\t%d\n", header->hdr_sequence);
2003-04-01 13:35:44 +02:00
FPRINTF(outfile, "\tNext attachment ID\t%"SLONGFORMAT"\n",
2001-05-23 15:26:42 +02:00
header->hdr_attachment_id);
2003-04-01 13:35:44 +02:00
FPRINTF(outfile, "\tImplementation ID\t%d\n",
2001-05-23 15:26:42 +02:00
header->hdr_implementation);
2003-04-01 13:35:44 +02:00
FPRINTF(outfile, "\tShadow count\t\t%"SLONGFORMAT"\n"
, header->hdr_shadow_count);
FPRINTF(outfile, "\tPage buffers\t\t%"ULONGFORMAT"\n"
, header->hdr_page_buffers);
2001-05-23 15:26:42 +02:00
}
2003-04-01 13:35:44 +02:00
FPRINTF(outfile, "\tNext header page\t%"ULONGFORMAT"\n"
, header->hdr_next_page);
2001-05-23 15:26:42 +02:00
#ifdef DEV_BUILD
FPRINTF(outfile, "\tClumplet End\t\t%d\n", header->hdr_end);
#endif
if (page == HEADER_PAGE) {
/* If the database dialect is not set to 3, then we need to
* assume it was set to 1. The reason for this is that a dialect
* 1 database has no dialect information written to the header.
*/
if (header->hdr_flags & hdr_SQL_dialect_3)
FPRINTF(outfile, "\tDatabase dialect\t3\n");
else
FPRINTF(outfile, "\tDatabase dialect\t1\n");
isc_decode_date(reinterpret_cast<const ISC_QUAD*>(header->hdr_creation_date),
&time);
2001-05-23 15:26:42 +02:00
FPRINTF(outfile, "\tCreation date\t\t%s %d, %d %d:%02d:%02d\n",
2003-12-31 06:36:12 +01:00
FB_SHORT_MONTHS[time.tm_mon], time.tm_mday, time.tm_year + 1900,
2001-05-23 15:26:42 +02:00
time.tm_hour, time.tm_min, time.tm_sec);
}
if ((page == HEADER_PAGE) && (flags = header->hdr_flags)) {
FPRINTF(outfile, "\tAttributes\t\t");
if (flags & hdr_force_write) {
FPRINTF(outfile, "force write");
flag_count++;
}
if (flags & hdr_no_reserve) {
if (flag_count++)
FPRINTF(outfile, ", ");
FPRINTF(outfile, "no reserve");
}
if (flags & hdr_disable_cache) {
if (flag_count++)
FPRINTF(outfile, ", ");
FPRINTF(outfile, "shared cache disabled");
}
if (flags & hdr_active_shadow) {
if (flag_count++)
FPRINTF(outfile, ", ");
FPRINTF(outfile, "active shadow");
}
if (flags & hdr_shutdown) {
if (flag_count++)
FPRINTF(outfile, ", ");
FPRINTF(outfile, "database shutdown");
}
if (flags & hdr_read_only) {
if (flag_count++)
FPRINTF(outfile, ", ");
FPRINTF(outfile, "read only");
}
if (flags & hdr_backup_mask) {
if (flag_count++)
FPRINTF(outfile, ", ");
if ((flags & hdr_backup_mask) == nbak_state_stalled)
FPRINTF(outfile, "backup lock");
else
if ((flags & hdr_backup_mask) == nbak_state_merge)
FPRINTF(outfile, "backup merge");
else
FPRINTF(outfile, "wrong backup state %d", flags & hdr_backup_mask);
}
2001-05-23 15:26:42 +02:00
FPRINTF(outfile, "\n");
}
FPRINTF(outfile, "\n Variable header data:\n");
const UCHAR* p = header->hdr_data;
for (const UCHAR* const end = p + header->hdr_page_size;
2001-05-23 15:26:42 +02:00
p < end && *p != HDR_end; p += 2 + p[1])
{
2001-05-23 15:26:42 +02:00
switch (*p) {
case HDR_root_file_name:
memcpy(temp, p + 2, p[1]);
temp[p[1]] = '\0';
FPRINTF(outfile, "\tRoot file name:\t\t%s\n", temp);
break;
case HDR_journal_server:
memcpy(temp, p + 2, p[1]);
temp[p[1]] = '\0';
FPRINTF(outfile, "\tJournal server:\t\t%s\n", temp);
break;
case HDR_file:
memcpy(temp, p + 2, p[1]);
temp[p[1]] = '\0';
FPRINTF(outfile, "\tContinuation file:\t\t%s\n", temp);
break;
case HDR_last_page:
memcpy(&number, p + 2, sizeof(number));
FPRINTF(outfile, "\tLast logical page:\t\t%ld\n", number);
break;
case HDR_unlicensed:
memcpy(&number, p + 2, sizeof(number));
FPRINTF(outfile, "\tUnlicensed accesses:\t\t%ld\n", number);
break;
case HDR_sweep_interval:
memcpy(&number, p + 2, sizeof(number));
FPRINTF(outfile, "\tSweep interval:\t\t%ld\n", number);
break;
case HDR_log_name:
memcpy(temp, p + 2, p[1]);
temp[p[1]] = '\0';
FPRINTF(outfile, "\tReplay logging file:\t\t%s\n", temp);
break;
case HDR_cache_file:
memcpy(temp, p + 2, p[1]);
temp[p[1]] = '\0';
FPRINTF(outfile, "\tShared Cache file:\t\t%s\n", temp);
2001-05-23 15:26:42 +02:00
break;
case HDR_difference_file:
memcpy(temp, p + 2, p[1]);
temp[p[1]] = '\0';
FPRINTF(outfile, "\tBackup difference file:\t%s\n", temp);
break;
case HDR_backup_guid: {
char buff[GUID_BUFF_SIZE];
GuidToString(buff, reinterpret_cast<const FB_GUID*>(p+2));
FPRINTF(outfile, "\tDatabase backup GUID:\t%s\n", buff);
break;
}
2001-05-23 15:26:42 +02:00
default:
if (*p > HDR_max)
FPRINTF(outfile, "\tUnrecognized option %d, length %d\n",
p[0], p[1]);
else
FPRINTF(outfile, "\tEncoded option %d, length %d\n", p[0],
p[1]);
break;
}
}
2001-05-23 15:26:42 +02:00
FPRINTF(outfile, "\t*END*\n");
}
void PPG_print_log(const log_info_page* logp, SLONG page,
2001-05-23 15:26:42 +02:00
#ifdef SUPERSERVER
SVC outfile)
#else
IB_FILE* outfile)
2001-05-23 15:26:42 +02:00
#endif
{
/**************************************
*
* P P G _ p r i n t _ l o g
*
**************************************
*
* Functional description
* Print log page information
*
**************************************/
SLONG flags;
SLONG ltemp;
SSHORT stemp;
USHORT ustemp;
struct tm time;
TEXT temp[257];
const UCHAR* p = logp->log_data;
2001-05-23 15:26:42 +02:00
if (page == LOG_PAGE)
FPRINTF(outfile, "Database log page information:\n");
else
FPRINTF(outfile, "Database overflow log page information:\n");
if (page == LOG_PAGE) {
if (logp->log_mod_tid)
FPRINTF(outfile, "\tModified by transaction\t%ld\n",
logp->log_mod_tid);
if (logp->log_mod_tip)
FPRINTF(outfile, "\tModified tip page\t%ld\n", logp->log_mod_tip);
if (!logp->log_creation_date[0] && !logp->log_creation_date[1])
{
FPRINTF(outfile, "\tCreation date\n");
}
else
{
isc_decode_date(reinterpret_cast<const ISC_QUAD*>(logp->log_creation_date),
2001-05-23 15:26:42 +02:00
&time);
FPRINTF(outfile,
"\tCreation date\t%s %d, %d %d:%02d:%02d\n",
2003-12-31 06:36:12 +01:00
FB_SHORT_MONTHS[time.tm_mon],
2001-05-23 15:26:42 +02:00
time.tm_mday,
time.tm_year + 1900,
time.tm_hour,
time.tm_min,
time.tm_sec);
}
FPRINTF(outfile, "\tLog flags:\t%ld\n", logp->log_flags);
if (flags = logp->log_flags) {
if (flags & log_no_ail)
FPRINTF(outfile, "\t\tNo write ahead log\n");
if (flags & log_add)
FPRINTF(outfile, "\t\tLog added\n");
if (flags & log_delete)
FPRINTF(outfile, "\t\tLog deleted\n");
if (flags & log_recover)
FPRINTF(outfile, "\t\tRecovery required\n");
if (flags & log_rec_in_progress)
FPRINTF(outfile, "\t\tRecovery in progress\n");
if (flags & log_partial_rebuild)
FPRINTF(outfile, "\t\tPartial recovery\n");
FPRINTF(outfile, "\n");
}
}
FPRINTF(outfile, "\tNext log page:\t%ld\n", logp->log_next_page);
#ifdef DEV_BUILD
FPRINTF(outfile, "\tClumplet End\t%d\n", logp->log_end);
#endif
FPRINTF(outfile, "\n Variable log data:\n");
for (p = logp->log_data; *p != HDR_end; p += 2 + p[1]) {
switch (*p) {
case LOG_ctrl_file1:
FPRINTF(outfile, "\tControl Point 1:\n");
memcpy(temp, p + 2, logp->log_cp_1.cp_fn_length);
temp[logp->log_cp_1.cp_fn_length] = '\0';
FPRINTF(outfile, "\t\tFile name:\t%s\n", temp);
2003-04-03 03:51:03 +02:00
FPRINTF(outfile, "\t\tPartition offset: %"SLONGFORMAT" ",
2001-05-23 15:26:42 +02:00
logp->log_cp_1.cp_p_offset);
2003-04-03 03:51:03 +02:00
FPRINTF(outfile, "\tSeqno: %"SLONGFORMAT" ", logp->log_cp_1.cp_seqno);
FPRINTF(outfile, "\tOffset: %"SLONGFORMAT" ", logp->log_cp_1.cp_offset);
2001-05-23 15:26:42 +02:00
FPRINTF(outfile, "\n");
break;
case LOG_ctrl_file2:
FPRINTF(outfile, "\tControl Point 2:\n");
memcpy(temp, p + 2, logp->log_cp_2.cp_fn_length);
temp[logp->log_cp_2.cp_fn_length] = '\0';
FPRINTF(outfile, "\t\tFile name:\t%s\n", temp);
2003-04-03 03:51:03 +02:00
FPRINTF(outfile, "\t\tPartition offset: %"SLONGFORMAT" ",
2001-05-23 15:26:42 +02:00
logp->log_cp_2.cp_p_offset);
2003-04-03 03:51:03 +02:00
FPRINTF(outfile, "\tSeqno: %"SLONGFORMAT" ", logp->log_cp_2.cp_seqno);
FPRINTF(outfile, "\tOffset: %"SLONGFORMAT" ", logp->log_cp_2.cp_offset);
2001-05-23 15:26:42 +02:00
FPRINTF(outfile, "\n");
break;
case LOG_logfile:
FPRINTF(outfile, "\tCurrent File:\n");
memcpy(temp, p + 2, logp->log_file.cp_fn_length);
temp[logp->log_file.cp_fn_length] = '\0';
FPRINTF(outfile, "\t\tFile name:\t\t%s\n", temp);
2003-04-03 03:51:03 +02:00
FPRINTF(outfile, "\t\tPartition offset: %"SLONGFORMAT" ",
2001-05-23 15:26:42 +02:00
logp->log_file.cp_p_offset);
2003-04-03 03:51:03 +02:00
FPRINTF(outfile, "\tSeqno: %"SLONGFORMAT" ", logp->log_file.cp_seqno);
FPRINTF(outfile, "\tOffset: %"SLONGFORMAT" ", logp->log_file.cp_offset);
2001-05-23 15:26:42 +02:00
FPRINTF(outfile, "\n");
break;
case LOG_chkpt_len:
memcpy(&ltemp, p + 2, p[1]);
2003-04-03 03:51:03 +02:00
FPRINTF(outfile, "\tCheck Point Length %"SLONGFORMAT"\n", ltemp);
2001-05-23 15:26:42 +02:00
break;
case LOG_num_bufs:
memcpy(&stemp, p + 2, p[1]);
FPRINTF(outfile, "\tNumber of WAL buffers %d\n", stemp);
break;
case LOG_bufsize:
memcpy(&ustemp, p + 2, p[1]);
2003-04-03 03:51:03 +02:00
FPRINTF(outfile, "\tWAL buffer Size %u\n", ustemp);
2001-05-23 15:26:42 +02:00
break;
case LOG_grp_cmt_wait:
memcpy(&ltemp, p + 2, p[1]);
2003-04-03 03:51:03 +02:00
FPRINTF(outfile, "\tGroup Commit Wait Time %"SLONGFORMAT"\n", ltemp);
2001-05-23 15:26:42 +02:00
break;
default:
if (*p > LOG_max)
FPRINTF(outfile, "\tUnrecognized option %d, length %d\n",
p[0], p[1]);
else
FPRINTF(outfile, "\tEncoded option %d, length %d\n", p[0],
p[1]);
break;
}
}
FPRINTF(outfile, "\t*END*\n");
}