LOG.trace().log("time taken: " + timeTaken);
// handle the end of annotations
annotationLogic.unstripKeys(builder, modified.keySet(), CollectionUtils.createStringSet());
builder.finish();
Nindo nindo = builder.build();
try {
validator.maybeThrowOperationExceptionFor(nindo);
int locationAfter = destDoc.getLocation(insertAt) + createdFromXmlString.getLength();
destOperationSequencer.begin();
destOperationSequencer.consume(nindo);
destOperationSequencer.end();
aggressiveSelectionHelper.setCaret(locationAfter);
LOG.trace().log("annotations: " + String.valueOf(annotations));
if (annotations != null && !annotations.isEmpty()) {
List<RangedAnnotation<String>> deserialize =
AnnotationSerializer.deserialize(annotations);
for (RangedAnnotation<String> ann : deserialize) {
destDoc.setAnnotation(pos + ann.start(), pos + ann.end(), ann.key(), ann.value());
LOG.trace().log(
"pos: " + pos + "start: " + (pos + ann.start()) + " end: " + (pos + ann.end())
+ " key: " + ann.key() + " value: " + ann.value());
}
}
} catch (OperationException e) {
LOG.error().log("Semantic paste failed");
// Restore caret
aggressiveSelectionHelper.setCaret(insertAt);
}
}
} else {
instrumentor.record(Action.CLIPBOARD_PASTE_FROM_OUTSIDE);
// initialize tokenizer and builder
RichTextTokenizer tokenizer = createTokenizer(srcContainer);
Builder builder = at(pos);
// handle annotation starts
StringMap<String> modified = annotationLogic.stripKeys(
destDoc, pos, cursorBias, ContentType.RICH_TEXT, builder);
// parse the tokens and apply ops
RichTextMutationBuilder mutationBuilder = new RichTextMutationBuilder(modified);
ReadableStringSet affectedKeys =
mutationBuilder.applyMutations(tokenizer, builder, destDoc, insertAt.getContainer());
// close annotations and finish
annotationLogic.unstripKeys(builder, modified.keySet(), affectedKeys);
builder.finish();
Nindo nindo = builder.build();
try {
validator.maybeThrowOperationExceptionFor(nindo);
destOperationSequencer.begin();