mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 10:22:48 +00:00
351 lines
7.2 KiB
C++
351 lines
7.2 KiB
C++
/* This file is part of the KDE project
|
|
Copyright (C) 1998, 1999 Torben Weis <weis@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 as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
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.
|
|
*/
|
|
|
|
#ifndef __ktrader_parse_tree_h__
|
|
#define __ktrader_parse_tree_h__
|
|
|
|
#include <kservice.h>
|
|
|
|
namespace KTraderParse {
|
|
|
|
class ParseTreeBase;
|
|
|
|
/**
|
|
* @internal
|
|
* @return 0 => Does not match
|
|
* 1 => Does match
|
|
* <0 => Error
|
|
*/
|
|
int matchConstraint( const ParseTreeBase *_tree, const KService::Ptr &,
|
|
const KService::List& );
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
struct KDECORE_EXPORT PreferencesMaxima
|
|
{
|
|
PreferencesMaxima()
|
|
: iMax( 0 ), iMin( 0 ), fMax( 0 ), fMin( 0 )
|
|
{
|
|
}
|
|
|
|
enum Type { PM_ERROR, PM_INVALID_INT, PM_INVALID_DOUBLE, PM_DOUBLE, PM_INT };
|
|
|
|
Type type;
|
|
int iMax;
|
|
int iMin;
|
|
double fMax;
|
|
double fMin;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseContext
|
|
{
|
|
public:
|
|
/**
|
|
* This is NOT a copy constructor.
|
|
*/
|
|
explicit ParseContext( const ParseContext* _ctx ) : service( _ctx->service ), maxima( _ctx->maxima ),
|
|
offers( _ctx->offers ) {}
|
|
ParseContext( const KService::Ptr & _service, const KService::List& _offers,
|
|
QMap<QString,PreferencesMaxima>& _m )
|
|
: service( _service ), maxima( _m ), offers( _offers ) {}
|
|
|
|
bool initMaxima( const QString& _prop);
|
|
|
|
enum Type { T_STRING = 1, T_DOUBLE = 2, T_NUM = 3, T_BOOL = 4,
|
|
T_STR_SEQ = 5, T_SEQ = 6 };
|
|
|
|
QString str;
|
|
int i;
|
|
double f;
|
|
bool b;
|
|
QList<QVariant> seq;
|
|
QStringList strSeq;
|
|
Type type;
|
|
|
|
KService::Ptr service;
|
|
|
|
QMap<QString,PreferencesMaxima>& maxima;
|
|
const KService::List& offers;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeBase : public QSharedData
|
|
{
|
|
public:
|
|
typedef KSharedPtr<ParseTreeBase> Ptr;
|
|
ParseTreeBase() { }
|
|
virtual ~ParseTreeBase() { }
|
|
|
|
virtual bool eval( ParseContext *_context ) const = 0;
|
|
};
|
|
|
|
ParseTreeBase::Ptr parseConstraints( const QString& _constr );
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeOR : public ParseTreeBase
|
|
{
|
|
public:
|
|
ParseTreeOR( ParseTreeBase *_ptr1, ParseTreeBase *_ptr2 ) { m_pLeft = _ptr1; m_pRight = _ptr2; }
|
|
|
|
bool eval( ParseContext *_context ) const;
|
|
|
|
protected:
|
|
ParseTreeBase::Ptr m_pLeft;
|
|
ParseTreeBase::Ptr m_pRight;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeAND : public ParseTreeBase
|
|
{
|
|
public:
|
|
ParseTreeAND( ParseTreeBase *_ptr1, ParseTreeBase *_ptr2 ) { m_pLeft = _ptr1; m_pRight = _ptr2; }
|
|
|
|
bool eval( ParseContext *_context ) const;
|
|
|
|
protected:
|
|
ParseTreeBase::Ptr m_pLeft;
|
|
ParseTreeBase::Ptr m_pRight;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeCMP : public ParseTreeBase
|
|
{
|
|
public:
|
|
ParseTreeCMP( ParseTreeBase *_ptr1, ParseTreeBase *_ptr2, int _i ) { m_pLeft = _ptr1; m_pRight = _ptr2; m_cmd = _i; }
|
|
|
|
bool eval( ParseContext *_context ) const;
|
|
|
|
protected:
|
|
ParseTreeBase::Ptr m_pLeft;
|
|
ParseTreeBase::Ptr m_pRight;
|
|
int m_cmd;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeIN : public ParseTreeBase
|
|
{
|
|
public:
|
|
ParseTreeIN(ParseTreeBase *ptr1, ParseTreeBase *ptr2, Qt::CaseSensitivity cs, bool substring = false)
|
|
: m_pLeft(ptr1),
|
|
m_pRight(ptr2),
|
|
m_cs(cs),
|
|
m_substring(substring)
|
|
{
|
|
}
|
|
|
|
bool eval( ParseContext *_context ) const;
|
|
|
|
protected:
|
|
ParseTreeBase::Ptr m_pLeft;
|
|
ParseTreeBase::Ptr m_pRight;
|
|
Qt::CaseSensitivity m_cs;
|
|
bool m_substring;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeMATCH : public ParseTreeBase
|
|
{
|
|
public:
|
|
ParseTreeMATCH( ParseTreeBase *_ptr1, ParseTreeBase *_ptr2, Qt::CaseSensitivity cs ) { m_pLeft = _ptr1; m_pRight = _ptr2; m_cs = cs; }
|
|
|
|
bool eval( ParseContext *_context ) const;
|
|
|
|
protected:
|
|
ParseTreeBase::Ptr m_pLeft;
|
|
ParseTreeBase::Ptr m_pRight;
|
|
Qt::CaseSensitivity m_cs;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeCALC : public ParseTreeBase
|
|
{
|
|
public:
|
|
ParseTreeCALC( ParseTreeBase *_ptr1, ParseTreeBase *_ptr2, int _i ) { m_pLeft = _ptr1; m_pRight = _ptr2; m_cmd = _i; }
|
|
|
|
bool eval( ParseContext *_context ) const;
|
|
|
|
protected:
|
|
ParseTreeBase::Ptr m_pLeft;
|
|
ParseTreeBase::Ptr m_pRight;
|
|
int m_cmd;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeBRACKETS : public ParseTreeBase
|
|
{
|
|
public:
|
|
explicit ParseTreeBRACKETS( ParseTreeBase *_ptr ) { m_pLeft = _ptr; }
|
|
|
|
bool eval( ParseContext *_context ) const { return m_pLeft->eval( _context ); }
|
|
|
|
protected:
|
|
ParseTreeBase::Ptr m_pLeft;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeNOT : public ParseTreeBase
|
|
{
|
|
public:
|
|
explicit ParseTreeNOT( ParseTreeBase *_ptr ) { m_pLeft = _ptr; }
|
|
|
|
bool eval( ParseContext *_context ) const;
|
|
|
|
protected:
|
|
ParseTreeBase::Ptr m_pLeft;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeEXIST : public ParseTreeBase
|
|
{
|
|
public:
|
|
explicit ParseTreeEXIST( const char *_id ) { m_id = QString::fromUtf8(_id); }
|
|
|
|
bool eval( ParseContext *_context ) const;
|
|
|
|
protected:
|
|
QString m_id;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeID : public ParseTreeBase
|
|
{
|
|
public:
|
|
explicit ParseTreeID( const char *arg ) { m_str = QString::fromUtf8(arg); }
|
|
|
|
bool eval( ParseContext *_context ) const;
|
|
|
|
protected:
|
|
QString m_str;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeSTRING : public ParseTreeBase
|
|
{
|
|
public:
|
|
explicit ParseTreeSTRING( const char *arg ) { m_str = QString::fromUtf8(arg); }
|
|
|
|
bool eval( ParseContext *_context ) const { _context->type = ParseContext::T_STRING;
|
|
_context->str = m_str;
|
|
return true; }
|
|
|
|
protected:
|
|
QString m_str;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeNUM : public ParseTreeBase
|
|
{
|
|
public:
|
|
explicit ParseTreeNUM( int arg ) { m_int = arg; }
|
|
|
|
bool eval( ParseContext *_context ) const { _context->type = ParseContext::T_NUM; _context->i = m_int; return true; }
|
|
|
|
protected:
|
|
int m_int;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeDOUBLE : public ParseTreeBase
|
|
{
|
|
public:
|
|
explicit ParseTreeDOUBLE( double arg ) { m_double = arg; }
|
|
|
|
bool eval( ParseContext *_context ) const { _context->type = ParseContext::T_DOUBLE; _context->f = m_double; return true; }
|
|
|
|
protected:
|
|
double m_double;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeBOOL : public ParseTreeBase
|
|
{
|
|
public:
|
|
explicit ParseTreeBOOL( bool arg ) { m_bool = arg; }
|
|
|
|
bool eval( ParseContext *_context ) const { _context->type = ParseContext::T_BOOL; _context->b = m_bool; return true; }
|
|
|
|
protected:
|
|
bool m_bool;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeMAX2 : public ParseTreeBase
|
|
{
|
|
public:
|
|
explicit ParseTreeMAX2( const char *_id ) { m_strId = QString::fromUtf8(_id); }
|
|
|
|
bool eval( ParseContext *_context ) const;
|
|
|
|
protected:
|
|
QString m_strId;
|
|
};
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ParseTreeMIN2 : public ParseTreeBase
|
|
{
|
|
public:
|
|
explicit ParseTreeMIN2( const char *_id ) { m_strId = QString::fromUtf8(_id); }
|
|
|
|
bool eval( ParseContext *_context ) const;
|
|
|
|
protected:
|
|
QString m_strId;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|