Objectbox Еще один BoxStore все еще открыт в Android MVVM с помощью Dagger - PullRequest
0 голосов
/ 02 марта 2019

Я использую Кинжал и ObjectBox в Android MVVM Project

Я пытался предоставить синглтон BoxStore также Tables Rfid, Вес, Здоровье и мой AppDBH класс

Когда я добавляю AppDBH в AppModule и пытаюсь внедрить его, приложениеаварийно завершает работу.

Причина: io.objectbox.exception.DbException: еще один BoxStore все еще открыт для этого каталога: /data/data/com.sarveen.framework.forceplate/files/objectbox/objectbox.Подсказка: для большинства приложений рекомендуется хранить BoxStore в течение всего срока службы приложения. 3

Здесь AppModule Класс:

@Module
public class AppModule {

    @Provides
    @Singleton
    AppDBH provideAppDBH(Box<Rfid> rfidBox, Box<Weight> weightBox, Box<Health> healthBox) {
        return new AppDBH(rfidBox, weightBox, healthBox);
    }

    @Provides
    @Singleton
    Box<Rfid> provideBoxRfid(Context context) {
        return provideBoxStore(context).boxFor(Rfid.class);
    }

    @Provides
    @Singleton
    Box<Health> provideBoxHealth(Context context) {
        return provideBoxStore(context).boxFor(Health.class);
    }

    @Provides
    @Singleton
    Box<Weight> provideBoxWeight(Context context) {
        return provideBoxStore(context).boxFor(Weight.class);
    }

    @Provides
    @Singleton
    BoxStore provideBoxStore(Context context) {
        return MyObjectBox.builder()
                .androidContext(context)
                .build();
    }
}

И вот AppDBH Класс:

@Singleton
public class AppDBH implements DBH{

    public AppDBH(Box<Rfid> rfidBox, Box<Weight> weightBox, Box<Health> healthBox) {
        this.rfidBox = rfidBox;
        this.weightBox = weightBox;
        this.healthBox = healthBox;
    }

    private final String TAG = "BOX_TAG";

    private Box<Rfid> rfidBox;

    private Box<Weight> weightBox;

    private Box<Health> healthBox;

    @Override
    public List<Rfid> getAllRfids() {
        return rfidBox.getAll();
    }

    @Override
    public List<Weight> getAllWeights() {
        return weightBox.getAll();
    }

    @Override
    public List<Health> getAllHealths() {
        return healthBox.getAll();
    }

    @Override
    public long insertRfid(Rfid rfid) {
        return rfidBox.put(rfid);
    }

    @Override
    public long insertWeight(Weight weight) {
        return weightBox.put(weight);
    }

    @Override
    public long insertHealth(Health health) {
        return healthBox.put(health);
    }
}

1 Ответ

0 голосов
/ 02 марта 2019

Через несколько часов я решил эту проблему:

DBH переименован в DbRepo

public class DbRepo implements DbRepository {

    private final String TAG = "BOX_TAG";
    private Box<Rfid> rfidBox;
    private Box<Weight> weightBox;
    private Box<Health> healthBox;

    public DbRepo(@NonNull BoxStore boxStore) {
        this.rfidBox = boxStore.boxFor(Rfid.class);
        this.weightBox = boxStore.boxFor(Weight.class);
        this.healthBox = boxStore.boxFor(Health.class);
    }
    // ...
}

@Module
public class AppModule {

    @Provides
    @Singleton
    DbRepo provideDbRepo(BoxStore boxStore) {
        return new DbRepo(boxStore);
    }

    @Provides
    @Singleton
    BoxStore provideBoxStore(Context context) {
        BoxStore boxStore = MyObjectBox.builder()
                .androidContext(context)
                .build();
        if (BuildConfig.DEBUG) {
            new AndroidObjectBrowser(boxStore).start(context);
        }
        return boxStore;
    }
    // ...
}

// Тестовый код

@Inject
DbRepo dbRepo;

void start() {
    final String BTG = "BOX_TAG";
    // dbRepo.setRfidBox(rfidBox);
    Log.e(TAG, BTG + ", rfidBox: " + (dbRepo != null) + " , " + (System.currentTimeMillis() - 1551513800000L));
    Rfid rfid = new Rfid();
    rfid.setAnimalRfid(System.currentTimeMillis() - 1551513800000L);
    rfid.setCountryCode(98);
    rfid.setTimestamp(System.currentTimeMillis());
    long id = dbRepo.insertRfid(rfid);
    Log.e(TAG, BTG + ", rfidBox id: " + (id));
    Log.e(TAG, BTG + ", rfidBox size: " + (dbRepo.getAllRfids().size()));
}
...