summaryrefslogtreecommitdiff
path: root/src/heap/heap_conv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/heap/heap_conv.c')
-rw-r--r--src/heap/heap_conv.c93
1 files changed, 93 insertions, 0 deletions
diff --git a/src/heap/heap_conv.c b/src/heap/heap_conv.c
new file mode 100644
index 00000000..9f432d13
--- /dev/null
+++ b/src/heap/heap_conv.c
@@ -0,0 +1,93 @@
+/*-
+ * See the file LICENSE for redistribution information.
+ *
+ * Copyright (c) 2010, 2012 Oracle and/or its affiliates. All rights reserved.
+ */
+
+#include "db_config.h"
+
+#include "db_int.h"
+#include "dbinc/db_page.h"
+#include "dbinc/db_swap.h"
+#include "dbinc/heap.h"
+
+/*
+ * __heap_pgin --
+ * Convert host-specific page layout from the host-independent format
+ * stored on disk.
+ *
+ * PUBLIC: int __heap_pgin __P((DB *, db_pgno_t, void *, DBT *));
+ */
+int
+__heap_pgin(dbp, pg, pp, cookie)
+ DB *dbp;
+ db_pgno_t pg;
+ void *pp;
+ DBT *cookie;
+{
+ DB_PGINFO *pginfo;
+ PAGE *h;
+
+ pginfo = (DB_PGINFO *)cookie->data;
+ if (!F_ISSET(pginfo, DB_AM_SWAP))
+ return (0);
+
+ h = pp;
+ return (TYPE(h) == P_HEAPMETA ? __heap_mswap(dbp->env, pp) :
+ __db_byteswap(dbp, pg, pp, pginfo->db_pagesize, 1));
+}
+
+/*
+ * __heap_pgout --
+ * Convert host-specific page layout from the host-independent format
+ * stored on disk.
+ *
+ * PUBLIC: int __heap_pgout __P((DB *, db_pgno_t, void *, DBT *));
+ */
+int
+__heap_pgout(dbp, pg, pp, cookie)
+ DB *dbp;
+ db_pgno_t pg;
+ void *pp;
+ DBT *cookie;
+{
+ DB_PGINFO *pginfo;
+ PAGE *h;
+
+ pginfo = (DB_PGINFO *)cookie->data;
+ if (!F_ISSET(pginfo, DB_AM_SWAP))
+ return (0);
+
+ h = pp;
+ return (TYPE(h) == P_HEAPMETA ? __heap_mswap(dbp->env, pp) :
+ __db_byteswap(dbp, pg, pp, pginfo->db_pagesize, 0));
+}
+
+/*
+ * __heap_mswap --
+ * Swap the bytes on the heap metadata page.
+ *
+ * PUBLIC: int __heap_mswap __P((ENV *, PAGE *));
+ */
+int
+__heap_mswap(env, pg)
+ ENV *env;
+ PAGE *pg;
+{
+ u_int8_t *p;
+
+ COMPQUIET(env, NULL);
+
+ __db_metaswap(pg);
+ p = (u_int8_t *)pg + sizeof(DBMETA);
+
+ SWAP32(p); /* curregion */
+ SWAP32(p); /* nregions */
+ SWAP32(p); /* gbytes */
+ SWAP32(p); /* bytes */
+ SWAP32(p); /* region_size */
+ p += 92 * sizeof(u_int32_t); /* unused */
+ SWAP32(p); /* crypto_magic */
+
+ return (0);
+}