• Stars
    star
    189
  • Rank 204,649 (Top 5 %)
  • Language
    Java
  • License
    Apache License 2.0
  • Created over 9 years ago
  • Updated over 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

AutoValue: Moshi Extension

AutoValue: Moshi Extension

An extension for Google's AutoValue that creates a simple Moshi JsonAdapterFactory for each AutoValue annotated object.

Usage

Simply include auto-value-moshi in your project and annotate your target autovalue class with Moshi's @JsonClass annotation. generateAdapter must be true, and the generator property value should be "avm".

@JsonClass(generateAdapter = true, generator = "avm")
@AutoValue
public abstract class Foo {
  abstract String bar();
  @Json(name="Baz") abstract String baz();

  public static JsonAdapter<Foo> jsonAdapter(Moshi moshi) {
    return new AutoValue_Foo.MoshiJsonAdapter(moshi);
  }
}

Using @JsonClass, no further configuration is necessary. Moshi 1.9+ will automatically pick these types up at runtime.

Legacy alternative

Add a public static method with the following signature to classes you want to get Moshi JsonAdapters. You can also annotate your properties using @Json to define an alternate name for de/serialization.

@AutoValue public abstract class Foo {
  abstract String bar();
  @Json(name="Baz") abstract String baz();

  public static JsonAdapter<Foo> jsonAdapter(Moshi moshi) {
    return new AutoValue_Foo.MoshiJsonAdapter(moshi);
  }
}

Now build your project and de/serialize your Foo.

Generics support

note: this section only applies if using the legacy opt-in via static method. If using @JsonClass, Moshi will handle this automatically.

If the annotated class uses generics, the static method needs a little modification. Simply add a Type[] parameter and pass it to the generated MoshiJsonAdapter class.

@AutoValue public abstract class Foo<T> {
    abstract T data();
    
    public static <T> JsonAdapter<Foo<T>> jsonAdapter(Moshi moshi, Type[] types) {
        return new AutoValue_Foo.MoshiJsonAdapter(moshi, types);
    }
}

Builder Support

If your @AutoValue class has a builder, auto-value-moshi will use the builder to instantiate the class. If the @AutoValue class has a static no-argument factory method for its builder, it will be used. If there are multiple factory methods, the one annotated @AutoValueMoshiBuilder will be used. This can be useful for setting default values.

@JsonClass(generateAdapter = true, generator = "avm")
@AutoValue
public abstract class Foo {
  abstract int bar();
  abstract String quux();

  public static Builder builder() {
    return new AutoValue_Foo.Builder();
  }

  @AutoValueMoshiBuilder
  public static Builder builderWithDefaults() {
    return new builder().quux("QUUX");
  }
}

Factory

note: this section only applies if using the legacy opt-in via static method. If using @JsonClass, Moshi will handle this automatically.

Optionally, auto-value-moshi can create a single JsonAdapter.Factory so that you don't have to add each generated JsonAdapter to your Moshi instance manually.

To generate a JsonAdapter.Factory for all of your auto-value-moshi classes, simply create an abstract class that implements JsonAdapter.Factory and annotate it with @MoshiAdapterFactory, and auto-value-moshi will create an implementation for you. You simply need to provide a static factory method, just like your AutoValue classes, and you can use the generated JsonAdapter.Factory to help Moshi de/serialize your types.

@MoshiAdapterFactory
public abstract class MyAdapterFactory implements JsonAdapter.Factory {

  // Static factory method to access the package
  // private generated implementation
  public static JsonAdapter.Factory create() {
    return new AutoValueMoshi_MyAdapterFactory();
  }
  
}

Then you simply need to register the Factory with Moshi.

Moshi moshi = new Moshi.Builder()
    .add(MyAdapterFactory.create())
    .build();

Transient types

To ignore certain properties from serialization, you can use the @AutoTransient annotation. This comes from a shared transience annotations library and is an api dependency of the runtime artifact. You can annotate a property and it will be treated as transient for both serialization and deserialization. Note that this should only be applied to nullable properties.

Download

Add a Gradle dependency:

annotationProcessor("com.ryanharter.auto.value:auto-value-moshi-extension:1.1.0")
implementation("com.ryanharter.auto.value:auto-value-moshi-runtime:1.1.0")

// If using optional @MoshiAdapterFactory factory
annotationProcessor("com.ryanharter.auto.value:auto-value-moshi-factory:1.1.0")

