2008-01-14 01:01:11 +01:00
|
|
|
/*
|
|
|
|
|
QUERY.hpp - interface for capability queries
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-03-10 08:38:59 +01:00
|
|
|
Copyright (C) Lumiera.org
|
|
|
|
|
2008, Hermann Vosseler <Ichthyostega@web.de>
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-01-14 01:01:11 +01:00
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU General Public License as
|
2010-12-17 23:28:49 +01:00
|
|
|
published by the Free Software Foundation; either version 2 of
|
|
|
|
|
the License, or (at your option) any later version.
|
|
|
|
|
|
2008-01-14 01:01:11 +01:00
|
|
|
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.
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-01-14 01:01:11 +01:00
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-01-14 01:01:11 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2008-03-10 08:38:59 +01:00
|
|
|
#ifndef LUMIERA_QUERY_H
|
|
|
|
|
#define LUMIERA_QUERY_H
|
2008-01-14 01:01:11 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <string>
|
2012-11-25 02:29:52 +01:00
|
|
|
#include <cctype>
|
2008-02-10 17:23:16 +01:00
|
|
|
#include <typeinfo>
|
2008-01-14 01:01:11 +01:00
|
|
|
|
2009-09-24 23:02:40 +02:00
|
|
|
#include "lib/symbol.hpp"
|
2008-11-30 06:46:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace lumiera {
|
2009-09-24 23:02:40 +02:00
|
|
|
|
|
|
|
|
using lib::Symbol;
|
|
|
|
|
using lib::Literal;
|
2008-01-14 01:01:11 +01:00
|
|
|
using std::string;
|
2010-04-04 06:38:22 +02:00
|
|
|
|
2008-11-30 06:46:32 +01:00
|
|
|
/* ==== common definitions for rule based queries ==== */
|
2008-01-14 01:01:11 +01:00
|
|
|
|
2010-04-04 06:38:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-11-27 03:59:07 +01:00
|
|
|
* Generic query interface for retrieving objects
|
|
|
|
|
* matching the given capability query
|
|
|
|
|
* @note until really integrating a rules based system
|
|
|
|
|
* this is a dummy placeholder implementation
|
|
|
|
|
* based on a dressed-up std::string
|
|
|
|
|
* @warning in this preliminary implementation, the
|
|
|
|
|
* given query-string is used as-is, without any
|
|
|
|
|
* normalisation. Moreover, as espeically the
|
|
|
|
|
* fake-configrules match by string comparision,
|
|
|
|
|
* this may led to unexpected mis-matches.
|
|
|
|
|
* @todo the »real thing« should be based on a
|
|
|
|
|
* normalised syntax tree representation
|
|
|
|
|
* of the atoms in the query.
|
2008-01-14 01:01:11 +01:00
|
|
|
*/
|
2008-02-10 17:23:16 +01:00
|
|
|
template<class OBJ>
|
2012-11-25 02:04:19 +01:00
|
|
|
class Query
|
2008-01-14 01:01:11 +01:00
|
|
|
{
|
2012-11-25 02:04:19 +01:00
|
|
|
std::string predicateForm_;
|
|
|
|
|
|
2008-01-14 01:01:11 +01:00
|
|
|
public:
|
2012-11-25 02:04:19 +01:00
|
|
|
explicit Query (string const& predicate="")
|
|
|
|
|
: predicateForm_(predicate)
|
|
|
|
|
{ }
|
2008-02-18 04:16:53 +01:00
|
|
|
|
2012-11-25 02:04:19 +01:00
|
|
|
|
|
|
|
|
void
|
|
|
|
|
clear()
|
2008-02-10 17:23:16 +01:00
|
|
|
{
|
2012-11-25 02:04:19 +01:00
|
|
|
predicateForm_.clear();
|
2008-02-10 17:23:16 +01:00
|
|
|
}
|
2008-04-07 03:19:24 +02:00
|
|
|
|
2012-11-25 02:04:19 +01:00
|
|
|
operator string() const { return predicateForm_; }
|
|
|
|
|
|
|
|
|
|
// operator string& () { return predicateForm_; } //TICKET #710 : needed temporarily by fake-configrules
|
|
|
|
|
}; // for calling removeTerm on the string-ref....
|
2010-04-04 06:38:22 +02:00
|
|
|
|
|
|
|
|
|
2009-09-24 23:02:40 +02:00
|
|
|
namespace query {
|
2008-01-14 01:01:11 +01:00
|
|
|
|
|
|
|
|
/** ensure standard format for a given id string.
|
2009-07-19 05:47:36 +02:00
|
|
|
* Trim, sanitise and ensure the first letter is lower case.
|
2008-01-14 01:01:11 +01:00
|
|
|
* @note modifies the given string ref in place
|
|
|
|
|
*/
|
2009-07-13 01:16:40 +02:00
|
|
|
void normaliseID (string& id);
|
2008-01-14 01:01:11 +01:00
|
|
|
|
2010-04-04 06:38:22 +02:00
|
|
|
|
2008-03-31 03:21:28 +02:00
|
|
|
/** count the top-level predicates in the query string.
|
|
|
|
|
* usable for ordering queries, as more predicates usually
|
|
|
|
|
* mean more conditions, i.e. more constriction
|
|
|
|
|
*/
|
2010-04-13 06:37:21 +02:00
|
|
|
uint countPred (const string&);
|
2008-02-18 04:16:53 +01:00
|
|
|
|
2008-04-06 08:56:18 +02:00
|
|
|
|
|
|
|
|
const string extractID (Symbol, const string& termString);
|
|
|
|
|
|
|
|
|
|
const string removeTerm (Symbol, string& termString);
|
2010-04-04 06:38:22 +02:00
|
|
|
|
2008-04-06 08:56:18 +02:00
|
|
|
|
2010-04-14 07:02:40 +02:00
|
|
|
template<typename TY>
|
|
|
|
|
const string
|
|
|
|
|
buildTypeID()
|
|
|
|
|
{
|
|
|
|
|
string typeID (typeid(TY).name());
|
|
|
|
|
normaliseID (typeID);
|
|
|
|
|
return typeID;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-09-24 23:02:40 +02:00
|
|
|
}} // namespace lumiera::query
|
2008-01-14 01:01:11 +01:00
|
|
|
#endif
|