com.bazaarvoice.jolt.defaultr.MapKey Maven / Gradle / Ivy
/*
* Copyright 2013 Bazaarvoice, Inc.
*
* Licensed 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 com.bazaarvoice.jolt.defaultr;
import com.bazaarvoice.jolt.common.DeepCopy;
import java.util.Collection;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
public class MapKey extends Key {
public MapKey( String jsonKey, Object spec ) {
super( jsonKey, spec );
}
@Override
protected int getLiteralIntKey() {
throw new UnsupportedOperationException( "Shouldn't be be asking a MapKey for int getLiteralIntKey()." );
}
@Override
protected void applyChild( Object container ) {
if ( container instanceof Map ) {
Map defaulteeMap = (Map) container;
// Find all defaultee keys that match the childKey spec. Simple for Literal keys, more work for * and |.
for ( String literalKey : determineMatchingContainerKeys( defaulteeMap ) ) {
applyLiteralKeyToContainer( literalKey, defaulteeMap );
}
}
// Else there is disagreement (with respect to Array vs Map) between the data in
// the Container vs the Defaultr Spec type for this key. Container wins, so do nothing.
}
private void applyLiteralKeyToContainer( String literalKey, Map container ) {
Object defaulteeValue = container.get( literalKey );
if ( children == null ) {
if ( defaulteeValue == null ) {
container.put( literalKey, DeepCopy.simpleDeepCopy( literalValue ) ); // apply a copy of the default value into a map
}
}
else {
if ( defaulteeValue == null ) {
defaulteeValue = createOutputContainerObject();
container.put( literalKey, defaulteeValue ); // push a new sub-container into this map
}
// recurse by applying my children to this known valid container
applyChildren( defaulteeValue );
}
}
private Collection determineMatchingContainerKeys( Map container ) {
switch ( getOp() ) {
case LITERAL:
// the container should get these literal values added to it
return keyStrings;
case STAR:
// Identify all its keys
return container.keySet();
case OR:
// Identify the intersection between its keys and the OR values
Set intersection = new HashSet<>( container.keySet() );
intersection.retainAll( keyStrings );
return intersection;
default :
throw new IllegalStateException( "Someone has added an op type without changing this method." );
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy