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.
kvirc/src/kvirc/kvs/kvi_kvs_kernel.h

135 lines
5.8 KiB

#ifndef _KVI_KVS_KERNEL_H_
#define _KVI_KVS_KERNEL_H_
//=============================================================================
//
// File : kvi_kvs_kernel.h
// Creation date : Tue 30 Sep 2003 13.46 CEST 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.
//
//=============================================================================
#include "kvi_settings.h"
#include "kvi_kvs_parser.h"
#include "kvi_pointerlist.h"
#include "kvi_qstring.h"
#include "kvi_pointerhashtable.h"
class KviKvsTreeNodeSpecialCommand;
class KviKvsObjectController;
class KviKvsAsyncOperationManager;
class KviKvsRunTimeContext;
class KviKvsVariantList;
class KviKvsSwitchList;
class KviKvsVariant;
class KviKvsScript;
class KviKvsHash;
typedef KviKvsTreeNodeCommand * (KviKvsParser::*specialCommandParsingRoutine)();
typedef struct _KviKvsSpecialCommandParsingRoutine
{
specialCommandParsingRoutine proc;
} KviKvsSpecialCommandParsingRoutine;
typedef bool (*coreSimpleCommandExecRoutine)(KviKvsRunTimeContext * c,KviKvsVariantList * pParams,KviKvsSwitchList * pSwitches);
typedef struct _KviKvsCoreSimpleCommandExecRoutine
{
coreSimpleCommandExecRoutine proc;
} KviKvsCoreSimpleCommandExecRoutine;
typedef bool (*coreFunctionExecRoutine)(KviKvsRunTimeContext * c,KviKvsVariantList * pParams,KviKvsVariant * pRetBuffer);
typedef struct _KviKvsCoreFunctionExecRoutine
{
coreFunctionExecRoutine proc;
} KviKvsCoreFunctionExecRoutine;
typedef bool (*coreCallbackCommandExecRoutine)(KviKvsRunTimeContext * c,KviKvsVariantList * pParams,KviKvsSwitchList * pSwitches,const KviKvsScript * pCallback);
typedef struct _KviKvsCoreCallbackCommandExecRoutine
{
coreCallbackCommandExecRoutine proc;
} KviKvsCoreCallbackCommandExecRoutine;
class KVIRC_API KviKvsKernel
{
public:
KviKvsKernel();
~KviKvsKernel();
private:
static KviKvsKernel * m_pKvsKernel; // global kernel object
KviPointerHashTable<TQString,KviKvsSpecialCommandParsingRoutine> * m_pSpecialCommandParsingRoutineDict;
KviPointerHashTable<TQString,KviKvsCoreSimpleCommandExecRoutine> * m_pCoreSimpleCommandExecRoutineDict;
KviPointerHashTable<TQString,KviKvsCoreCallbackCommandExecRoutine> * m_pCoreCallbackCommandExecRoutineDict;
KviPointerHashTable<TQString,KviKvsCoreFunctionExecRoutine> * m_pCoreFunctionExecRoutineDict;
KviKvsHash * m_pGlobalVariables;
KviKvsVariantList * m_pEmptyParameterList;
KviKvsObjectController * m_pObjectController;
KviKvsAsyncOperationManager * m_pAsyncOperationManager;
public:
static void init();
static void done();
static KviKvsKernel * instance(){ return m_pKvsKernel; };
KviKvsVariantList * emptyParameterList(){ return m_pEmptyParameterList; };
KviKvsHash * globalVariables(){ return m_pGlobalVariables; };
KviKvsObjectController * objectController(){ return m_pObjectController; };
KviKvsAsyncOperationManager * asyncOperationManager(){ return m_pAsyncOperationManager; };
void registerSpecialCommandParsingRoutine(const TQString &szCmdName,KviKvsSpecialCommandParsingRoutine * r)
{ m_pSpecialCommandParsingRoutineDict->replace(szCmdName,r); };
KviKvsSpecialCommandParsingRoutine * findSpecialCommandParsingRoutine(const TQString &szCmdName)
{ return m_pSpecialCommandParsingRoutineDict->find(szCmdName); };
void registerCoreSimpleCommandExecRoutine(const TQString &szCmdName,KviKvsCoreSimpleCommandExecRoutine * r)
{ m_pCoreSimpleCommandExecRoutineDict->replace(szCmdName,r); };
KviKvsCoreSimpleCommandExecRoutine * findCoreSimpleCommandExecRoutine(const TQString &szCmdName)
{ return m_pCoreSimpleCommandExecRoutineDict->find(szCmdName); };
void registerCoreFunctionExecRoutine(const TQString &szFncName,KviKvsCoreFunctionExecRoutine * r)
{ m_pCoreFunctionExecRoutineDict->replace(szFncName,r); };
KviKvsCoreFunctionExecRoutine * findCoreFunctionExecRoutine(const TQString &szFncName)
{ return m_pCoreFunctionExecRoutineDict->find(szFncName); };
void registerCoreCallbackCommandExecRoutine(const TQString &szCmdName,KviKvsCoreCallbackCommandExecRoutine * r)
{ m_pCoreCallbackCommandExecRoutineDict->replace(szCmdName,r); };
KviKvsCoreCallbackCommandExecRoutine * findCoreCallbackCommandExecRoutine(const TQString &szCmdName)
{ return m_pCoreCallbackCommandExecRoutineDict->find(szCmdName); };
void completeCommand(const TQString &szCommandBegin,KviPointerList<TQString> * pMatches);
void completeFunction(const TQString &szFunctionBegin,KviPointerList<TQString> * pMatches);
void completeModuleCommand(const TQString &szModuleName,const TQString &szCommandBegin,KviPointerList<TQString> * matches);
void completeModuleFunction(const TQString &szModuleName,const TQString &szFunctionBegin,KviPointerList<TQString> * matches);
/*
KviPointerList<TQString> * completeCommandAllocateResult(const TQString &szCommandBegin);
KviPointerList<TQString> * completeFunctionAllocateResult(const TQString &szFunctionBegin);
void freeCompletionResult(KviPointerList<TQString> * l);
*/
};
#endif //!_KVI_KVS_KERNEL_H_