Search in sources :

Example 1 with SoyMsgSelectPart

use of com.google.template.soy.msgs.restricted.SoyMsgSelectPart in project closure-templates by google.

the class MsgUtils method buildMsgPartForSelect.

/**
 * Builds the list of SoyMsgParts for the given MsgSelectNode.
 *
 * @param msgSelectNode The select node parsed from the Soy source.
 * @param msgNode The MsgNode containing 'msgSelectNode'.
 * @return A SoyMsgSelectPart.
 */
private static SoyMsgSelectPart buildMsgPartForSelect(MsgSelectNode msgSelectNode, MsgNode msgNode) {
    // This is the list of the cases.
    ImmutableList.Builder<SoyMsgPart.Case<String>> selectCases = ImmutableList.builder();
    for (CaseOrDefaultNode child : msgSelectNode.getChildren()) {
        ImmutableList<SoyMsgPart> caseMsgParts = buildMsgPartsForChildren(child, msgNode);
        String caseValue;
        if (child instanceof MsgSelectCaseNode) {
            caseValue = ((MsgSelectCaseNode) child).getCaseValue();
        } else if (child instanceof MsgSelectDefaultNode) {
            caseValue = null;
        } else {
            throw new AssertionError("Unidentified node under a select node.");
        }
        selectCases.add(SoyMsgPart.Case.create(caseValue, caseMsgParts));
    }
    return new SoyMsgSelectPart(msgNode.getSelectVarName(msgSelectNode), selectCases.build());
}
Also used : CaseOrDefaultNode(com.google.template.soy.soytree.CaseOrDefaultNode) ImmutableList(com.google.common.collect.ImmutableList) MsgSelectDefaultNode(com.google.template.soy.soytree.MsgSelectDefaultNode) SoyMsgSelectPart(com.google.template.soy.msgs.restricted.SoyMsgSelectPart) MsgSelectCaseNode(com.google.template.soy.soytree.MsgSelectCaseNode) SoyMsgPart(com.google.template.soy.msgs.restricted.SoyMsgPart)

Example 2 with SoyMsgSelectPart

use of com.google.template.soy.msgs.restricted.SoyMsgSelectPart in project closure-templates by google.

the class MsgCompiler method partToPartExpression.

/**
 * Returns an {@link Expression} that evaluates to an equivalent SoyMsgPart as the argument.
 */
