casacore
Loading...
Searching...
No Matches
BucketBuffered.h
Go to the documentation of this file.
1//# BucketBuffered.h: Use buffered file IO for buckets in a part of a file
2//# Copyright (C) 2010
3//# Associated Universities, Inc. Washington DC, USA.
4//#
5//# This library is free software; you can redistribute it and/or modify it
6//# under the terms of the GNU Library General Public License as published by
7//# the Free Software Foundation; either version 2 of the License, or (at your
8//# option) any later version.
9//#
10//# This library is distributed in the hope that it will be useful, but WITHOUT
11//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13//# License for more details.
14//#
15//# You should have received a copy of the GNU Library General Public License
16//# along with this library; if not, write to the Free Software Foundation,
17//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
18//#
19//# Correspondence concerning AIPS++ should be addressed as follows:
20//# Internet email: casa-feedback@nrao.edu.
21//# Postal address: AIPS++ Project Office
22//# National Radio Astronomy Observatory
23//# 520 Edgemont Road
24//# Charlottesville, VA 22903-2475 USA
25
26#ifndef CASA_BUCKETBUFFERED_H
27#define CASA_BUCKETBUFFERED_H
28
29//# Includes
30#include <casacore/casa/aips.h>
31#include <casacore/casa/IO/BucketBase.h>
32
33
34namespace casacore { //# NAMESPACE CASACORE - BEGIN
35
36 //# Forward Declarations.
37 class FilebufIO;
38
39
40 // <summary>
41 // Use buffered file IO for buckets in a part of a file
42 // </summary>
43
44 // <use visibility=export>
45
46 // <reviewed reviewer="UNKNOWN" date="before2004/08/25" tests="" demos="">
47 // </reviewed>
48
49 // <prerequisite>
50 //# Classes you should understand before using this one.
51 // <li> <linkto class=BucketFile>BucketFile</linkto>
52 // </prerequisite>
53
54 // <synopsis>
55 // BucketBuffered is similar to class
56 // <linkto class=BucketCache>BucketCache</linkto> and is meant to be used by
57 // the storage managers of the Table System.
58 //
59 // It gives access to buckets in a file by means of memory-buffered files.
60 // However, its functionality is a subset of BucketCache and is only meant
61 // to be used by the Tiled Storage Managers. If The Standard and Incremental
62 // Storage Manager also want to use it, functions like <src>extend</src>
63 // needs to be added to this class. Also support for a free bucket list needs
64 // to be added.
65 // </synopsis>
66
67 // <motivation>
68 // Use of BucketCache is sub-optimal when having large buckets and more or
69 // less random IO. Memory-buffering behaves much better.
70 // </motivation>
71
72
74 {
75 public:
76 // Create the object for (part of) a file.
77 // The file part buffered into memory starts at startOffset. Its length is
78 // bucketSize*nrOfBuckets bytes.
79 // If the file is smaller, the remainder is indicated as an extension
80 // similarly to the behaviour of function extend.
81 BucketBuffered (BucketFile* file, Int64 startOffset, uInt bucketSize,
82 uInt nrOfBuckets);
83
84 virtual ~BucketBuffered();
85
86 // Get a pointer to the buffer.
87 char* getBuffer()
88 { return itsBuffer; }
89
90 // Read the given part into the internal buffer at the given offset.
91 void read (uInt bucketNr, uInt bucketOffset, uInt nbytes,
92 uInt bufferOffset=0);
93
94 // Write the given part from the internal buffer.
95 void write (uInt bucketNr, uInt bucketOffset, uInt nbytes);
96
97private:
98 // Copy constructor is not possible.
100
101 // Assignment is not possible.
103
104 // Flush the file.
105 virtual void doFlush();
106
107 // Do the actual resync-ing.
108 virtual void doResync();
109
110 // Extend the file with the given number of buckets.
111 virtual void doExtend (uInt nrBucket);
112
113 // Initialize the bucket buffer.
114 // The uninitialized buckets before this bucket are also initialized.
115 virtual void initializeBuckets (uInt bucketNr);
116
117
118 // Data buffer.
120};
121
122
123} //# NAMESPACE CASACORE - END
124
125#endif
BucketBuffered & operator=(const BucketBuffered &)
Assignment is not possible.
char * getBuffer()
Get a pointer to the buffer.
char * itsBuffer
Data buffer.
BucketBuffered(BucketFile *file, Int64 startOffset, uInt bucketSize, uInt nrOfBuckets)
Create the object for (part of) a file.
virtual void doResync()
Do the actual resync-ing.
void write(uInt bucketNr, uInt bucketOffset, uInt nbytes)
Write the given part from the internal buffer.
BucketBuffered(const BucketBuffered &)
Copy constructor is not possible.
virtual void doExtend(uInt nrBucket)
Extend the file with the given number of buckets.
void read(uInt bucketNr, uInt bucketOffset, uInt nbytes, uInt bufferOffset=0)
Read the given part into the internal buffer at the given offset.
virtual void initializeBuckets(uInt bucketNr)
Initialize the bucket buffer.
virtual void doFlush()
Flush the file.
this file contains all the compiler specific defines
Definition mainpage.dox:28
unsigned int uInt
Definition aipstype.h:49
long long Int64
Define the extra non-standard types used by Casacore (like proposed uSize, Size)
Definition aipsxtype.h:36