Port of Google AutoValue for Android with Parcelable generation goodies and gson.
Note: Depending on your needs may want to use gsonvalue instead. While it doesn't support all of gson's features, it solved the problem of it bypassing autovalue's null checks as well as any other invariants you might want to add.
Because it's awesome. I can't explain it better than that.
Because AutoValue is not extensible yet. This fork adds automatic Parcelable implementation for your POJOS. It's easy as just adding implements Parcelable
.
Same reason as the first fork, AutoValue is not extensible. This fork adds support for gson as well.
import auto.parcelgson.gson.AutoParcelGsonTypeAdapterFactory;
import auto.parcelgson.AutoParcelGson;
import auto.parcelgson.gson.annotations.SerializedName;
@AutoParcelGson
abstract class SomeModel implements Parcelable {
abstract String name();
@SerializedName("sub_models");
abstract List<SomeSubModel> subModels();
@SerializedName("models_map");
abstract Map<String, OtherSubModel> modelsMap();
static SomeModel create(String name, List<SomeSubModel> subModels, Map<String, OtherSubModel> modelsMap) {
return new AutoParcelGson_SomeModel(name, subModels, modelsMap);
}
}
...
Gson gson = new GsonBuilder().registerTypeAdapterFactory(new AutoParcelGsonTypeAdapterFactory()).create();
SomeModel = gson.fromJson(jsonModel, SomeModel.class);
That's that simple. And you get Parcelable
, hashCode
, equals
and toString
implementations for free.
As your models evolve you don't need to worry about keeping all the boilerplate in sync with the new implementation, it's already taken care of.
All gson annotations are mirrored in auto.parcelgson.gson.annotations
which work on methods instead of fields. They will be copied to the fields of the generated class. The provided AutoParcelGsonTypeAdapterFactory
will take care of finding the right generated class to construct from the given @AutoParcelGson
abstract class.
Sorry nope, this is already a pretty brittle solution due to the lack of extensibility in autovalue. Feel free to make your own fork!
The easy way is to use Gradle.
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:+'
}
}
apply plugin: 'com.android.application'
dependencies {
compile 'me.tatarka:auto-parcel-gson:0.1'
annotationProcessor 'me.tatarka:auto-parcel-gson-processor:0.1'
}
repositories {
mavenCentral()
jcenter()
}
The Gson TypeAdapter uses reflection to map your abstract classes to the AutoParcelGson implementations. If you are using proguard you need to keep the classes.
-keep class **.AutoParcelGson_*
-keepnames @auto.parcelgson.AutoParcelGson class *
Copyright 2015 Evan Tatarka
Copyright 2014 Frankie Sardo
Copyright 2013 Google, 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.