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
119
120
121
|
//=============================================================================
//
// File : kvi_kvs_aliasmanager.cpp
// Created on Mon 15 Dec 2003 02:11:41 by Szymon Stefanek
//
// This file is part of the KVIrc IRC client distribution
// Copyright (C) 2003 Szymon Stefanek <pragma at kvirc dot net>
//
// This program is FREE software. You can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your opinion) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, write to the Free Software Foundation,
// Inc. ,51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
//=============================================================================
#define __KVIRC__
#include "kvi_kvs_aliasmanager.h"
#include "kvi_config.h"
KviKvsAliasManager * KviKvsAliasManager::m_pAliasManager = 0;
KviKvsAliasManager::KviKvsAliasManager()
{
m_pAliasManager = this;
m_pAliasDict = new KviPointerHashTable<TQString,KviKvsScript>(51,false);
m_pAliasDict->setAutoDelete(true);
}
KviKvsAliasManager::~KviKvsAliasManager()
{
delete m_pAliasDict;
}
void KviKvsAliasManager::init()
{
if(KviKvsAliasManager::instance())
{
tqDebug("WARNING: Trying to create the KviKvsAliasManager twice!");
return;
}
(void)new KviKvsAliasManager();
}
void KviKvsAliasManager::done()
{
if(!KviKvsAliasManager::instance())
{
tqDebug("WARNING: Trying to destroy the KviKvsAliasManager twice!");
return;
}
delete KviKvsAliasManager::instance();
}
void KviKvsAliasManager::completeCommand(const TQString &word,KviPointerList<TQString> * matches)
{
KviPointerHashTableIterator<TQString,KviKvsScript> it(*m_pAliasDict);
while(it.current())
{
if(KviTQString::equalCIN(word,it.current()->name(),word.length()))
matches->append(new TQString(it.current()->name()));
++it;
}
}
// FIXME: #warning "A binary config would work better and faster here!"
void KviKvsAliasManager::save(const TQString & filename)
{
KviConfig cfg(filename,KviConfig::Write);
cfg.clear();
KviPointerHashTableIterator<TQString,KviKvsScript> it(*m_pAliasDict);
while(it.current())
{
cfg.setGroup(it.current()->name());
cfg.writeEntry("_Buffer",it.current()->code());
++it;
}
}
void KviKvsAliasManager::load(const TQString & filename)
{
m_pAliasDict->clear();
KviConfig cfg(filename,KviConfig::Read);
KviConfigIterator it(*(cfg.dict()));
KviPointerList<TQString> l;
l.setAutoDelete(true);
while(it.current())
{
l.append(new TQString(it.currentKey()));
++it;
}
for(TQString * s = l.first();s;s = l.next())
{
cfg.setGroup(*s);
TQString szCode = cfg.readTQStringEntry("_Buffer","");
if(!szCode.isEmpty())
{
KviKvsScript * m = new KviKvsScript(*s,szCode);
m_pAliasDict->insert(*s,m);
}
++it;
}
}
|