void TypeLoader::OnResult(const Reply &r) { if (r.type != Reply::MULTI_BULK || !me->redis) { delete this; return; } for (unsigned i = 0; i < r.multi_bulk.size(); ++i) { const Reply *reply = r.multi_bulk[i]; if (reply->type != Reply::BULK) continue; int64_t id; try { id = convertTo<int64_t>(reply->bulk); } catch (const ConvertException &) { continue; } Serialize::Object *obj = type->Require(id); if (obj == nullptr) { Log(LOG_DEBUG) << "redis: Unable to require object #" << id << " of type " << type->GetName(); continue; } std::vector<Anope::string> args = { "SMEMBERS", "keys:" + stringify(id) }; me->redis->SendCommand(new ObjectLoader(me, obj), args); } delete this; }
void SubscriptionListener::OnResult(const Reply &r) { /* * message * anope * message * * set 4 email [email protected] * unset 4 email * create 4 NickCore * delete 4 */ const Anope::string &message = r.multi_bulk[2]->bulk; Anope::string command; spacesepstream sep(message); sep.GetToken(command); if (command == "set" || command == "unset") { Anope::string sid, key, value; sep.GetToken(sid); sep.GetToken(key); value = sep.GetRemaining(); Serialize::ID id; try { id = convertTo<Serialize::ID>(sid); } catch (const ConvertException &ex) { Log(LOG_DEBUG) << "redis: unable to get id for SL update key " << sid; return; } Serialize::Object *obj = Serialize::GetID(id); if (obj == nullptr) { Log(LOG_DEBUG) << "redis: pmessage for unknown object #" << id; return; } Serialize::FieldBase *field = obj->GetSerializableType()->GetField(key); if (field == nullptr) { Log(LOG_DEBUG) << "redis: pmessage for unknown field of object #" << id << ": " << key; return; } Log(LOG_DEBUG_2) << "redis: Setting field " << field->serialize_name << " of object #" << obj->id << " of type " << obj->GetSerializableType()->GetName() << " to " << value; field->UnserializeFromString(obj, value); } else if (command == "create") { Anope::string sid, stype; sep.GetToken(sid); sep.GetToken(stype); Serialize::ID id; try { id = convertTo<Serialize::ID>(sid); } catch (const ConvertException &ex) { Log(LOG_DEBUG) << "redis: unable to get id for SL update key " << sid; return; } Serialize::TypeBase *type = Serialize::TypeBase::Find(stype); if (type == nullptr) { Log(LOG_DEBUG) << "redis: pmessage create for nonexistant type " << stype; return; } Serialize::Object *obj = type->Require(id); if (obj == nullptr) { Log(LOG_DEBUG) << "redis: require for pmessage create type " << type->GetName() << " id #" << id << " returned nullptr"; return; } } else if (command == "delete") { Anope::string sid; sep.GetToken(sid); Serialize::ID id; try { id = convertTo<Serialize::ID>(sid); } catch (const ConvertException &ex) { Log(LOG_DEBUG) << "redis: unable to get id for SL update key " << sid; return; } Serialize::Object *obj = Serialize::GetID(id); if (obj == nullptr) { Log(LOG_DEBUG) << "redis: message for unknown object #" << id; return; } obj->Delete(); } else Log(LOG_DEBUG) << "redis: unknown message: " << message; }