Skip to content

Commit

Permalink
add pgpro11 for postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Safonov committed Aug 26, 2022
1 parent 9570d4d commit cf1e7b2
Show file tree
Hide file tree
Showing 4 changed files with 289 additions and 0 deletions.
221 changes: 221 additions & 0 deletions format/postgres/flavours/pgpro11/pg_control.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,221 @@
package pgpro11

import (
"github.com/wader/fq/format/postgres/common"
"github.com/wader/fq/pkg/decode"
"github.com/wader/fq/pkg/scalar"
)

// type = struct ControlFileData {
/* 0 | 8 */ // uint64 system_identifier;
/* 8 | 4 */ // uint32 pg_control_version;
/* 12 | 4 */ // uint32 catalog_version_no;
/* 16 | 4 */ // DBState state;
/* XXX 4-byte hole */
/* 24 | 8 */ // pg_time_t time;
/* 32 | 8 */ // XLogRecPtr checkPoint;
/* 40 | 80 */ // CheckPoint checkPointCopy;
/* 120 | 8 */ // XLogRecPtr unloggedLSN;
/* 128 | 8 */ // XLogRecPtr minRecoveryPoint;
/* 136 | 4 */ // TimeLineID minRecoveryPointTLI;
/* XXX 4-byte hole */
/* 144 | 8 */ // XLogRecPtr backupStartPoint;
/* 152 | 8 */ // XLogRecPtr backupEndPoint;
/* 160 | 1 */ // _Bool backupEndRequired;
/* XXX 3-byte hole */
/* 164 | 4 */ // int wal_level;
/* 168 | 1 */ // _Bool wal_log_hints;
/* XXX 3-byte hole */
/* 172 | 4 */ // int MaxConnections;
/* 176 | 4 */ // int max_worker_processes;
/* 180 | 4 */ // int max_prepared_xacts;
/* 184 | 4 */ // int max_locks_per_xact;
/* 188 | 1 */ // _Bool track_commit_timestamp;
/* XXX 3-byte hole */
/* 192 | 4 */ // uint32 maxAlign;
/* XXX 4-byte hole */
/* 200 | 8 */ // double floatFormat;
/* 208 | 4 */ // uint32 blcksz;
/* 212 | 4 */ // uint32 relseg_size;
/* 216 | 4 */ // uint32 xlog_blcksz;
/* 220 | 4 */ // uint32 xlog_seg_size;
/* 224 | 4 */ // uint32 nameDataLen;
/* 228 | 4 */ // uint32 indexMaxKeys;
/* 232 | 4 */ // uint32 toast_max_chunk_size;
/* 236 | 4 */ // uint32 loblksize;
/* 240 | 1 */ // _Bool float4ByVal;
/* 241 | 1 */ // _Bool float8ByVal;
/* XXX 2-byte hole */
/* 244 | 4 */ // uint32 data_checksum_version;
/* 248 | 32 */ // char mock_authentication_nonce[32];
/* 280 | 4 */ // pg_icu_version icu_version;
/* 284 | 4 */ // pg_crc32c crc
//
/* total size (bytes): 288 */

// type = struct CheckPoint {
/* 0 | 8 */ // XLogRecPtr redo;
/* 8 | 4 */ // TimeLineID ThisTimeLineID;
/* 12 | 4 */ // TimeLineID PrevTimeLineID;
/* 16 | 1 */ // _Bool fullPageWrites;
/* XXX 3-byte hole */
/* 20 | 4 */ // uint32 nextXidEpoch;
/* 24 | 4 */ // TransactionId nextXid;
/* 28 | 4 */ // Oid nextOid;
/* 32 | 4 */ // MultiXactId nextMulti;
/* 36 | 4 */ // MultiXactOffset nextMultiOffset;
/* 40 | 4 */ // TransactionId oldestXid;
/* 44 | 4 */ // Oid oldestXidDB;
/* 48 | 4 */ // MultiXactId oldestMulti;
/* 52 | 4 */ // Oid oldestMultiDB;
/* 56 | 8 */ // pg_time_t time;
/* 64 | 4 */ // TransactionId oldestCommitTsXid;
/* 68 | 4 */ // TransactionId newestCommitTsXid;
/* 72 | 4 */ // TransactionId oldestActiveXid;
/* XXX 4-byte padding */
//
/* total size (bytes): 80 */

