com.gargoylesoftware.htmlunit.javascript.host.css.SelectorSpecificity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-client-compiler-deps Show documentation
Show all versions of vaadin-client-compiler-deps Show documentation
Vaadin is a web application framework for Rich Internet Applications (RIA).
Vaadin enables easy development and maintenance of fast and
secure rich web
applications with a stunning look and feel and a wide browser support.
It features a server-side architecture with the majority of the logic
running
on the server. Ajax technology is used at the browser-side to ensure a
rich
and interactive user experience.
/*
* Copyright (c) 2002-2011 Gargoyle Software Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.gargoylesoftware.htmlunit.javascript.host.css;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.w3c.css.sac.AttributeCondition;
import org.w3c.css.sac.CombinatorCondition;
import org.w3c.css.sac.Condition;
import org.w3c.css.sac.ConditionalSelector;
import org.w3c.css.sac.DescendantSelector;
import org.w3c.css.sac.ElementSelector;
import org.w3c.css.sac.Selector;
import org.w3c.css.sac.SiblingSelector;
/**
* Calculates a selector's specificity.
* @see W3C CSS21
* @version $Revision: 6408 $
* @author Marc Guillemot
*/
class SelectorSpecificity implements Comparable {
private static final Log LOG = LogFactory.getLog(SelectorSpecificity.class);
/**
* The specificity for declarations made in the style attributes of an element.
*/
public static final SelectorSpecificity FROM_STYLE_ATTRIBUTE = new SelectorSpecificity(1, 0, 0, 0);
private int fieldA_;
private int fieldB_;
private int fieldC_;
private int fieldD_;
SelectorSpecificity(final Selector selector) {
readSelectorSpecificity(selector);
}
private SelectorSpecificity(final int a, final int b, final int c, final int d) {
fieldA_ = a;
fieldB_ = b;
fieldC_ = c;
fieldD_ = d;
}
void readSelectorSpecificity(final Selector selector) {
switch (selector.getSelectorType()) {
case Selector.SAC_ANY_NODE_SELECTOR:
return;
case Selector.SAC_DESCENDANT_SELECTOR:
final DescendantSelector ds = (DescendantSelector) selector;
readSelectorSpecificity(ds.getAncestorSelector());
readSelectorSpecificity(ds.getSimpleSelector());
return;
case Selector.SAC_CHILD_SELECTOR:
final DescendantSelector cs = (DescendantSelector) selector;
readSelectorSpecificity(cs.getAncestorSelector());
readSelectorSpecificity(cs.getSimpleSelector());
return;
case Selector.SAC_CONDITIONAL_SELECTOR:
final ConditionalSelector conditional = (ConditionalSelector) selector;
final Condition condition = conditional.getCondition();
readSelectorSpecificity(conditional.getSimpleSelector());
readSelectorSpecificity(condition);
return;
case Selector.SAC_ELEMENT_NODE_SELECTOR:
final ElementSelector es = (ElementSelector) selector;
final String esName = es.getLocalName();
if (esName != null) {
fieldD_++;
}
return;
case Selector.SAC_PSEUDO_ELEMENT_SELECTOR:
final ElementSelector pes = (ElementSelector) selector;
final String pesName = pes.getLocalName();
if (pesName != null) {
fieldD_++;
}
return;
case Selector.SAC_DIRECT_ADJACENT_SELECTOR:
final SiblingSelector ss = (SiblingSelector) selector;
readSelectorSpecificity(ss.getSelector());
readSelectorSpecificity(ss.getSiblingSelector());
return;
default:
LOG.warn("Unhandled CSS selector type for specificity computation: '"
+ selector.getSelectorType() + "'.");
return;
}
}
private void readSelectorSpecificity(final Condition condition) {
switch (condition.getConditionType()) {
case Condition.SAC_ID_CONDITION:
fieldB_++;
return;
case Condition.SAC_CLASS_CONDITION:
fieldC_++;
return;
case Condition.SAC_AND_CONDITION:
final CombinatorCondition cc1 = (CombinatorCondition) condition;
readSelectorSpecificity(cc1.getFirstCondition());
readSelectorSpecificity(cc1.getSecondCondition());
return;
case Condition.SAC_ATTRIBUTE_CONDITION:
final AttributeCondition ac1 = (AttributeCondition) condition;
if ("id".equalsIgnoreCase(ac1.getLocalName())) {
fieldB_++;
}
else {
fieldC_++;
}
return;
case Condition.SAC_PSEUDO_CLASS_CONDITION:
fieldD_++;
return;
default:
LOG.warn("Unhandled CSS condition type for specifity computation: '"
+ condition.getConditionType() + "'.");
return;
}
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return fieldA_ + "," + fieldB_ + "," + fieldC_ + "," + fieldD_;
}
/**
* {@inheritDoc}
*/
public int compareTo(final SelectorSpecificity other) {
if (fieldA_ != other.fieldA_) {
return fieldA_ - other.fieldA_;
}
else if (fieldB_ != other.fieldB_) {
return fieldB_ - other.fieldB_;
}
else if (fieldC_ != other.fieldC_) {
return fieldC_ - other.fieldC_;
}
else if (fieldD_ != other.fieldD_) {
return fieldD_ - other.fieldD_;
}
return 0;
}
}