Skip to content

Commit

Permalink
Merge pull request #3 from realm/al-bugfixes
Browse files Browse the repository at this point in the history
Bugfixes from the cocoa branch
  • Loading branch information
alazier committed Aug 13, 2015
2 parents 043f5ff + b084335 commit 0700428
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 18 deletions.
7 changes: 4 additions & 3 deletions object_store.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,10 @@ void ObjectStore::update_column_mapping(Group *group, ObjectSchema &target_schem
ObjectSchema table_schema(group, target_schema.name);
for (auto& target_prop : target_schema.properties) {
auto table_prop = table_schema.property_for_name(target_prop.name);
REALM_ASSERT_DEBUG(table_prop);

target_prop.table_column = table_prop->table_column;
if (table_prop) {
// Update target property column to match what's in the realm if it exists
target_prop.table_column = table_prop->table_column;
}
}
}

Expand Down
31 changes: 18 additions & 13 deletions shared_realm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
////////////////////////////////////////////////////////////////////////////

#include "shared_realm.hpp"
#include <realm/group_shared.hpp>
#include <realm/lang_bind_helper.hpp>
#include <realm/commit_log.hpp>
#include <memory>

Expand Down Expand Up @@ -63,11 +65,6 @@ Realm::Realm(Config &config) : m_config(config), m_thread_id(std::this_thread::g
}
}

Realm::~Realm()
{
s_global_cache.remove(m_config.path, m_thread_id);
}

Group *Realm::read_group()
{
if (!m_group) {
Expand Down Expand Up @@ -108,7 +105,12 @@ SharedRealm Realm::get_shared_realm(Config &config)
std::lock_guard<std::mutex> lock(s_init_mutex);

uint64_t old_version = ObjectStore::get_schema_version(realm->read_group());
if (!realm->m_config.schema) {
if (auto existing = s_global_cache.get_any_realm(realm->config().path)) {
// if there is an existing realm at the current path steal its schema/column mapping
// FIXME - need to validate that schemas match
realm->m_config.schema = std::make_unique<Schema>(*existing->m_config.schema);
}
else if (!realm->m_config.schema) {
// get schema from group and skip validation
realm->m_config.schema_version = old_version;
realm->m_config.schema = std::make_unique<Schema>(ObjectStore::schema_from_group(realm->read_group()));
Expand All @@ -119,11 +121,6 @@ SharedRealm Realm::get_shared_realm(Config &config)
}
ObjectStore::verify_schema(realm->read_group(), *realm->m_config.schema, true);
}
else if(auto existing = s_global_cache.get_any_realm(realm->config().path)) {
// if there is an existing realm at the current path steal its schema/column mapping
// FIXME - need to validate that schemas match
realm->m_config.schema = std::make_unique<Schema>(*existing->m_config.schema);
}
else {
// its a non-cached realm so update/migrate if needed
realm->update_schema(*realm->m_config.schema, realm->m_config.schema_version);
Expand Down Expand Up @@ -355,11 +352,12 @@ SharedRealm RealmCache::get_any_realm(const std::string &path)
return SharedRealm();
}

for (auto thread_iter = path_iter->second.begin(); thread_iter != path_iter->second.end(); thread_iter++) {
auto thread_iter = path_iter->second.begin();
while (thread_iter != path_iter->second.end()) {
if (auto realm = thread_iter->second.lock()) {
return realm;
}
path_iter->second.erase(thread_iter);
path_iter->second.erase(thread_iter++);
}

return SharedRealm();
Expand Down Expand Up @@ -397,3 +395,10 @@ void RealmCache::cache_realm(SharedRealm &realm, std::thread::id thread_id)
}
}

void RealmCache::clear()
{
std::lock_guard<std::mutex> lock(m_mutex);

m_cache.clear();
}

4 changes: 2 additions & 2 deletions shared_realm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,13 @@ namespace realm {
Group *m_group;

static std::mutex s_init_mutex;
static RealmCache s_global_cache;

public:
~Realm();
ExternalNotificationFunction m_external_notifier;

// FIXME private
Group *read_group();
static RealmCache s_global_cache;
};

class RealmCache
Expand All @@ -134,6 +133,7 @@ namespace realm {
SharedRealm get_any_realm(const std::string &path);
void remove(const std::string &path, std::thread::id thread_id);
void cache_realm(SharedRealm &realm, std::thread::id thread_id = std::this_thread::get_id());
void clear();

private:
std::map<std::string, std::map<std::thread::id, WeakRealm>> m_cache;
Expand Down

0 comments on commit 0700428

Please sign in to comment.