Initial import of the CDE 2.1.30 sources from the Open Group.

This commit is contained in:
Peter Howkins
2012-03-10 18:21:40 +00:00
commit 83b6996daa
18978 changed files with 3945623 additions and 0 deletions

View File

@@ -0,0 +1,167 @@
// $XConsortium: PathQualifier.cc /main/4 1996/06/11 17:07:46 cde-hal $
#include "PathQualifier.h"
#include "Element.h"
#include "Attribute.h"
#include "Debug.h"
PQExpr::~PQExpr()
{
// empty
}
PQAttributeSelector::~PQAttributeSelector()
{
// empty
}
PQLogExpr::~PQLogExpr()
{
delete f_left ;
delete f_right ;
}
PQNot::PQNot(PQExpr *expr)
: f_expr(expr)
{
}
PQNot::~PQNot()
{
delete f_expr;
}
PQBoolean
PQNot::evaluate(const Element &element)
{
return (f_expr->evaluate(element) == PQTrue) ? PQFalse : PQTrue ;
}
PQPosition::PQPosition(PQEqOp optype, int position)
: f_optype(optype),
f_position(position)
{
}
PQBoolean
PQPosition::evaluate(const Element &element)
{
switch ( f_optype ) {
case PQEqual:
if ( f_position == element.sibling_number() ||
( f_position==-1 && element.last_child() )
)
return PQTrue;
else
return PQFalse;
break;
default:
if ( f_position==-1 ) {
if ( element.last_child() == 0 )
return PQTrue;
else
return PQFalse;
} else
if ( f_position != element.sibling_number() )
return PQTrue;
else
return PQFalse;
break;
}
}
PQSibling::PQSibling(PQEqOp optype, int sib)
: f_optype(optype),
f_sibling(sib)
{
}
PQBoolean
PQSibling::evaluate(const Element &element)
{
switch ( f_optype ) {
case PQEqual:
if ( f_sibling == element.relative_sibling_number() ||
( f_sibling ==-1 && element.relatively_last_child() )
)
return PQTrue;
else
return PQFalse;
break;
default:
if ( f_sibling ==-1 ) {
if ( element.relatively_last_child() == 0 )
return PQTrue;
else
return PQFalse;
} else
if ( f_sibling != element.relative_sibling_number() )
return PQTrue;
else
return PQFalse;
break;
}
}
PQAttributeSelector::PQAttributeSelector(const Symbol &attrname,
PQEqOp op,
const CC_String &string)
: f_optype(op),
f_attribute(attrname),
f_string(string)
{
debug(cerr, op);
}
PQBoolean
PQAttributeSelector::evaluate(const Element &element)
{
PQBoolean return_value = PQFalse ;
// see if attribute exists first
const Attribute *attr = element.get_attribute(f_attribute);
if (attr)
{
// comparison value of 0 means strings are equal
int comparison = f_string.compareTo(attr->value());
if (((f_optype == PQEqual) && (comparison == 0)) ||
((f_optype == PQNotEqual) && (comparison != 0)))
{
return_value = PQTrue ;
}
}
else
{
// not attribute, but if operator is not equal, we should return true
if (f_optype == PQNotEqual)
return_value = PQTrue ;
}
return return_value ;
}
PQLogExpr::PQLogExpr(PQExpr *left, PQLogOp op, PQExpr *right)
: f_optype(op),
f_left(left),
f_right(right)
{
}
PQBoolean
PQLogExpr::evaluate(const Element &element)
{
PQBoolean left_value = f_left->evaluate(element);
if ((left_value == PQTrue) && (f_optype == PQor))
return PQTrue ;
if ((left_value == PQFalse) && (f_optype == PQand))
return PQFalse ;
return f_right->evaluate(element);
}