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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
---*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Manages the page buffer
|
|
|
|
|
2007-03-03 01:52:03 +00:00
|
|
|
bufferManager - Provides cached page handling, delegates to blob
|
2004-06-24 21:10:31 +00:00
|
|
|
manager when necessary. Doesn't implement an eviction policy.
|
2004-07-30 01:28:39 +00:00
|
|
|
That is left to a cacheManager. (Multiple cacheManagers could be
|
2007-03-03 01:52:03 +00:00
|
|
|
used with a single bufferManager.)
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2009-04-13 21:55:08 +00:00
|
|
|
@todo Allow error checking!
|
|
|
|
|
2004-07-04 00:46:49 +00:00
|
|
|
@todo Refactoring for lock manager
|
2009-04-13 21:55:08 +00:00
|
|
|
|
2004-07-04 00:46:49 +00:00
|
|
|
Possible interface for lockManager:
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2004-07-04 00:46:49 +00:00
|
|
|
Define three classes of objects that the lock manager is interested in:
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2004-07-04 00:46:49 +00:00
|
|
|
Transactions,
|
|
|
|
Operations,
|
|
|
|
Predicates.
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2007-03-03 01:52:03 +00:00
|
|
|
Stasis already has operations and transactions, and these can be
|
2004-07-04 00:46:49 +00:00
|
|
|
relatively unchanged. Predicates are read only operations that
|
|
|
|
return a set of tuples. Tread() is the simplest predicate.
|
2009-04-13 21:55:08 +00:00
|
|
|
Index scans provide a motivating example.
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2004-07-04 00:46:49 +00:00
|
|
|
See http://research.microsoft.com/%7Eadya/pubs/icde00.pdf
|
|
|
|
(Generalized Isolation Level Definitions, Adya, Liskov, O'Neil,
|
|
|
|
2000) for a theoretical discussion of general locking schemes..
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2004-07-04 00:46:49 +00:00
|
|
|
Locking functions can return errors such as DEADLOCK, etc.
|
|
|
|
When such a value is returned, the transaction aborts, and an
|
|
|
|
error is passed up to the application.
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2008-04-23 01:41:57 +00:00
|
|
|
@ingroup BUFFER_MANAGER
|
2004-06-24 21:10:31 +00:00
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
#ifndef __BUFFERMANAGER_H__
|
|
|
|
#define __BUFFERMANAGER_H__
|
2009-08-22 00:01:02 +00:00
|
|
|
#include <stasis/common.h>
|
2004-07-30 01:28:39 +00:00
|
|
|
BEGIN_C_DECLS
|
2004-07-23 20:21:44 +00:00
|
|
|
/**
|
2007-10-02 00:18:33 +00:00
|
|
|
* Obtain a pointer to a page from the buffer manager. The page will
|
|
|
|
* be pinned, and the pointer valid until releasePage is called.
|
|
|
|
*
|
2006-10-05 00:46:18 +00:00
|
|
|
* @param xid The transaction that is pinning the page (used by page-level locking implementations.)
|
2007-10-02 00:18:33 +00:00
|
|
|
*
|
2004-07-23 20:21:44 +00:00
|
|
|
* @param pageid ID of the page you want to load
|
2007-10-02 00:18:33 +00:00
|
|
|
*
|
2004-07-23 20:21:44 +00:00
|
|
|
* @return fully formed Page type
|
|
|
|
*/
|
2008-10-03 02:42:25 +00:00
|
|
|
Page * loadPage(int xid, pageid_t pageid);
|
2007-03-07 06:45:28 +00:00
|
|
|
|
2009-07-13 17:18:01 +00:00
|
|
|
Page * loadPageOfType(int xid, pageid_t pageid, pagetype_t type);
|
|
|
|
|
2008-10-03 02:42:25 +00:00
|
|
|
Page * loadUninitializedPage(int xid, pageid_t pageid);
|
2008-06-09 01:13:02 +00:00
|
|
|
|
2010-03-22 19:56:55 +00:00
|
|
|
Page * loadPageForOperation(int xid, pageid_t pageid, int op, int is_recovery);
|
2009-07-16 03:05:32 +00:00
|
|
|
|
2010-03-29 22:29:30 +00:00
|
|
|
void prefetchPages(pageid_t pageid, pageid_t count);
|
|
|
|
|
2009-07-14 07:46:47 +00:00
|
|
|
/**
|
|
|
|
Get a page from cache. This function should never block on I/O.
|
|
|
|
|
|
|
|
@return a pointer to the page, or NULL if the page is not in cache, or is being read from disk.
|
|
|
|
*/
|
2009-10-05 21:19:01 +00:00
|
|
|
Page * getCachedPage(int xid, const pageid_t pageid);
|
|
|
|
|
2004-07-23 20:21:44 +00:00
|
|
|
/**
|
2009-10-05 21:19:01 +00:00
|
|
|
loadPage acquires a lock when it is called, effectively pinning it
|
2004-07-27 21:30:54 +00:00
|
|
|
in memory. releasePage releases this lock.
|
2004-07-23 20:21:44 +00:00
|
|
|
*/
|
2007-08-14 01:20:08 +00:00
|
|
|
void releasePage(Page *p);
|
|
|
|
|
2009-10-05 21:19:01 +00:00
|
|
|
typedef struct stasis_buffer_manager_t stasis_buffer_manager_t;
|
|
|
|
|
|
|
|
struct stasis_buffer_manager_t {
|
|
|
|
Page * (*loadPageImpl)(stasis_buffer_manager_t*, int xid, pageid_t pageid, pagetype_t type);
|
|
|
|
Page * (*loadUninitPageImpl)(stasis_buffer_manager_t*, int xid, pageid_t pageid);
|
2010-03-29 22:29:30 +00:00
|
|
|
void (*prefetchPages)(stasis_buffer_manager_t*, pageid_t pageid, pageid_t count);
|
2009-10-05 21:19:01 +00:00
|
|
|
Page * (*getCachedPageImpl)(stasis_buffer_manager_t*, int xid, const pageid_t pageid);
|
|
|
|
void (*releasePageImpl)(stasis_buffer_manager_t*, Page * p);
|
|
|
|
/**
|
|
|
|
This is used by truncation to move dirty pages from Stasis cache
|
|
|
|
into the operating system cache. Once writeBackPage(p) returns,
|
|
|
|
calling forcePages() will synchronously force page number p to
|
|
|
|
disk.
|
|
|
|
|
|
|
|
(Not all buffer managers support synchronous writes to stable
|
|
|
|
storage. For compatibility, such buffer managers should ignore
|
|
|
|
this call.)
|
|
|
|
|
|
|
|
@return 0 on success, ENOENT if the page is not in cache, and EBUSY if the page is pinned.
|
|
|
|
*/
|
|
|
|
int (*writeBackPage)(stasis_buffer_manager_t*, pageid_t p);
|
|
|
|
/**
|
|
|
|
Force any written back pages to disk.
|
|
|
|
|
|
|
|
@see writeBackPage for more information.
|
|
|
|
|
|
|
|
If the buffer manager doesn't support stable storage, this call is
|
|
|
|
a no-op.
|
|
|
|
*/
|
|
|
|
void (*forcePages)(struct stasis_buffer_manager_t*);
|
|
|
|
/**
|
|
|
|
Force written back pages that fall within a particular range to disk.
|
|
|
|
|
|
|
|
This does not force page that have not been written to with pageWrite().
|
|
|
|
|
|
|
|
@param start the first pageid to be forced to disk
|
|
|
|
@param stop the page after the last page to be forced to disk.
|
|
|
|
*/
|
|
|
|
void (*forcePageRange)(struct stasis_buffer_manager_t*, pageid_t start, pageid_t stop);
|
|
|
|
void (*stasis_buffer_manager_simulate_crash)(struct stasis_buffer_manager_t*);
|
|
|
|
/**
|
|
|
|
* Write out any dirty pages. Assumes that there are no running transactions
|
|
|
|
*/
|
|
|
|
void (*stasis_buffer_manager_close)(struct stasis_buffer_manager_t*);
|
|
|
|
void * impl;
|
|
|
|
};
|
2006-09-27 20:31:29 +00:00
|
|
|
|
2006-08-04 23:45:27 +00:00
|
|
|
#ifdef PROFILE_LATCHES_WRITE_ONLY
|
|
|
|
#define loadPage(x,y) __profile_loadPage((x), (y), __FILE__, __LINE__)
|
|
|
|
#define releasePage(x) __profile_releasePage((x))
|
|
|
|
compensated_function void __profile_releasePage(Page * p);
|
2008-10-03 02:42:25 +00:00
|
|
|
compensated_function Page * __profile_loadPage(int xid, pageid_t pageid, char * file, int line);
|
2006-08-04 23:45:27 +00:00
|
|
|
#endif
|
|
|
|
|
2004-07-30 01:28:39 +00:00
|
|
|
END_C_DECLS
|
2004-07-14 20:49:18 +00:00
|
|
|
|
2004-06-24 21:10:31 +00:00
|
|
|
#endif
|