From cf2fcd5c369ac45eee33bd5a7e98c6f2c0680dfa Mon Sep 17 00:00:00 2001 From: Elena Bobkova Date: Tue, 10 Jan 2017 16:18:26 +0300 Subject: [PATCH] added LoganSquare JodaTime converter --- .../LoganSquareJodaTimeConverter.java | 65 +++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 src/main/java/ru/touchin/templates/logansquare/LoganSquareJodaTimeConverter.java diff --git a/src/main/java/ru/touchin/templates/logansquare/LoganSquareJodaTimeConverter.java b/src/main/java/ru/touchin/templates/logansquare/LoganSquareJodaTimeConverter.java new file mode 100644 index 0000000..0c4683a --- /dev/null +++ b/src/main/java/ru/touchin/templates/logansquare/LoganSquareJodaTimeConverter.java @@ -0,0 +1,65 @@ +/* + * Copyright (c) 2016 Touch Instinct + * + * This file is part of RoboSwag library. + * + * 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 ru.touchin.templates.logansquare; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; + +import com.bluelinelabs.logansquare.typeconverters.TypeConverter; +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.core.JsonParser; + +import org.joda.time.DateTime; + +import java.io.IOException; + +import ru.touchin.roboswag.core.log.Lc; + +/** + * LoganSquare converter for joda.time.DateTime + */ +public class LoganSquareJodaTimeConverter implements TypeConverter { + + @Override + public DateTime parse(@NonNull final JsonParser jsonParser) throws IOException { + final String dateString = jsonParser.getValueAsString(); + try { + return new DateTime(dateString); + } catch (RuntimeException e) { + Lc.assertion(e); + } + return null; + } + + @Override + public void serialize(@Nullable final DateTime object, + @Nullable final String fieldName, + final boolean writeFieldNameForObject, + @NonNull final JsonGenerator jsonGenerator) + throws IOException { + if (fieldName != null) { + jsonGenerator.writeStringField(fieldName, object.toString()); + } else { + jsonGenerator.writeString(object.toString()); + } + } + +}