📄 tdatabinary.h
字号:
/*
========================================================================
DEVise Data Visualization Software
(c) Copyright 1992-1996
By the DEVise Development Group
Madison, Wisconsin
All Rights Reserved.
========================================================================
Under no circumstances is this software to be copied, distributed,
or altered in any way without prior permission from the DEVise
Development Group.
*/
/*
$Id: TDataBinary.h,v 1.15 1996/12/03 20:31:36 jussi Exp $
$Log: TDataBinary.h,v $
Revision 1.15 1996/12/03 20:31:36 jussi
Updated to reflect new TData interface.
Revision 1.14 1996/11/23 21:14:24 jussi
Removed failing support for variable-sized records.
Revision 1.13 1996/11/22 20:41:11 flisakow
Made variants of the TDataAscii classes for sequential access,
which build no indexes.
ReadRec() method now returns a status instead of void for every
class that has the method.
Revision 1.12 1996/10/04 17:24:17 wenger
Moved handling of indices from TDataAscii and TDataBinary to new
FileIndex class.
Revision 1.11 1996/08/04 21:59:54 beyer
Added UpdateLinks that allow one view to be told to update by another view.
Changed TData so that all TData's have a DataSource (for UpdateLinks).
Changed all of the subclasses of TData to conform.
A RecFile is now a DataSource.
Changed the stats buffers in ViewGraph to be DataSources.
Revision 1.10 1996/07/03 23:13:47 jussi
Added call to _data->Close() in destructor. Renamed
_fileOkay to _fileOpen which is more accurate.
Revision 1.9 1996/07/01 19:28:09 jussi
Added support for typed data sources (WWW and UNIXFILE). Renamed
'cache' references to 'index' (cache file is really an index).
Added support for asynchronous interface to data sources.
Revision 1.8 1996/06/27 18:12:42 wenger
Re-integrated most of the attribute projection code (most importantly,
all of the TData code) into the main code base (reduced the number of
modules used only in attribute projection).
Revision 1.7 1996/06/27 15:49:34 jussi
TDataAscii and TDataBinary now recognize when a file has been deleted,
shrunk, or has increased in size. The query processor is asked to
re-issue relevant queries when such events occur.
Revision 1.6 1996/06/12 14:56:35 wenger
Added GUI and some code for saving data to templates; added preliminary
graphical display of TDatas; you now have the option of closing a session
in template mode without merging the template into the main data catalog;
removed some unnecessary interdependencies among include files; updated
the dependencies for Sun, Solaris, and HP; removed never-accessed code in
ParseAPI.C.
Revision 1.5 1996/05/22 17:52:18 wenger
Extended DataSource subclasses to handle tape data; changed TDataAscii
and TDataBinary classes to use new DataSource subclasses to hide the
differences between tape and disk files.
Revision 1.4 1996/05/07 16:44:20 jussi
Cache file name now based on file alias (TData name). Added recPos
parameter to Decode() function call. Added support for a simple
index which is needed when streams are split into multiple
sub-streams (via matching values defined in the schema).
Revision 1.3 1996/05/05 03:08:29 jussi
Added support for composite attributes. Also added tape drive
support.
Revision 1.2 1996/01/25 20:22:52 jussi
Improved support for data files that grow while visualization
is being performed.
Revision 1.1 1996/01/23 20:54:50 jussi
Initial revision.
*/
/* Textual data virtual base class */
#ifndef TDataBinary_h
#define TDataBinary_h
#include <stdio.h>
#include "DeviseTypes.h"
#ifdef ATTRPROJ
# include "ApDispatcher.h"
#else
# include "Dispatcher.h"
#endif
#include "TData.h"
#include "RecId.h"
#include "DataSource.h"
#include "FileIndex.h"
class TDataBinary: public TData, private DispatcherCallback {
public:
TDataBinary(char *name, char *type, char *param,
int recSize, int physRecSize);
virtual ~TDataBinary();
/**** MetaData about TDataBinary ****/
virtual AttrList *GetAttrList(){ return NULL;}
/* Return # of dimensions and the size of each dimension,
or -1 if unknown */
virtual int Dimensions(int *sizeDimension);
// Return record size, or -1 if variable record size
virtual int RecSize() { return _recSize; }
// Return page size of TDataBinary, or -1 if no paging structure
virtual int PageSize() { return -1; }
// Return true if TDataBinary deletes records from the beginning
// due to limited disk/memory buffer.
virtual Boolean HasDeletion() { return false; }
// Return true if TDataBinary appends records
virtual Boolean HasAppend() { return true; }
// Use this to get user defined attributes.
// We reserve attributes 0-SysAttrNum for internal use.
// A -1 is returned for none-existing attrNum
virtual int UserAttr(int attrNum) { return -1; }
// Get name
virtual char *GetName() { return _name; }
/* convert RecId into index */
virtual void GetIndex(RecId id, int *&indices);
/* Get RecId of 1st available record, return true if available */
virtual Boolean HeadID(RecId &recId);
/* Get RecId of last record, return true if available */
virtual Boolean LastID(RecId &recId);
/**************************************************************
Init getting records.
***************************************************************/
virtual TDHandle InitGetRecs(RecId lowId, RecId highId,
Boolean asyncAllowed,
ReleaseMemoryCallback *callback);
/**************************************************************
Get next batch of records, as much as fits into buffer.
Return false if no more.
input:
buf: where to start putting records.
bufSize: size of buffer being supplied.
output:
startRid : starting record ID of this batch
numRecs: number of records.
dataSize: # of bytes taken up by data.
**************************************************************/
virtual Boolean GetRecs(TDHandle handle, void *buf, int bufSize,
RecId &startRid, int &numRecs, int &dataSize);
virtual void DoneGetRecs(TDHandle handle);
/* get the time file is modified. We only require that
files modified later has time > files modified earlier. */
virtual int GetModTime();
/* Do a checkpoint */
virtual void Checkpoint();
/* writing a record. For TDataBinary, the new record
is appended to the file (startRid not examined), numRecs ==1,
and buf points to a string to be written to disk. */
virtual void WriteRecs(RecId startId, int numRecs, void *buf);
/* Write a line into the file, but don't make it into a record */
void WriteLine(void *line);
protected:
/* For derived class */
/* should be called by the constructors of derived classes */
void Initialize();
/* Copy record into buffer. Return false if invalid record. */
virtual Boolean Decode(void *recordBuf, int recPos, char *line) = 0;
/* Read/Write specific to each subclass cache. The cached information
is to be read during file start up, and written when file closes,
so as to get the TData back to the state at the last
file close. Return false and the index will be rebuilt
from scratch every time. Return true and the base class
will reuse the index it has cached. */
virtual Boolean WriteIndex(int fd) { return false; }
virtual Boolean ReadIndex(int fd) { return false; }
/* This function is called by this class to ask the derived
class to invalidate all cached information */
virtual void InvalidateIndex() {}
static char *MakeIndexFileName(char *name, char *type);
private:
/* From DispatcherCallback */
char *DispatchedName() { return "TDataBinary"; }
virtual void Cleanup();
Boolean CheckFileStatus();
/* Build or rebuild index */
void BuildIndex();
void RebuildIndex();
TD_Status ReadRec(RecId id, int numRecs, void *buf);
/* Print indices */
void PrintIndices();
long _totalRecs; // total number of records
char *_file; // name of (cache) file
char *_indexFileName; // name of index file
int _physRecSize; // physical record size
FileIndex *_indexP;
long _lastPos; // position of last record in file
long _currPos; // current file position
long _lastIncompleteLen; // length of last incomplete record
char *_recBuf; // record buffer
Boolean _fileOpen; // true if file is okay
long _initTotalRecs; // initial # of records in cache
int _initLastPos; // initial last position in file
int _bytesFetched; // total # of bytes fetched
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -