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.
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
.
- 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
- Added calls to super if parent is annotated with
@PacelGen
- Added more supported types (CharSequence, Lists)
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 validdescribeContents
&writeToParcel(Parcel, int)
methods & leave them there. ParcelGen compiler will replace them with fully functional ones.
- Add support for arrays of Enum & Serializable ?
- Add more of supported by
Parcel
types ? - Call super.writeToParcel() & from constructor ?
- http://habrahabr.ru/company/e-Legion/blog/206208/ (in Russian)
- http://scg.unibe.ch/archive/projects/Erni08b.pdf
Copyright 2015 Dimitry Ivanov (mail@dimitryivanov.ru)
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.