private Expression partToPartExpression(SoyMsgPart part) {
    if (part instanceof SoyMsgPlaceholderPart) {
        return SOY_MSG_PLACEHOLDER_PART.construct(constant(((SoyMsgPlaceholderPart) part).getPlaceholderName()), constantNull(STRING_TYPE));
    } else if (part instanceof SoyMsgPluralPart) {
        SoyMsgPluralPart pluralPart = (SoyMsgPluralPart) part;
        List<Expression> caseExprs = new ArrayList<>(pluralPart.getCases().size());
        for (Case<SoyMsgPluralCaseSpec> item : pluralPart.getCases()) {
            Expression spec;
            if (item.spec().getType() == Type.EXPLICIT) {
                spec = SOY_MSG_PLURAL_CASE_SPEC_LONG.construct(constant(item.spec().getExplicitValue()));
            } else {
                spec = SOY_MSG_PLURAL_CASE_SPEC_TYPE.construct(FieldRef.enumReference(item.spec().getType()).accessor());
            }
            caseExprs.add(CASE_CREATE.invoke(spec, partsToPartsList(item.parts())));
        }
        return SOY_MSG_PURAL_PART.construct(constant(pluralPart.getPluralVarName()), constant(pluralPart.getOffset()), BytecodeUtils.asList(caseExprs));
    } else if (part instanceof SoyMsgPluralRemainderPart) {
        return SOY_MSG_PLURAL_REMAINDER_PART.construct(constant(((SoyMsgPluralRemainderPart) part).getPluralVarName()));
    } else if (part instanceof SoyMsgRawTextPart) {
        return SOY_MSG_RAW_TEXT_PART_OF.invoke(constant(((SoyMsgRawTextPart) part).getRawText(), variables));
    } else if (part instanceof SoyMsgSelectPart) {
        SoyMsgSelectPart selectPart = (SoyMsgSelectPart) part;
        List<Expression> caseExprs = new ArrayList<>(selectPart.getCases().size());
        for (Case<String> item : selectPart.getCases()) {
            caseExprs.add(CASE_CREATE.invoke(item.spec() == null ? constantNull(STRING_TYPE) : constant(item.spec()), partsToPartsList(item.parts())));
        }
        return SOY_MSG_SELECT_PART.construct(constant(selectPart.getSelectVarName()), BytecodeUtils.asList(caseExprs));
    } else {
        throw new AssertionError("unrecognized part: " + part);
    }
}
Also used : SoyMsgPluralRemainderPart(com.google.template.soy.msgs.restricted.SoyMsgPluralRemainderPart) SoyMsgPluralPart(com.google.template.soy.msgs.restricted.SoyMsgPluralPart) ArrayList(java.util.ArrayList) SoyMsgSelectPart(com.google.template.soy.msgs.restricted.SoyMsgSelectPart) Case(com.google.template.soy.msgs.restricted.SoyMsgPart.Case) SoyMsgPlaceholderPart(com.google.template.soy.msgs.restricted.SoyMsgPlaceholderPart) SoyExpression(com.google.template.soy.jbcsrc.restricted.SoyExpression) Expression(com.google.template.soy.jbcsrc.restricted.Expression) SoyMsgRawTextPart(com.google.template.soy.msgs.restricted.SoyMsgRawTextPart) ArrayList(java.util.ArrayList) ImmutableList(com.google.common.collect.ImmutableList) List(java.util.List)

Example 3 with SoyMsgSelectPart

use of com.google.template.soy.msgs.restricted.SoyMsgSelectPart in project closure-templates by google.

the class IcuSyntaxUtils method convertMsgPartsHelper.

/**
 * Private helper for {@code convertMsgPartsToEmbeddedIcuSyntax()} to convert msg parts.
 *
 * @param newMsgPartsBuilder The new msg parts being built.
 * @param currRawTextSb The collector for the current raw text, which hasn't yet been turned into
 *     a SoyMsgRawTextPart and added to newMsgPartsBuilder because it might not be complete.
 * @param origMsgParts The msg parts to convert.
 * @param isInPlrselPart Whether we're currently within a plural/select part's subtree.
 */
private static void convertMsgPartsHelper(ImmutableList.Builder<SoyMsgPart> newMsgPartsBuilder, StringBuilder currRawTextSb, List<SoyMsgPart> origMsgParts, boolean isInPlrselPart) {
    for (SoyMsgPart origMsgPart : origMsgParts) {
        if (origMsgPart instanceof SoyMsgRawTextPart) {
            String rawText = ((SoyMsgRawTextPart) origMsgPart).getRawText();
            if (isInPlrselPart) {
                rawText = icuEscape(rawText);
            }
            currRawTextSb.append(rawText);
        } else if (origMsgPart instanceof SoyMsgPlaceholderPart) {
            // a msg part for it and clear the collector.
            if (currRawTextSb.length() > 0) {
                newMsgPartsBuilder.add(SoyMsgRawTextPart.of(currRawTextSb.toString()));
                currRawTextSb.setLength(0);
            }
            // Reuse the msg part for the placeholder since it's immutable.
            newMsgPartsBuilder.add(origMsgPart);
        } else if (origMsgPart instanceof SoyMsgPluralRemainderPart) {
            currRawTextSb.append(getPluralRemainderString());
        } else if (origMsgPart instanceof SoyMsgPluralPart) {
            convertPluralPartHelper(newMsgPartsBuilder, currRawTextSb, (SoyMsgPluralPart) origMsgPart);
        } else if (origMsgPart instanceof SoyMsgSelectPart) {
            convertSelectPartHelper(newMsgPartsBuilder, currRawTextSb, (SoyMsgSelectPart) origMsgPart);
        }
    }
}
Also used : SoyMsgPluralRemainderPart(com.google.template.soy.msgs.restricted.SoyMsgPluralRemainderPart) SoyMsgPlaceholderPart(com.google.template.soy.msgs.restricted.SoyMsgPlaceholderPart) SoyMsgPluralPart(com.google.template.soy.msgs.restricted.SoyMsgPluralPart) SoyMsgRawTextPart(com.google.template.soy.msgs.restricted.SoyMsgRawTextPart) SoyMsgSelectPart(com.google.template.soy.msgs.restricted.SoyMsgSelectPart) SoyMsgPart(com.google.template.soy.msgs.restricted.SoyMsgPart)

