blob: 48edaa7e371d7220b00f6650ee37b9802065ca58 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.felix.serializer.impl.json;
import java.util.Comparator;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.felix.serializer.Writer;
import org.apache.felix.serializer.WriterFactory;
import org.osgi.util.converter.Converter;
public class JsonWriterFactory implements WriterFactory, WriterFactory.JsonWriterFactory {
private final Map<String, List<String>> mapOrderingRules = new HashMap<>();
private final Map<String, Comparator<?>> arrayOrderingRules = new HashMap<>();
@Override
public JsonWriterFactory orderMap(String path, List<String> keyOrder) {
mapOrderingRules.put(path, keyOrder);
return this;
}
@Override
public WriterFactory orderMap(Map<String, List<String>> orderingRules) {
mapOrderingRules.putAll(orderingRules);
return this;
}
@Override
public WriterFactory orderArray(String path) {
arrayOrderingRules.put(path, null);
return this;
}
@Override
public WriterFactory orderArray(String path, Comparator<?> comparator) {
arrayOrderingRules.put(path, comparator);
return this;
}
@Override
public Writer newDefaultWriter(Converter c) {
return new DefaultJsonWriter(c);
}
@Override
public Writer newDebugWriter(Converter c) {
return new DebugJsonWriter(c, mapOrderingRules, arrayOrderingRules);
}
}