项目作者: kobakei

项目描述 :
Android object-data mapper for SharedPreferences
高级语言: Java
项目地址: git://github.com/kobakei/spot.git
创建时间: 2016-03-31T09:02:12Z
项目社区:https://github.com/kobakei/spot

开源协议:Apache License 2.0

下载


Spot

Build Status
JitPack
Android Arsenal

Spot (SharedPreferences Object Transformer) is Android object-data mapper for SharedPreferences.

Main features are as below:

  • No reflection: All repository classes will be generated by annotation processing.
  • POJO support: Entity classes do not need to inherit base class.
  • Store any types: By providing TypeConverter, any types can be stored.

Download

Project build.gradle

  1. allprojects {
  2. repositories {
  3. ...
  4. maven { url "https://jitpack.io" }
  5. }
  6. }

App build.gradle

  1. dependencies {
  2. ...
  3. annotationProcessor 'com.github.kobakei.spot:compiler:LATEST_VERSION'
  4. compile 'com.github.kobakei.spot:library:LATEST_VERSION'
  5. }

LATEST_VERSION is JitPack

NOTE: if you use Android Gradle Plugin before 2.2.0, you must use android-apt plugin instead of annotationProcessor configuration.

Basic usage

Annotate your entity class with @Pref and fields with @PrefField.

  1. @Pref(name = "foo")
  2. public class MyEntity {
  3. // Integer field
  4. // defaultValue can be omitted.
  5. @PrefField(name = "hoge")
  6. public int hoge = 123;
  7. // String field
  8. // defaultValue can be omitted.
  9. @PrefField(name = "fuga")
  10. public String fuga = "Hello";
  11. // Default constructor is needed.
  12. public MyEntity() {}
  13. }

Once your build, MyEntitySpotRepository class will be generated in same package as entity class.

  1. // Get
  2. MyEntity entity = MyEntitySpotRepository.getEntity(context);
  3. // Put
  4. entity.hoge = 123;
  5. entity.fuga = "Goodbye"
  6. MyEntitySpotRepository.putEntity(context, entity);

Type converter

Spot supports 6 types (int, long, float, boolean, String and Set<String>) as fields but other types can also be supported by providing TypeConverter class.

For example, let’s support java.util.Date class as entity field.

At first, subclass of TypeConverter is needed. The follow sample gets/puts Date value from SharedPreferences by converting from/to Long.

  1. public class DateTypeConverter extends TypeConverter<Date, Long> {
  2. @Override
  3. public Date convertFromSupportedType(Long t) {
  4. return new Date(t);
  5. }
  6. @Override
  7. public Long convertToSupportedType(Date t) {
  8. return t.getTime();
  9. }
  10. }

At last, annotate Date field with converter option.

  1. @Pref(name = "foo")
  2. public class MyEntity {
  3. @PrefField(name = "date", converter = DateTypeConverter.class)
  4. public Date date = new Date();
  5. }

Kotlin

To work with Kotlin, please set true to useSetter and useGetter option.

  1. @Pref(name = "MyModel")
  2. data class MyModel {
  3. @PrefField(name = "foo", useSetter = true, useGetter = true)
  4. var foo: Int = 0
  5. }

Migration from 1.0.0 or older versions

  • Replace @Pref*** with @PrefField

    • defaultValue is deprecated at v2 therefore put default value to field init value.
      ```java
      // Before
      // @PrefInt(name = “foo”, defaultValue = 123)
      // public int foo;

    // After
    @PrefField(name = “foo”)
    public int foo = 123;
    ```

Contribute this project

Small bug fixes are welcomed. If you want to add new feature, please raise issue.

License

  1. Copyright 2016 Keisuke Kobayashi
  2. Licensed under the Apache License, Version 2.0 (the "License");
  3. you may not use this file except in compliance with the License.
  4. You may obtain a copy of the License at
  5. http://www.apache.org/licenses/LICENSE-2.0
  6. Unless required by applicable law or agreed to in writing, software
  7. distributed under the License is distributed on an "AS IS" BASIS,
  8. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  9. See the License for the specific language governing permissions and
  10. limitations under the License.