Example 4 with SoyMsgSelectPart

use of com.google.template.soy.msgs.restricted.SoyMsgSelectPart in project closure-templates by google.

the class RenderVisitorAssistantForMsgs method renderMsgFromTranslation.

/**
 * Private helper for visitMsgFallbackGroupNode() to render a message from its translation.
 */
private void renderMsgFromTranslation(MsgNode msg, ImmutableList<SoyMsgPart> msgParts, @Nullable ULocale locale) {
    SoyMsgPart firstPart = msgParts.get(0);
    if (firstPart instanceof SoyMsgPluralPart) {
        new PlrselMsgPartsVisitor(msg, locale).visitPart((SoyMsgPluralPart) firstPart);
    } else if (firstPart instanceof SoyMsgSelectPart) {
        new PlrselMsgPartsVisitor(msg, locale).visitPart((SoyMsgSelectPart) firstPart);
    } else {
        for (SoyMsgPart msgPart : msgParts) {
            if (msgPart instanceof SoyMsgRawTextPart) {
                RenderVisitor.append(master.getCurrOutputBufForUseByAssistants(), ((SoyMsgRawTextPart) msgPart).getRawText());
            } else if (msgPart instanceof SoyMsgPlaceholderPart) {
                String placeholderName = ((SoyMsgPlaceholderPart) msgPart).getPlaceholderName();
                visit(msg.getRepPlaceholderNode(placeholderName));
            } else {
                throw new AssertionError();
            }
        }
    }
}
Also used : SoyMsgPlaceholderPart(com.google.template.soy.msgs.restricted.SoyMsgPlaceholderPart) SoyMsgPluralPart(com.google.template.soy.msgs.restricted.SoyMsgPluralPart) SoyMsgRawTextPart(com.google.template.soy.msgs.restricted.SoyMsgRawTextPart) SoyMsgSelectPart(com.google.template.soy.msgs.restricted.SoyMsgSelectPart) SoyMsgPart(com.google.template.soy.msgs.restricted.SoyMsgPart)

Aggregations

SoyMsgSelectPart (com.google.template.soy.msgs.restricted.SoyMsgSelectPart)4 SoyMsgPart (com.google.template.soy.msgs.restricted.SoyMsgPart)3 SoyMsgPlaceholderPart (com.google.template.soy.msgs.restricted.SoyMsgPlaceholderPart)3 SoyMsgPluralPart (com.google.template.soy.msgs.restricted.SoyMsgPluralPart)3 SoyMsgRawTextPart (com.google.template.soy.msgs.restricted.SoyMsgRawTextPart)3 ImmutableList (com.google.common.collect.ImmutableList)2 SoyMsgPluralRemainderPart (com.google.template.soy.msgs.restricted.SoyMsgPluralRemainderPart)2 Expression (com.google.template.soy.jbcsrc.restricted.Expression)1 SoyExpression (com.google.template.soy.jbcsrc.restricted.SoyExpression)1 Case (com.google.template.soy.msgs.restricted.SoyMsgPart.Case)1 CaseOrDefaultNode (com.google.template.soy.soytree.CaseOrDefaultNode)1 MsgSelectCaseNode (com.google.template.soy.soytree.MsgSelectCaseNode)1 MsgSelectDefaultNode (com.google.template.soy.soytree.MsgSelectDefaultNode)1 ArrayList (java.util.ArrayList)1 List (java.util.List)1