All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.thisptr.jackson.jq.internal.functions.ToEntriesFunction Maven / Gradle / Ivy

There is a newer version: 198
Show newest version
package net.thisptr.jackson.jq.internal.functions;

import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.Map.Entry;

import net.thisptr.jackson.jq.Function;
import net.thisptr.jackson.jq.JsonQuery;
import net.thisptr.jackson.jq.Scope;
import net.thisptr.jackson.jq.exception.JsonQueryException;
import net.thisptr.jackson.jq.internal.BuiltinFunction;
import net.thisptr.jackson.jq.internal.misc.Preconditions;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ArrayNode;
import com.fasterxml.jackson.databind.node.JsonNodeType;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.fasterxml.jackson.databind.node.TextNode;

@BuiltinFunction("to_entries/0")
public class ToEntriesFunction implements Function {
	@Override
	public List apply(final Scope scope, final List args, final JsonNode in) throws JsonQueryException {
		Preconditions.checkInputType("to_entries", in, JsonNodeType.OBJECT);

		final ArrayNode out = scope.getObjectMapper().createArrayNode();
		final Iterator> iter = in.fields();
		while (iter.hasNext()) {
			final Entry entry = iter.next();
			final ObjectNode entryNode = scope.getObjectMapper().createObjectNode();
			entryNode.set("key", new TextNode(entry.getKey()));
			entryNode.set("value", entry.getValue());
			out.add(entryNode);
		}

		return Collections.singletonList((JsonNode) out);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy