use of com.google.template.soy.msgs.restricted.SoyMsgPluralRemainderPart 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);
}
}
use of com.google.template.soy.msgs.restricted.SoyMsgPluralRemainderPart 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);
}
}
}
Aggregations