func DecodePgControl(d *decode.D, in any) any {
d.SeekAbs(0)
/* 0 | 8 */ // uint64 system_identifier;
/* 8 | 4 */ // uint32 pg_control_version;
/* 12 | 4 */ // uint32 catalog_version_no;
/* 16 | 4 */ // DBState state;
/* XXX 4-byte hole */
d.FieldU64("system_identifier")
d.FieldU32("pg_control_version")
d.FieldU32("catalog_version_no")
d.FieldU32("state", common.DBState)
d.U32()

/* 24 | 8 */ // pg_time_t time;
/* 32 | 8 */ // XLogRecPtr checkPoint;
/* 40 | 80 */ // CheckPoint checkPointCopy;
d.FieldS64("time", common.TimeMapper)
d.FieldU64("checkPoint", common.XLogRecPtrMapper)
d.FieldStruct("checkPointCopy", func(d *decode.D) {
/* 0 | 8 */ // XLogRecPtr redo;
/* 8 | 4 */ // TimeLineID ThisTimeLineID;
/* 12 | 4 */ // TimeLineID PrevTimeLineID;
/* 16 | 1 */ // _Bool fullPageWrites;
/* XXX 3-byte hole */
d.FieldU64("redo", common.XLogRecPtrMapper)
d.FieldU32("ThisTimeLineID")
d.FieldU32("PrevTimeLineID")
d.FieldU8("fullPageWrites")
d.U24()

/* 20 | 4 */ // uint32 nextXidEpoch;
/* 24 | 4 */ // TransactionId nextXid;
/* 28 | 4 */ // Oid nextOid;
/* 32 | 4 */ // MultiXactId nextMulti;
/* 36 | 4 */ // MultiXactOffset nextMultiOffset;
/* 40 | 4 */ // TransactionId oldestXid;
/* 44 | 4 */ // Oid oldestXidDB;
/* 48 | 4 */ // MultiXactId oldestMulti;
/* 52 | 4 */ // Oid oldestMultiDB;
/* 56 | 8 */ // pg_time_t time;
/* 64 | 4 */ // TransactionId oldestCommitTsXid;
/* 68 | 4 */ // TransactionId newestCommitTsXid;
/* 72 | 4 */ // TransactionId oldestActiveXid;
/* XXX 4-byte padding */
d.FieldU32("nextXidEpoch")
d.FieldU32("nextXid")
d.FieldU32("nextOid")
d.FieldU32("nextMulti")
d.FieldU32("nextMultiOffset")
d.FieldU32("oldestXid")
d.FieldU32("oldestXidDB")
d.FieldU32("oldestMulti")
d.FieldU32("oldestMultiDB")
d.FieldS64("time", common.TimeMapper)
d.FieldU32("oldestCommitTsXid")
d.FieldU32("newestCommitTsXid")
d.FieldU32("oldestActiveXid")
d.U32()
})

/* 120 | 8 */ // XLogRecPtr unloggedLSN;
/* 128 | 8 */ // XLogRecPtr minRecoveryPoint;
/* 136 | 4 */ // TimeLineID minRecoveryPointTLI;
/* XXX 4-byte hole */
d.FieldU64("unloggedLSN", common.LocPtrMapper)
d.FieldU64("minRecoveryPoint", common.LocPtrMapper)
d.FieldU32("minRecoveryPointTLI")
d.U32()

/* 144 | 8 */ // XLogRecPtr backupStartPoint;
/* 152 | 8 */ // XLogRecPtr backupEndPoint;
/* 160 | 1 */ // _Bool backupEndRequired;
/* XXX 3-byte hole */
d.FieldU64("backupStartPoint", common.LocPtrMapper)
d.FieldU64("backupEndPoint", common.LocPtrMapper)
d.FieldU8("backupEndRequired")
d.U24()

/* 164 | 4 */ // int wal_level;
/* 168 | 1 */ // _Bool wal_log_hints;
/* XXX 3-byte hole */
d.FieldS32("wal_level", common.WalLevel)
d.FieldU8("wal_log_hints")
d.U24()

/* 172 | 4 */ // int MaxConnections;
/* 176 | 4 */ // int max_worker_processes;
/* 180 | 4 */ // int max_prepared_xacts;
/* 184 | 4 */ // int max_locks_per_xact;
/* 188 | 1 */ // _Bool track_commit_timestamp;
/* XXX 3-byte hole */
d.FieldS32("MaxConnections")
d.FieldS32("max_worker_processes")
d.FieldS32("max_prepared_xacts")
d.FieldS32("max_locks_per_xact")
d.FieldU8("track_commit_timestamp")
d.U24()

/* 192 | 4 */ // uint32 maxAlign;
/* XXX 4-byte hole */
d.FieldU32("maxAlign")
d.U32()

/* 200 | 8 */ // double floatFormat;
/* 208 | 4 */ // uint32 blcksz;
/* 212 | 4 */ // uint32 relseg_size;
/* 216 | 4 */ // uint32 xlog_blcksz;
/* 220 | 4 */ // uint32 xlog_seg_size;
/* 224 | 4 */ // uint32 nameDataLen;
/* 228 | 4 */ // uint32 indexMaxKeys;
/* 232 | 4 */ // uint32 toast_max_chunk_size;
/* 236 | 4 */ // uint32 loblksize;
/* 240 | 1 */ // _Bool float4ByVal;
/* 241 | 1 */ // _Bool float8ByVal;
/* XXX 2-byte hole */
d.FieldF64("floatFormat")
d.FieldU32("blcksz")
d.FieldU32("relseg_size")
d.FieldU32("xlog_blcksz")
d.FieldU32("xlog_seg_size")
d.FieldU32("nameDataLen")
d.FieldU32("indexMaxKeys")
d.FieldU32("toast_max_chunk_size")
d.FieldU32("loblksize")
d.FieldU8("float4ByVal")
d.FieldU8("float8ByVal")
d.U16()

/* 244 | 4 */ // uint32 data_checksum_version;
/* 248 | 32 */ // char mock_authentication_nonce[32];
/* 280 | 4 */ // pg_icu_version icu_version;
/* 284 | 4 */ // pg_crc32c crc
d.FieldU32("data_checksum_version")
d.FieldRawLen("mock_authentication_nonce", 32*8, scalar.RawHex)
d.FieldU32("icu_version")
d.FieldU32("crc")
d.U32()
/* total size (bytes): 288 */

d.AssertPosBytes(288)

return nil
}
61 changes: 61 additions & 0 deletions format/postgres/flavours/pgpro11/pg_heap.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
package pgpro11

