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

com.urbanairship.api.client.parse.APIPushResponseDeserializer 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.APIPushResponse;
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 APIPushResponseDeserializer extends JsonDeserializer {

    private static final FieldParserRegistry FIELD_PARSERS =
            new MapFieldParserRegistry(
            ImmutableMap.>builder()
            .put("operation_id", new FieldParser() {
                @Override
                public void parse(APIPushResponseReader reader, JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
                    reader.readOperationId(jsonParser);
                }
            })
            .put("push_ids", new FieldParser() {
                @Override
                public void parse(APIPushResponseReader reader, JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
                    reader.readPushIds(jsonParser);
                }
            })
            .build()
    );

    private final StandardObjectDeserializer deserializer;

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

        );
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy