Search in sources :

Example 1 with ReturnsMutableCopy

use of com.helger.commons.annotation.ReturnsMutableCopy in project ph-css by phax.

the class CSSShortHandDescriptor method getSplitIntoPieces.

@Nonnull
@ReturnsMutableCopy
public ICommonsList<CSSDeclaration> getSplitIntoPieces(@Nonnull final CSSDeclaration aDeclaration) {
    ValueEnforcer.notNull(aDeclaration, "Declaration");
    // Check that declaration matches this property
    if (!aDeclaration.hasProperty(m_eProperty))
        throw new IllegalArgumentException("Cannot split a '" + aDeclaration.getProperty() + "' as a '" + m_eProperty.getName() + "'");
    // global
    final int nSubProperties = m_aSubProperties.size();
    final ICommonsList<CSSDeclaration> ret = new CommonsArrayList<>();
    final ICommonsList<ICSSExpressionMember> aExpressionMembers = aDeclaration.getExpression().getAllMembers();
    // Modification for margin and padding
    modifyExpressionMembers(aExpressionMembers);
    final int nExpressionMembers = aExpressionMembers.size();
    final CSSWriterSettings aCWS = new CSSWriterSettings(ECSSVersion.CSS30, false);
    final boolean[] aHandledSubProperties = new boolean[nSubProperties];
    // For all expression members
    for (int nExprMemberIndex = 0; nExprMemberIndex < nExpressionMembers; ++nExprMemberIndex) {
        final ICSSExpressionMember aMember = aExpressionMembers.get(nExprMemberIndex);
        // For all unhandled sub-properties
        for (int nSubPropIndex = 0; nSubPropIndex < nSubProperties; ++nSubPropIndex) if (!aHandledSubProperties[nSubPropIndex]) {
            final CSSPropertyWithDefaultValue aSubProp = m_aSubProperties.get(nSubPropIndex);
            final ICSSProperty aProperty = aSubProp.getProperty();
            final int nMinArgs = aProperty.getMinimumArgumentCount();
            // Always use minimum number of arguments
            if (nExprMemberIndex + nMinArgs - 1 < nExpressionMembers) {
                // Build sum of all members
                final StringBuilder aSB = new StringBuilder();
                for (int k = 0; k < nMinArgs; ++k) {
                    final String sValue = aMember.getAsCSSString(aCWS);
                    if (aSB.length() > 0)
                        aSB.append(' ');
                    aSB.append(sValue);
                }
                if (aProperty.isValidValue(aSB.toString())) {
                    // We found a match
                    final CSSExpression aExpr = new CSSExpression();
                    for (int k = 0; k < nMinArgs; ++k) aExpr.addMember(aExpressionMembers.get(nExprMemberIndex + k));
                    ret.add(new CSSDeclaration(aSubProp.getProperty().getPropertyName(), aExpr));
                    nExprMemberIndex += nMinArgs - 1;
                    // Remember as handled
                    aHandledSubProperties[nSubPropIndex] = true;
                    // Next expression member
                    break;
                }
            }
        }
    }
    // Assign all default values that are not present
    for (int nSubPropIndex = 0; nSubPropIndex < nSubProperties; ++nSubPropIndex) if (!aHandledSubProperties[nSubPropIndex]) {
        final CSSPropertyWithDefaultValue aSubProp = m_aSubProperties.get(nSubPropIndex);
        // assign default value
        final CSSExpression aExpr = new CSSExpression();
        aExpr.addMember(new CSSExpressionMemberTermSimple(aSubProp.getDefaultValue()));
        ret.add(new CSSDeclaration(aSubProp.getProperty().getPropertyName(), aExpr));
    }
    return ret;
}
Also used : ICSSProperty(com.helger.css.property.ICSSProperty) CSSExpressionMemberTermSimple(com.helger.css.decl.CSSExpressionMemberTermSimple) ICSSExpressionMember(com.helger.css.decl.ICSSExpressionMember) CSSExpression(com.helger.css.decl.CSSExpression) CSSWriterSettings(com.helger.css.writer.CSSWriterSettings) CSSDeclaration(com.helger.css.decl.CSSDeclaration) CommonsArrayList(com.helger.commons.collection.impl.CommonsArrayList) ReturnsMutableCopy(com.helger.commons.annotation.ReturnsMutableCopy) Nonnull(javax.annotation.Nonnull)

Example 2 with ReturnsMutableCopy

use of com.helger.commons.annotation.ReturnsMutableCopy in project ph-schematron by phax.

the class AbstractSchematronResource method internalCreateDOMReaderSettings.

/**
 * @return The {@link DOMReaderSettings} to be used for reading the XML files
 *         to be validated. This includes the {@link EntityResolver} to be
 *         used.
 * @see #getEntityResolver()
 */
@Nonnull
@ReturnsMutableCopy
protected DOMReaderSettings internalCreateDOMReaderSettings() {
    final DOMReaderSettings aDRS = new DOMReaderSettings();
    if (m_aEntityResolver != null)
        aDRS.setEntityResolver(m_aEntityResolver);
    if (false) {
        final boolean m_bLoadExternalSchemas = false;
        aDRS.setFeatureValue(EXMLParserFeature.EXTERNAL_GENERAL_ENTITIES, m_bLoadExternalSchemas);
        aDRS.setFeatureValue(EXMLParserFeature.EXTERNAL_PARAMETER_ENTITIES, m_bLoadExternalSchemas);
        aDRS.setFeatureValue(EXMLParserFeature.LOAD_EXTERNAL_DTD, m_bLoadExternalSchemas);
        aDRS.setFeatureValue(EXMLParserFeature.VALIDATION, true);
        aDRS.setFeatureValue(EXMLParserFeature.NAMESPACES, true);
    }
    return aDRS;
}
Also used : DOMReaderSettings(com.helger.xml.serialize.read.DOMReaderSettings) ReturnsMutableCopy(com.helger.commons.annotation.ReturnsMutableCopy) Nonnull(javax.annotation.Nonnull)

Aggregations

ReturnsMutableCopy (com.helger.commons.annotation.ReturnsMutableCopy)2 Nonnull (javax.annotation.Nonnull)2 CommonsArrayList (com.helger.commons.collection.impl.CommonsArrayList)1 CSSDeclaration (com.helger.css.decl.CSSDeclaration)1 CSSExpression (com.helger.css.decl.CSSExpression)1 CSSExpressionMemberTermSimple (com.helger.css.decl.CSSExpressionMemberTermSimple)1 ICSSExpressionMember (com.helger.css.decl.ICSSExpressionMember)1 ICSSProperty (com.helger.css.property.ICSSProperty)1 CSSWriterSettings (com.helger.css.writer.CSSWriterSettings)1 DOMReaderSettings (com.helger.xml.serialize.read.DOMReaderSettings)1