DanielSerdyukov Alchemy Save

Reactive ORM for Android

Project README

Alchemy Apache License

Powerful object mapping for Android with RxJava and Java 8 support.

Examples

Define entities from an abstract class:

@Entry
public class Group {

    @PrimaryKey
    long mId;               // Primary Key must be 'long'

    @Column
    String mName;           // Basic column

    @Relation
    List<User> mUsers;      // Many to many relation

    @Relation
    User mAdmin;            // One to one relation
}

Create Alchemy instance:

public class MyApplication extends Appliaction {

    public static volatile Alchemy sRepo;

    @Override
    public void onCreate() {
        super.onCreate();
        sRepo = new Alchemy(new AndroidSource(new DefaultSchema(1),
                getDatabasePath("main.db").getAbsolutePath())); // for android sqlite
    }

}

Queries: dsl based query

List<User> users = repo
    .where(User.class)
    .starsWith("name", "Alice")
    .and().greaterThan("age", 18)
    .fetch()
    .list();

Java 8 streams:

repo.where(User.class)
    .fetch()
    .stream()
    .forEach(user -> Log.i("TAG", user.toString()));

RxJava Observables:

Observable<User> observable = repo
    .where(User.class)
    .fetch()
    .rx()
    .observable();

RxJava2 Flowables:

Flowable<User> observable = repo
    .where(User.class)
    .fetch()
    .rx2()
    .flowable(BackpressureStrategy.BUFFER);

Using it

Soon in bintray jcenter.

License

Copyright (C) 2017 exzogeni.com

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.
Open Source Agenda is not affiliated with "DanielSerdyukov Alchemy" Project. README Source: DanielSerdyukov/alchemy
Stars
81
Open Issues
1
Last Commit
7 years ago
License

Open Source Agenda Badge

Open Source Agenda Rating