import (
"github.com/wader/fq/format/postgres/common"
"github.com/wader/fq/format/postgres/flavours/postgres14/common14"
"github.com/wader/fq/pkg/decode"
)

// type = struct PageHeaderData {
/* 0 | 8 */ // PageXLogRecPtr pd_lsn
/* 8 | 2 */ // uint16 pd_checksum
/* 10 | 2 */ // uint16 pd_flags
/* 12 | 2 */ // LocationIndex pd_lower
/* 14 | 2 */ // LocationIndex pd_upper
/* 16 | 2 */ // LocationIndex pd_special
/* 18 | 2 */ // uint16 pd_pagesize_version
/* 20 | 4 */ // TransactionId pd_prune_xid
/* 24 | 0 */ // ItemIdData pd_linp[]
//
/* total size (bytes): 24 */

// type = struct HeapTupleHeaderData {
/* 0 | 12 */ // union {
/* 12 */ // HeapTupleFields t_heap;
/* 12 */ // DatumTupleFields t_datum;
// } t_choice
/* total size (bytes): 12 */
/* 12 | 6 */ // ItemPointerData t_ctid
/* 18 | 2 */ // uint16 t_infomask2
/* 20 | 2 */ // uint16 t_infomask
/* 22 | 1 */ // uint8 t_hoff
/* 23 | 0 */ // bits8 t_bits[]
/* XXX 1-byte padding */
//
/* total size (bytes): 24 */

