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.
|
2007-04-03 09:18:45 +00:00
|
|
|
|
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.
|
2007-04-03 09:18:45 +00:00
|
|
|
|
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.
|
2007-04-03 09:18:45 +00:00
|
|
|
|
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.
|
2007-04-03 09:18:45 +00:00
|
|
|
|
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.
|
|
|
|
---*/
|
2004-07-06 01:22:18 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
2007-06-11 21:36:57 +00:00
|
|
|
#include <stasis/common.h>
|
2004-06-24 21:10:31 +00:00
|
|
|
|
|
|
|
#include <assert.h>
|
2007-04-03 09:18:45 +00:00
|
|
|
|
2008-04-13 04:02:57 +00:00
|
|
|
#include <stasis/page.h> // For stasis_record_type_to_size()
|
2007-06-11 21:36:57 +00:00
|
|
|
#include <stasis/logger/logger2.h> // needed for LoggerSizeOfInternalLogEntry()
|
|
|
|
#include <stasis/logger/logEntry.h>
|
2008-03-14 03:09:29 +00:00
|
|
|
#include <stasis/crc32.h>
|
2004-06-24 21:10:31 +00:00
|
|
|
LogEntry * allocCommonLogEntry(lsn_t prevLSN, int xid, unsigned int type) {
|
2008-03-14 03:09:29 +00:00
|
|
|
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;
|
|
|
|
}
|
2009-04-03 22:01:37 +00:00
|
|
|
const void * getUpdateArgs(const LogEntry * ret) {
|
2008-09-12 23:08:41 +00:00
|
|
|
assert(ret->type == UPDATELOG ||
|
2007-04-03 09:18:45 +00:00
|
|
|
ret->type == CLRLOG);
|
2008-09-28 03:11:24 +00:00
|
|
|
if(ret->update.arg_size == 0) {
|
2004-06-24 21:10:31 +00:00
|
|
|
return NULL;
|
|
|
|
} else {
|
2009-04-22 22:03:38 +00:00
|
|
|
return ((const byte*)ret) +
|
|
|
|
sizeof(struct __raw_log_entry) +
|
2007-04-03 09:18:45 +00:00
|
|
|
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;
|
|
|
|
}
|
2008-09-28 03:11:24 +00:00
|
|
|
|
|
|
|
LogEntry * allocUpdateLogEntry(lsn_t prevLSN, int xid,
|
|
|
|
unsigned int op, pageid_t page,
|
|
|
|
const byte * args, unsigned int arg_size) {
|
2007-03-03 23:24:00 +00:00
|
|
|
/** Use calloc since the struct might not be packed in memory;
|
|
|
|
otherwise, we'd leak uninitialized bytes to the log. */
|
|
|
|
|
2008-09-28 03:11:24 +00:00
|
|
|
size_t logentrysize =
|
|
|
|
sizeof(struct __raw_log_entry) + sizeof(UpdateLogEntry) + arg_size;
|
|
|
|
|
2008-03-14 03:09:29 +00:00
|
|
|
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;
|
2008-09-28 03:11:24 +00:00
|
|
|
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-08-03 02:04:56 +00:00
|
|
|
}
|
2008-09-28 03:11:24 +00:00
|
|
|
|
2004-06-24 21:10:31 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-04-22 22:03:38 +00:00
|
|
|
LogEntry * allocCLRLogEntry(const LogEntry * old_e) {
|
2009-05-13 18:04:53 +00:00
|
|
|
CLRLogEntry * ret = calloc(1,sizeof(struct __raw_log_entry)+sizeofLogEntry(0, old_e));
|
2007-04-03 09:18:45 +00:00
|
|
|
|
2004-06-24 21:10:31 +00:00
|
|
|
ret->LSN = -1;
|
2008-09-28 03:11:24 +00:00
|
|
|
ret->prevLSN = old_e->prevLSN;
|
|
|
|
ret->xid = old_e->xid;
|
2004-06-24 21:10:31 +00:00
|
|
|
ret->type = CLRLOG;
|
2008-09-28 03:11:24 +00:00
|
|
|
DEBUG("compensates: %lld\n", old_e->LSN);
|
2009-05-13 18:04:53 +00:00
|
|
|
memcpy((void*)getCLRCompensated(ret), old_e, sizeofLogEntry(0, old_e));
|
2008-09-28 03:11:24 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
2009-05-13 18:04:53 +00:00
|
|
|
lsn_t sizeofLogEntry(stasis_log_t * lh, const LogEntry * e) {
|
2008-12-01 19:48:59 +00:00
|
|
|
switch (e->type) {
|
2004-06-24 21:10:31 +00:00
|
|
|
case CLRLOG:
|
2008-09-28 03:11:24 +00:00
|
|
|
{
|
2009-04-29 21:31:39 +00:00
|
|
|
const LogEntry * contents = getCLRCompensated((const CLRLogEntry*) e);
|
2009-04-22 22:03:38 +00:00
|
|
|
assert(contents->type != CLRLOG);
|
2009-05-13 18:04:53 +00:00
|
|
|
return sizeof(struct __raw_log_entry) + sizeofLogEntry(lh, contents);
|
2008-09-28 03:11:24 +00:00
|
|
|
}
|
2007-03-30 09:16:21 +00:00
|
|
|
case UPDATELOG:
|
2008-09-28 03:11:24 +00:00
|
|
|
{
|
|
|
|
return sizeof(struct __raw_log_entry) +
|
2008-12-01 19:48:59 +00:00
|
|
|
sizeof(UpdateLogEntry) + e->update.arg_size;
|
2008-09-28 03:11:24 +00:00
|
|
|
}
|
2006-10-04 04:38:21 +00:00
|
|
|
case INTERNALLOG:
|
2009-05-13 18:04:53 +00:00
|
|
|
assert(lh);
|
|
|
|
return lh->sizeof_internal_entry(lh,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);
|
|
|
|
}
|
|
|
|
}
|