在我们的应用程序中,我们向其中一个元素添加了一个新的主键(实际上,这已经有一段时间了)。很自然,需要进行迁移。问题是,几乎没有办法进行测试,因为没有人能真正说出如何首先生成这些对象(而intellij也不提供任何答案,无论出于何种原因)

无论如何,这是我的迁移代码:

public class CustomMigration implements RealmMigration{

    private int currentKey = 0;

    public void migrate(DynamicRealm realm, long oldVersion, long newVersion){
        RealmSchema schema = realm.getSchema();
        if(oldVersion <= 4){}
            if(schema.contains("AvailableCandidate"){
                if(!schema.get("AvailableCandidate").hasField("pos")){
                    .addField("pos", int.class, FieldAttribute.PRIMARY_KEY)
                        .transform(new RealmObjectSchema.Function() {
                            @Override
                            public void apply(DynamicRealmObject obj) {
                                obj.setInt("pos", currentKey++);
                            }
                        });
                }
            }
            //
            //  here be more code
            //
            oldVersion = 5;
        }
    }
}


请特别注意变量currentKey。我认为转换将像迭代器一样工作,并且每次转换都要对currentKey进行递增。

问题是,仍然有一些用户似乎遇到了该错误,并且貌似currentKey没有增加。

这个讨厌的问题有什么解决方案?

编辑:织物吐出的异常如下:

"pos" cannot be a primary key, it already contains duplicate values: 0

最佳答案

仅当字段内的值不违反约束时,才应添加主键约束。

public class CustomMigration implements RealmMigration{

    private int currentKey = 0;

    public void migrate(DynamicRealm realm, long oldVersion, long newVersion){
        RealmSchema schema = realm.getSchema();
        if(oldVersion <= 4){}
            if(schema.contains("AvailableCandidate"){
                if(!schema.get("AvailableCandidate").hasField("pos")){
                    .addField("pos", int.class, FieldAttribute.INDEXED)
                    .transform(new RealmObjectSchema.Function() {
                        @Override
                        public void apply(DynamicRealmObject obj) {
                            obj.setInt("pos", currentKey++);
                        }
                    })
                   .addPrimaryKey("pos");
                }
            }
            //
            //  here be more code
            //
            oldVersion = 5;
        }
    }

    @Override
    public boolean equals(Object obj) {
         if(obj == null) {
             return false;
         }
         return CustomMigration.class.equals(obj.getClass());
    }

    @Override
    public int hashCode() {
         return CustomMigration.class.hashCode();
    }
}

10-06 06:51