// type = struct HeapTupleFields {
/* 0 | 4 */ // TransactionId t_xmin
/* 4 | 4 */ // TransactionId t_xmax
/* 8 | 4 */ // union {
/* 4 */ // CommandId t_cid;
/* 4 */ // TransactionId t_xvac;
// } t_field3
/* total size (bytes): 4 */
//
/* total size (bytes): 12 */

// type = struct DatumTupleFields {
/* 0 | 4 */ // int32 datum_len_
/* 4 | 4 */ // int32 datum_typmod
/* 8 | 4 */ // Oid datum_typeid
//
/* total size (bytes): 12 */

func DecodeHeap(d *decode.D) any {
heap := &common14.HeapD{
PageSize: common.HeapPageSize,
DecodePageHeaderDataFn: common14.DecodePageHeaderData,
}
return common14.DecodeHeap(d, heap)
}
4 changes: 4 additions & 0 deletions format/postgres/pg_control.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package postgres

import (
"github.com/wader/fq/format"
"github.com/wader/fq/format/postgres/flavours/pgpro11"
"github.com/wader/fq/format/postgres/flavours/pgpro12"
"github.com/wader/fq/format/postgres/flavours/pgpro13"
"github.com/wader/fq/format/postgres/flavours/pgpro14"
Expand Down Expand Up @@ -42,6 +43,7 @@ const (
PG_FLAVOUR_POSTGRES12 = "postgres12"
PG_FLAVOUR_POSTGRES13 = "postgres13"
PG_FLAVOUR_POSTGRES14 = "postgres14"
PG_FLAVOUR_PGPRO11 = "pgpro11"
PG_FLAVOUR_PGPRO12 = "pgpro12"
PG_FLAVOUR_PGPRO13 = "pgpro13"
PG_FLAVOUR_PGPRO14 = "pgpro14"
Expand All @@ -65,6 +67,8 @@ func decodePgControl(d *decode.D, in any) any {
return postgres13.DecodePgControl(d, in)
case PG_FLAVOUR_POSTGRES14, PG_FLAVOUR_POSTGRES:
return postgres14.DecodePgControl(d, in)
case PG_FLAVOUR_PGPRO11:
return pgpro11.DecodePgControl(d, in)
case PG_FLAVOUR_PGPRO12:
return pgpro12.DecodePgControl(d, in)
case PG_FLAVOUR_PGPRO13:
Expand Down
3 changes: 3 additions & 0 deletions format/postgres/pgheap.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package postgres

import (
"github.com/wader/fq/format"
"github.com/wader/fq/format/postgres/flavours/pgpro11"
"github.com/wader/fq/format/postgres/flavours/pgpro12"
"github.com/wader/fq/format/postgres/flavours/pgpro13"
"github.com/wader/fq/format/postgres/flavours/pgpro14"
Expand Down Expand Up @@ -52,6 +53,8 @@ func decodePgheap(d *decode.D, in any) any {
return pgproee13.DecodeHeap(d)
case PG_FLAVOUR_PGPROEE14:
return pgproee14.DecodeHeap(d)
case PG_FLAVOUR_PGPRO11:
return pgpro11.DecodeHeap(d)
case PG_FLAVOUR_PGPRO12:
return pgpro12.DecodeHeap(d)
case PG_FLAVOUR_PGPRO13:
Expand Down

0 comments on commit cf1e7b2

Please sign in to comment.