License

Copyright 2015 Ryan Harter.

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.

More Repositories

1

auto-value-parcel

An Android Parcelable extension for Google's AutoValue.
Java
656
star
2

auto-value-gson

AutoValue Extension to add Gson De/Serializer support
Java
604
star
3

ViewPager-Android

Based on the Android support library's ViewPager class, this ViewPager supports both horizontal and vertical paging views.
Java
154
star
4

Android-TV-Launcher

An Android Launcher specifically designed for use on the tv. Great for devices like the Geniatech Android TV.
Java
144
star
5

ktor-moshi

Ktor feature that adds Moshi JSON serialization support
Kotlin
82
star
6

android-tooltips

Custom tooltips for android.
Java
78
star
7

kotlinx-serialization-xml

Xml support for KotlinX Serialization
Kotlin
69
star
8

vd-tool

Android Studio's Vector Drawable conversion tool in convenient packaging.
66
star
9

mmmmm

Sample app demonstrating Android Canvas APIs
Kotlin
63
star
10

gradle-git-repo

Gradle plugin to better support using git repositories as a (private) maven repo.
Groovy
38
star
11

docker-goaccess-cloudfront

A Docker container to process and serve website analytics using CloudFront and GoAccess. https://hub.docker.com/r/rharter/goaccess-cloudfront
Shell
18
star
12

android-gesture-sample

Sample app demonstrating using simple GestureDetectors
Java
17
star
13

windy-city-devcon-android

Windy City Devcon Android app
Kotlin
11
star
14

goodreads-api

Android interface to the Goodreads api
Java
11
star
15

AdoptMe

Pet finder Android app that goes along with the tutorial at http://ryanharter.com
Java
10
star
16

autovalue-intro

Provides a simple introduction to AutoValue
Java
8
star
17

gl-helpers

Java
7
star
18

gxeditor

An experiment with the GXUI library.
Go
5
star
19

plex-api

Java interface for Plex Media Server web api
Java
5
star
20

kups

Kotlin Unified Parcel Service
Kotlin
4
star
21

enhanced-gridview

Enhanced Android GridView offering multi-directional scrolling.
Java
3
star
22

mediaman

Media management server written in Go
Go
3
star
23

go-tmdb

Go library to access The Movie Database
Go
3
star
24

tab-width-issue-sample

Demonstrates the tab width issue in the design support library
Java
2
star
25

go-guessit

A Go library interface to the GuessIt web service API.
Go
2
star
26

caster-butterknife

Sample code to accompany the Caster butterknife video series
Java
2
star
27

constraint-layout-merge-error

Simple app to demonstrate that ConstraintLayout can't handle merge tags.
Java
2
star
28

gringotts

Kotlin
2
star
29

tvheadend-postproc

Post-processing script for TVHeadend recordings
Python
2
star
30

imagerow.js

A pure javascript library that sizes rows of images so that they preserve their aspect ratio while filling the row.
HTML
2
star
31

dough.js

Java
2
star
32

helm

A multiplatform navigation and presentation framework based on Jetpack Compose.
Kotlin
2
star
33

github-move-linked-project-cards

Automate linked issues in project boards based on PR status
JavaScript
1
star
34

kube-teamcity

1
star
35

heroku-dough-buildpack

Heroku Buildpack for dough.js
Shell
1
star
36

phunweather

Java
1
star
37

lirc-mplay

lirc with patches for Moneual Moncaso 312/320
C
1
star
38

masker

Native masking tools for bitmaps.
C++
1
star
39

hashnote-issues

Issue tracking for hashnote
1
star
40

bug-viewpagerfragmentstatenpe

Sample project demonstrating the ViewPager Fragment state NPE.
Kotlin
1
star
41

template-dough.js

A template project for dough.js
1
star
42

Goodreads

Java
1
star
43

pager-deep-linking

Demo project for deep linking within lists within a ViewPager
Java
1
star
44

android-libcompat

Android library project for backwards compatibility of Activities based on Google's I/O 2011 app.
Java
1
star
45

migrate

Ruby script to compile SQL migration scripts into a deployable sql script.
Ruby
1
star
46

statusboard

JavaScript
1
star
47

dagger-submodule-issue

Highlights an issue with dagger submodules and visibility.
Kotlin
1
star