1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
/*
Copyright (c) 2005 Health Market Science, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA
You can contact Health Market Science at info@healthmarketscience.com
or at the following address:
Health Market Science
2700 Horizon Drive
Suite 200
King of Prussia, PA 19406
*/
package com.healthmarketscience.jackcess;
import java.io.IOException;
import java.nio.ByteBuffer;
/**
* Usage map whose map is written across one or more entire separate pages of
* page type USAGE_MAP. This type of map can contain 32736 pages per reference
* page, and a maximum of 16 reference map pages for a total maximum of 523776
* pages (2 GB).
* @author Tim McCune
*/
public class ReferenceUsageMap extends UsageMap {
/** Buffer that contains the current reference map page */
private ByteBuffer _mapPageBuffer;
/** Page number of the reference map page that was last read */
private int _mapPageNum;
/**
* @param pageChannel Used to read in pages
* @param dataBuffer Buffer that contains this map's declaration
* @param pageNum Page number that this usage map is contained in
* @param format Format of the database that contains this usage map
* @param rowStart Offset at which the declaration starts in the buffer
*/
public ReferenceUsageMap(PageChannel pageChannel, ByteBuffer dataBuffer,
int pageNum, JetFormat format, short rowStart)
throws IOException
{
super(pageChannel, dataBuffer, pageNum, format, rowStart);
_mapPageBuffer = pageChannel.createPageBuffer();
for (int i = 0; i < 17; i++) {
_mapPageNum = dataBuffer.getInt(getRowStart() +
format.OFFSET_REFERENCE_MAP_PAGE_NUMBERS + (4 * i));
if (_mapPageNum > 0) {
pageChannel.readPage(_mapPageBuffer, _mapPageNum);
byte pageType = _mapPageBuffer.get();
if (pageType != PageTypes.USAGE_MAP) {
throw new IOException("Looking for usage map at page " + _mapPageNum +
", but page type is " + pageType);
}
_mapPageBuffer.position(format.OFFSET_USAGE_MAP_PAGE_DATA);
setStartOffset(_mapPageBuffer.position());
processMap(_mapPageBuffer, i, 0);
}
}
}
//Javadoc copied from UsageMap
protected void addOrRemovePageNumber(final int pageNumber, boolean add)
throws IOException
{
int pageIndex = (int) Math.floor(pageNumber / getFormat().PAGES_PER_USAGE_MAP_PAGE);
int mapPageNumber = getDataBuffer().getInt(calculateMapPagePointerOffset(pageIndex));
if (mapPageNumber > 0) {
if (_mapPageNum != mapPageNumber) {
//Need to read in the map page
getPageChannel().readPage(_mapPageBuffer, mapPageNumber);
_mapPageNum = mapPageNumber;
}
} else {
//Need to create a new usage map page
createNewUsageMapPage(pageIndex);
}
updateMap(pageNumber, pageNumber - (getFormat().PAGES_PER_USAGE_MAP_PAGE * pageIndex),
1 << ((pageNumber - (getFormat().PAGES_PER_USAGE_MAP_PAGE * pageIndex)) % 8),
_mapPageBuffer, add);
getPageChannel().writePage(_mapPageBuffer, _mapPageNum);
}
/**
* Create a new usage map page and update the map declaration with a pointer
* to it.
* @param pageIndex Index of the page reference within the map declaration
*/
private void createNewUsageMapPage(int pageIndex) throws IOException {
_mapPageBuffer = getPageChannel().createPageBuffer();
_mapPageBuffer.put(PageTypes.USAGE_MAP);
_mapPageBuffer.put((byte) 0x01); //Unknown
_mapPageBuffer.putShort((short) 0); //Unknown
_mapPageNum = getPageChannel().writeNewPage(_mapPageBuffer);
getDataBuffer().putInt(calculateMapPagePointerOffset(pageIndex), _mapPageNum);
getPageChannel().writePage(getDataBuffer(), getDataPageNumber());
}
private int calculateMapPagePointerOffset(int pageIndex) {
return getRowStart() + getFormat().OFFSET_REFERENCE_MAP_PAGE_NUMBERS + (pageIndex * 4);
}
}
|