ParcelGen

Android easy @Parcelable

License

License

GroupId

GroupId

ru.noties
ArtifactId

ArtifactId

parcel-compiler
Last Version

Last Version

1.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

ParcelGen
Android easy @Parcelable
Project URL

Project URL

https://github.com/noties/ParcelGen
Source Code Management

Source Code Management

https://github.com/noties/ParcelGen

Download parcel-compiler

How to add to project

<!-- https://jarcasting.com/artifacts/ru.noties/parcel-compiler/ -->
<dependency>
    <groupId>ru.noties</groupId>
    <artifactId>parcel-compiler</artifactId>
    <version>1.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/ru.noties/parcel-compiler/
implementation 'ru.noties:parcel-compiler:1.1.0'
// https://jarcasting.com/artifacts/ru.noties/parcel-compiler/
implementation ("ru.noties:parcel-compiler:1.1.0")
'ru.noties:parcel-compiler:jar:1.1.0'
<dependency org="ru.noties" name="parcel-compiler" rev="1.1.0">
  <artifact name="parcel-compiler" type="jar" />
</dependency>
@Grapes(
@Grab(group='ru.noties', module='parcel-compiler', version='1.1.0')
)
libraryDependencies += "ru.noties" % "parcel-compiler" % "1.1.0"
[ru.noties/parcel-compiler "1.1.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

ParcelGen

Android Arsenal

This project combines Java Annotation Processing & AST modification to generate Parcelable boilerplate code before compilation. The main aim of this project was to explore undocumented Java AST modification.

This library does not bring any runtimes to your project - all code is generated before compilation. Changes occur only in annotated object.

Setup

Add dependencies to you project:

compile 'ru.noties:parcel-gen:1.1.0'
apt 'ru.noties:parcel-compiler:1.1.0'

Annotate a class that should be Parcelable with @ru.noties.parcelable.ParcelGen.

Supported types

  • byte
  • int
  • long
  • float
  • double
  • boolean
  • String
  • Enum (no array support)
  • Serializable (no array support)
  • Parcelable (with array & List or ArrayList support)
  • CharSequence
  • List & ArrayList

Changelog v1.1.0

  • Added calls to super if parent is annotated with @PacelGen
  • Added more supported types (CharSequence, Lists)

Drawbacks

As long as IDE would not know that an object will magically become a Parcelable after compilation it will not let you use it as it's one. There are two possibilities:

  • Simply cast to Parcelable when it's needed (Bundle.putParcelable("key", (Parcelable) myAnnotatedWithParcelGenObject);
  • Implement Parcelable in your object, add valid describeContents & writeToParcel(Parcel, int) methods & leave them there. ParcelGen compiler will replace them with fully functional ones.

How to improve library

  • Add support for arrays of Enum & Serializable ?
  • Add more of supported by Parcel types ?
  • Call super.writeToParcel() & from constructor ?

Sources of inspiration

License

  Copyright 2015 Dimitry Ivanov ([email protected])

  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.

Versions

Version
1.1.0
1.0.0