You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
2.2 KiB
100 lines
2.2 KiB
/* This file is part of the KDE libraries
|
|
* Copyright (C) 2000 Waldo Bastian <bastian@kde.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License version 2 as published by the Free Software Foundation;
|
|
*
|
|
* 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public License
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
**/
|
|
|
|
#include "kctimefactory.h"
|
|
#include "tdesycoca.h"
|
|
#include "tdesycocatype.h"
|
|
|
|
#include <assert.h>
|
|
|
|
KCTimeInfo::KCTimeInfo()
|
|
: KSycocaFactory( KST_CTimeInfo ), ctimeDict(977)
|
|
{
|
|
ctimeDict.setAutoDelete(true);
|
|
if (m_str)
|
|
{
|
|
(*m_str) >> m_dictOffset;
|
|
}
|
|
else
|
|
{
|
|
m_dictOffset = 0;
|
|
}
|
|
}
|
|
|
|
KCTimeInfo::~KCTimeInfo()
|
|
{
|
|
}
|
|
|
|
void
|
|
KCTimeInfo::saveHeader(TQDataStream &str)
|
|
{
|
|
KSycocaFactory::saveHeader(str);
|
|
|
|
str << m_dictOffset;
|
|
}
|
|
|
|
void
|
|
KCTimeInfo::save(TQDataStream &str)
|
|
{
|
|
KSycocaFactory::save(str);
|
|
|
|
m_dictOffset = str.device()->at();
|
|
TQDictIterator<TQ_UINT32> it(ctimeDict);
|
|
while( it.current())
|
|
{
|
|
str << it.currentKey() << *(it.current());
|
|
++it;
|
|
}
|
|
str << TQString::null << (TQ_UINT32) 0;
|
|
|
|
int endOfFactoryData = str.device()->at();
|
|
|
|
saveHeader(str);
|
|
str.device()->at(endOfFactoryData);
|
|
}
|
|
|
|
void
|
|
KCTimeInfo::addCTime(const TQString &path, TQ_UINT32 ctime)
|
|
{
|
|
assert(!path.isEmpty());
|
|
ctimeDict.replace(path, new TQ_UINT32(ctime));
|
|
}
|
|
|
|
TQ_UINT32
|
|
KCTimeInfo::ctime(const TQString &path)
|
|
{
|
|
TQ_UINT32 *ctimeP = ctimeDict[path];
|
|
return ctimeP ? *ctimeP : 0;
|
|
}
|
|
|
|
void
|
|
KCTimeInfo::fillCTimeDict(TQDict<TQ_UINT32> &dict)
|
|
{
|
|
assert(m_str);
|
|
m_str->device()->at(m_dictOffset);
|
|
TQString path;
|
|
TQ_UINT32 ctime;
|
|
while(true)
|
|
{
|
|
KSycocaEntry::read(*m_str, path);
|
|
(*m_str) >> ctime;
|
|
if (path.isEmpty()) break;
|
|
dict.replace(path, new TQ_UINT32(ctime));
|
|
}
|
|
}
|