stasis-aries-wal/src/stasis/logger/logEntry.c

151 lines
5.1 KiB
C
Raw Normal View History

2004-06-24 21:10:31 +00:00
/*---
This software is copyrighted by the Regents of the University of
California, and other parties. The following terms apply to all files
associated with the software unless explicitly disclaimed in
individual files.
2004-06-24 21:10:31 +00:00
The authors hereby grant permission to use, copy, modify, distribute,
and license this software and its documentation for any purpose,
provided that existing copyright notices are retained in all copies
and that this notice is included verbatim in any distributions. No
written agreement, license, or royalty fee is required for any of the
authorized uses. Modifications to this software may be copyrighted by
their authors and need not follow the licensing terms described here,
provided that the new terms are clearly indicated on the first page of
each file where they apply.
2004-06-24 21:10:31 +00:00
IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
2004-06-24 21:10:31 +00:00
THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, AND
THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE
MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
2004-06-24 21:10:31 +00:00
GOVERNMENT USE: If you are acquiring this software on behalf of the
U.S. government, the Government shall have only "Restricted Rights" in
the software and related documentation as defined in the Federal
Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you are
acquiring the software on behalf of the Department of Defense, the
software shall be classified as "Commercial Computer Software" and the
Government shall have only "Restricted Rights" as defined in Clause
252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
authors grant the U.S. Government and others acting in its behalf
permission to use and distribute the software in accordance with the
terms specified in this license.
---*/
#include <config.h>
#include <stasis/common.h>
2004-06-24 21:10:31 +00:00
#include <assert.h>
#include <stasis/page.h> // For stasis_record_type_to_size()
#include <stasis/logger/logger2.h> // needed for LoggerSizeOfInternalLogEntry()
#include <stasis/logger/logEntry.h>
#include <stasis/crc32.h>
2004-06-24 21:10:31 +00:00
LogEntry * allocCommonLogEntry(lsn_t prevLSN, int xid, unsigned int type) {
LogEntry * ret = calloc(1,sizeof(struct __raw_log_entry));
2004-06-24 21:10:31 +00:00
ret->LSN = -1;
ret->prevLSN = prevLSN;
ret->xid = xid;
ret->type = type;
return ret;
}
2008-09-24 03:08:32 +00:00
LogEntry * allocPrepareLogEntry(lsn_t prevLSN, int xid, lsn_t recLSN) {
LogEntry * ret = calloc(1,sizeof(struct __raw_log_entry)+sizeof(lsn_t));
ret->LSN = -1;
ret->prevLSN = prevLSN;
ret->xid = xid;
ret->type = XPREPARE;
*(lsn_t*)(((struct __raw_log_entry*)ret)+1)=recLSN;
return ret;
}
const void * getUpdateArgs(const LogEntry * ret) {
2008-09-12 23:08:41 +00:00
assert(ret->type == UPDATELOG ||
ret->type == CLRLOG);
if(ret->update.arg_size == 0) {
2004-06-24 21:10:31 +00:00
return NULL;
} else {
return ((const byte*)ret) +
sizeof(struct __raw_log_entry) +
sizeof(UpdateLogEntry);
2004-06-24 21:10:31 +00:00
}
}
2008-09-24 03:08:32 +00:00
lsn_t getPrepareRecLSN(const LogEntry *e) {
lsn_t ret = *(lsn_t*)(((struct __raw_log_entry*)e)+1);
if(ret == -1) { ret = e->LSN; }
return ret;
}
LogEntry * allocUpdateLogEntry(lsn_t prevLSN, int xid,
unsigned int op, pageid_t page,
const byte * args, unsigned int arg_size) {
/** Use calloc since the struct might not be packed in memory;
otherwise, we'd leak uninitialized bytes to the log. */
size_t logentrysize =
sizeof(struct __raw_log_entry) + sizeof(UpdateLogEntry) + arg_size;
LogEntry * ret = calloc(1,logentrysize);
2004-06-24 21:10:31 +00:00
ret->LSN = -1;
ret->prevLSN = prevLSN;
ret->xid = xid;
ret->type = UPDATELOG;
ret->update.funcID = op;
ret->update.page = page;
ret->update.arg_size = arg_size;
if(arg_size) {
memcpy((void*)getUpdateArgs(ret), args, arg_size);
}
2004-06-24 21:10:31 +00:00
return ret;
}
LogEntry * allocCLRLogEntry(const LogEntry * old_e) {
CLRLogEntry * ret = calloc(1,sizeof(struct __raw_log_entry)+sizeofLogEntry(old_e));
2004-06-24 21:10:31 +00:00
ret->LSN = -1;
ret->prevLSN = old_e->prevLSN;
ret->xid = old_e->xid;
2004-06-24 21:10:31 +00:00
ret->type = CLRLOG;
DEBUG("compensates: %lld\n", old_e->LSN);
memcpy((void*)getCLRCompensated(ret), old_e, sizeofLogEntry(old_e));
return (LogEntry*)ret;
2004-06-24 21:10:31 +00:00
}
2008-12-01 19:48:59 +00:00
void freeLogEntry(const LogEntry* e) {
free((void*)e);
}
2004-06-24 21:10:31 +00:00
2008-12-01 19:48:59 +00:00
lsn_t sizeofLogEntry(const LogEntry * e) {
switch (e->type) {
2004-06-24 21:10:31 +00:00
case CLRLOG:
{
const LogEntry * contents = getCLRCompensated((const CLRLogEntry*) e);
assert(contents->type != CLRLOG);
return sizeof(struct __raw_log_entry) + sizeofLogEntry(contents);
}
case UPDATELOG:
{
return sizeof(struct __raw_log_entry) +
2008-12-01 19:48:59 +00:00
sizeof(UpdateLogEntry) + e->update.arg_size;
}
case INTERNALLOG:
2008-12-01 19:48:59 +00:00
return stasis_log_file->sizeof_internal_entry(stasis_log_file, e);
2008-09-24 03:08:32 +00:00
case XPREPARE:
return sizeof(struct __raw_log_entry)+sizeof(lsn_t);
2004-06-24 21:10:31 +00:00
default:
return sizeof(struct __raw_log_entry);
}
}