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

com.urbanairship.api.client.parse.LocationDeserializer Maven / Gradle / Ivy

There is a newer version: 9.7.0
Show newest version
/*
 * Copyright 2013 Urban Airship and Contributors
 */

package com.urbanairship.api.client.parse;

import com.google.common.base.Supplier;
import com.google.common.collect.ImmutableMap;
import com.urbanairship.api.client.APIErrorDetails;
import com.urbanairship.api.common.parse.FieldParser;
import com.urbanairship.api.common.parse.FieldParserRegistry;
import com.urbanairship.api.common.parse.MapFieldParserRegistry;
import com.urbanairship.api.common.parse.StandardObjectDeserializer;
import org.codehaus.jackson.JsonParser;
import org.codehaus.jackson.map.DeserializationContext;
import org.codehaus.jackson.map.JsonDeserializer;

import java.io.IOException;

/*
Deserializers create a mapping between Jackson and an object. This abstracts all
the boilerplate necessary for Jackson stream parsing, which is essentially what
 we're doing. This will be a lot cleaner when lambda's come down.
 If you're using Intellij, be sure and toggle open the code that's
 been collapsed.
 */
class LocationDeserializer extends JsonDeserializer {

    private static final FieldParserRegistry FIELD_PARSERS =
            new MapFieldParserRegistry(
                    ImmutableMap.>builder()
                    .put("line", new FieldParser() {
                        @Override
                        public void parse(LocationReader reader, JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
                            reader.readLine(jsonParser);
                        }
                    })
                    .put("column", new FieldParser() {
                        @Override
                        public void parse(LocationReader reader, JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
                            reader.readColumn(jsonParser);
                        }
                    })
                    .build()
    );

    private final StandardObjectDeserializer deserializer;

    // See Google Guava for Supplier details
    public LocationDeserializer(){
        deserializer = new StandardObjectDeserializer(
                FIELD_PARSERS,
                new Supplier(){
                    @Override
                    public LocationReader get(){
                        return new LocationReader();
                    }
                }
        );
    }

    @Override
    public APIErrorDetails.Location deserialize(JsonParser parser, DeserializationContext deserializationContext)
            throws IOException {
        return deserializer.deserialize(parser, deserializationContext);
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy