Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[core] Inconsistent boolean value representation with Jaxen #1244

Closed
oowekyala opened this issue Jul 17, 2018 · 1 comment
Closed

[core] Inconsistent boolean value representation with Jaxen #1244

oowekyala opened this issue Jul 17, 2018 · 1 comment
Labels
a:bug PMD crashes or fails to analyse a file. in:xpath Relating to xpath support at large, eg Jaxen / Saxon, custom functions, attribute resolution was:wontfix

Comments

@oowekyala
Copy link
Member

oowekyala commented Jul 17, 2018

The problem

Our Jaxen adapter treats boolean attribute values as strings, ie an attribute with the Java value true will have the XPath string value 'true', and same for false.

The problem with that is that it's inconsistent with the XPath spec. In XPath, strings are truthy if they are non-empty. That means the string 'false' is in fact truthy. Moreover, the only way to obtain boolean values in both XPath 1.0 and 2.0 is through the functions true() and false().

So for example, given:

class Foo {} // the @Interface attribute is of course false 

and the XPath query (<val> is a placeholder):

//ClassOrInterfaceDeclaration[@Interface=<val>]

We have the following evaluation results, depending on the value of <val> and the XPath engine used.

  • n means no match
  • y means a match
  • Bold table cells mean inconsistent behaviour
<val>: 'true' 'false' true() false()
Jaxen n y y n
Saxon type error type error n y

Saxon's behaviour is expected, it even has a type error when we try to compare the boolean with a string (at least in the designer).

Jaxen, on the other hand, is confused when using the boolean XPath functions:

  • 'false' is truthy so @Interface=true() is true, because @Interface is 'false'
  • For the same reason, @Interface=false() is false

This is the inverse of what we'd expect.

So what?

Due to that inconsistency, all XPath 1.0 rules (so nearly all our XPath rules, and probably the majority of user rules as well) compare boolean attributes with string values.

The problem is that it's incompatibile with the correct behaviour of Saxon

Because of that, Jaxen rules cannot be transparently ported to Saxon without transforming at least these comparisons to use the boolean value functions. If they aren't transformed, we get type errors/ unseen failures, e.g. #902

Possible solution

If we want to drop Jaxen, we'd probably need to transform the faulty comparisons before feeding the expression to Saxon. #1243 could be a way to do that

Source

The faulty source is here:

public String getStringValue() {
if (stringValue != null) {
return stringValue;
}
Object v = this.value;
if (this.value == null) {
v = getValue();
}
stringValue = v == null ? "" : String.valueOf(v);
return stringValue;
}

Instead of returning just String.valueOf, this function should be returning a falsy (empty) string for false values, instead of 'false'.

The same happens for properties:

final Object value = e.getValue();
vc.setVariableValue(propName, value != null ? value.toString() : null);

@oowekyala oowekyala added a:bug PMD crashes or fails to analyse a file. in:xpath Relating to xpath support at large, eg Jaxen / Saxon, custom functions, attribute resolution labels Jul 17, 2018
@oowekyala oowekyala changed the title [core] Inconsistent boolean value treatment with Jaxen [core] Inconsistent boolean value representation with Jaxen Jul 17, 2018
@oowekyala
Copy link
Member Author

oowekyala commented Oct 26, 2020

I think this may be closed as "won't fix". The migration doc and #1687 point to this issue, for future reference. But the incompatibility cannot be fixed on master.

❌ Won't fix, because we remove Jaxen. The problem is described on
https://pmd.github.io/latest/pmd_userdocs_extending_writing_xpath_rules.html#migrating-from-10-to-20

@adangel adangel closed this as not planned Won't fix, can't repro, duplicate, stale Jan 11, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a:bug PMD crashes or fails to analyse a file. in:xpath Relating to xpath support at large, eg Jaxen / Saxon, custom functions, attribute resolution was:wontfix
Projects
None yet
Development

No branches or pull requests

2 participants