RxAndroidOrm

Additional

Language
Java
Version
N/A
Created
May 6, 2017
Updated
Jan 4, 2018 (Retired)
Owner
Florent CHAMPIGNY (florent37)
Contributors
Florent CHAMPIGNY (florent37)
Thibaud Giovannetti (tspoke)
2
Activity
Badge
Generate
Download
Source code

RxAndroidOrm

Download

dependencies {
    compile 'com.github.florent37:rxandroidorm:1.0.1'
    provided 'com.github.florent37:rxandroidorm-annotations:1.0.1'
    annotationProcessor 'com.github.florent37:rxandroidorm-compiler:1.0.1'
}

A simple & fluent Android ORM, how can it be easier ? And it's compatible with RxJava2 !

Observable.fromArray(
                new Computer(Computer.WINDOWS, "MasterRace", Arrays.asList(new Software("Photoshop"))),
                new Computer(Computer.WINDOWS, "Gamerz"),
                new Computer(Computer.LINUX, "MasterRace", Arrays.asList(new Software("Gimp"))))
                .flatMap(computerDb::add)
                .subscribe();

Observable.just(new Computer(Computer.MAC, "Mac Mini"))
                .flatMap(computerDb::add)
                .doOnNext(computer -> computer.getSoftwares().add(new Software("Photoshop")))
                .flatMap(computerDb::update)
                .subscribe();

computerDb.select()
                .label().equalsTo("MasterRace")
                .or()
                .softwares(SoftwareDatabase.where().name().equalsTo("Photoshop"))

                .asObservable()
                .subscribe(computers -> Log.d(TAG, computers.toString()));

First, initialize !

Don't forget to initialise RxAndroidOrm in your applicarion:

public class MyApplicarion extends Applicarion {

    @Override public void onCreate() {
        super.onCreate();
        RxAndroidOrm.onCreate(this);
    }

}

Second, annotate your models

Use Annotations to mark classes to be persisted:

@Model
public class Computer {

    @Id long id;
    String name;
   
    List<Software> softwares;
}

Logging

You can log all SQL queries from entities managers:

computerDb.logQueries((query, datas) -> Log.d(TAG, query) }

TODO

  • Enum support

Credits

Author: Florent Champigny http://www.florentchampigny.com/

Blog : http://www.tutos-android-france.com/

License

Copyright 2017 Florent37, 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.