14e6e92642
X-SVN-Rev: 220
195 lines
5.7 KiB
C++
195 lines
5.7 KiB
C++
/*
|
|
*******************************************************************************
|
|
* Copyright (C) 1997-1999, International Business Machines Corporation and *
|
|
* others. All Rights Reserved. *
|
|
*******************************************************************************
|
|
*/
|
|
//===============================================================================
|
|
//
|
|
// File tcoldata.cpp
|
|
//
|
|
// Internal file. Implements TableCollationData, an internal class which is shared
|
|
// by TableCollation objects, and which contains all the invariant (and large)
|
|
// pieces of data. Once created, TableCollationData objects do not change.
|
|
//
|
|
// Created by: Alan Liu
|
|
//
|
|
// Modification History:
|
|
//
|
|
// Date Name Description
|
|
// 2/5/97 aliu Creation.
|
|
// 3/5/97 aliu Don't stream rule table in or out.
|
|
//===============================================================================
|
|
|
|
#include "ucmp32.h"
|
|
#include "tcoldata.h"
|
|
#include "tables.h"
|
|
#include "mutex.h"
|
|
#include "tblcoll.h"
|
|
|
|
//===============================================================================
|
|
|
|
CollationCache TableCollationData::fgCache;
|
|
|
|
//===============================================================================
|
|
|
|
TableCollationData::TableCollationData()
|
|
: isFrenchSec(FALSE),
|
|
maxSecOrder(0),
|
|
maxTerOrder(0),
|
|
isRuleTableLoaded(FALSE),
|
|
fBogus(FALSE)
|
|
{
|
|
mapping = 0;
|
|
contractTable = 0;
|
|
expandTable = 0;
|
|
}
|
|
|
|
TableCollationData::~TableCollationData()
|
|
{
|
|
ucmp32_close(mapping);
|
|
delete contractTable;
|
|
delete expandTable;
|
|
}
|
|
|
|
bool_t
|
|
TableCollationData::isBogus() const
|
|
{
|
|
return fBogus;
|
|
}
|
|
|
|
void TableCollationData::streamIn(FileStream* is)
|
|
{
|
|
if (!T_FileStream_error(is))
|
|
{
|
|
// Stream in large objects
|
|
char isNull;
|
|
T_FileStream_read(is, &isNull, sizeof(isNull));
|
|
if (isNull)
|
|
{
|
|
ucmp32_close(mapping);
|
|
mapping = 0;
|
|
}
|
|
else
|
|
{
|
|
// Slight ugliness: We are a friend of TableCollation solely so
|
|
// we can access the constant UNMAPPED here. In fact, this code
|
|
// path shouldn't really happen, because mapping should always != 0.
|
|
if (mapping == 0) mapping = ucmp32_open(RuleBasedCollator::UNMAPPED);
|
|
if (mapping->fBogus ){
|
|
fBogus = TRUE;
|
|
return;
|
|
}
|
|
ucmp32_streamIn(mapping, is);
|
|
if (mapping->fBogus) {
|
|
fBogus = TRUE;
|
|
ucmp32_close(mapping);
|
|
mapping = 0;
|
|
return;
|
|
}
|
|
}
|
|
|
|
T_FileStream_read(is, &isNull, sizeof(isNull));
|
|
if (isNull)
|
|
{
|
|
delete contractTable;
|
|
contractTable = 0;
|
|
}
|
|
else
|
|
{
|
|
if (contractTable == 0) contractTable = new VectorOfPToContractTable;
|
|
if (contractTable->isBogus()) {
|
|
fBogus = TRUE;
|
|
return;
|
|
}
|
|
contractTable->streamIn(is);
|
|
if (contractTable->isBogus()) {
|
|
fBogus = TRUE;
|
|
ucmp32_close(mapping);
|
|
mapping = 0;
|
|
delete contractTable;
|
|
contractTable = 0;
|
|
return;
|
|
}
|
|
}
|
|
|
|
T_FileStream_read(is, &isNull, sizeof(isNull));
|
|
if (isNull)
|
|
{
|
|
delete expandTable;
|
|
expandTable = 0;
|
|
}
|
|
else
|
|
{
|
|
if (expandTable == 0) expandTable = new VectorOfPToExpandTable;
|
|
if (expandTable->isBogus()) {
|
|
fBogus = TRUE;
|
|
return;
|
|
}
|
|
expandTable->streamIn(is);
|
|
if (expandTable->isBogus()) {
|
|
fBogus = TRUE;
|
|
ucmp32_close(mapping);
|
|
mapping = 0;
|
|
delete contractTable;
|
|
contractTable = 0;
|
|
delete expandTable;
|
|
expandTable = 0;
|
|
return;
|
|
}
|
|
}
|
|
|
|
// We don't stream in or out the rule table, in order to keep
|
|
// binary files small. We reconstruct rules on the fly.
|
|
ruleTable.remove();
|
|
isRuleTableLoaded = FALSE;
|
|
|
|
// Stream in the small objects
|
|
T_FileStream_read(is, &isFrenchSec, sizeof(isFrenchSec));
|
|
T_FileStream_read(is, &maxSecOrder, sizeof(maxSecOrder));
|
|
T_FileStream_read(is, &maxTerOrder, sizeof(maxTerOrder));
|
|
}
|
|
}
|
|
|
|
void TableCollationData::streamOut(FileStream* os) const
|
|
{
|
|
if (!T_FileStream_error(os))
|
|
{
|
|
// Stream out the large objects
|
|
char isNull;
|
|
isNull = (mapping == 0);
|
|
T_FileStream_write(os, &isNull, sizeof(isNull));
|
|
if (!isNull) ucmp32_streamOut(mapping, os);
|
|
|
|
isNull = (contractTable == 0);
|
|
T_FileStream_write(os, &isNull, sizeof(isNull));
|
|
if (!isNull) contractTable->streamOut(os);
|
|
|
|
isNull = (expandTable == 0);
|
|
T_FileStream_write(os, &isNull, sizeof(isNull));
|
|
if (!isNull) expandTable->streamOut(os);
|
|
|
|
// We don't stream out the rule table, in order to keep
|
|
// binary files small. We reconstruct rules on the fly.
|
|
|
|
// Stream out the small objects
|
|
T_FileStream_write(os, &isFrenchSec, sizeof(isFrenchSec));
|
|
T_FileStream_write(os, &maxSecOrder, sizeof(maxSecOrder));
|
|
T_FileStream_write(os, &maxTerOrder, sizeof(maxTerOrder));
|
|
}
|
|
}
|
|
|
|
void TableCollationData::addToCache(const UnicodeString& key, TableCollationData* collation)
|
|
{
|
|
Mutex lock;
|
|
fgCache.Add(key, collation);
|
|
}
|
|
|
|
TableCollationData* TableCollationData::findInCache(const UnicodeString& key)
|
|
{
|
|
Mutex lock;
|
|
return fgCache.Find(key);
|
|
}
|
|
|
|
//eof
|