Browse Source

Fix plKeyImp warning about comparison of this and nullptr.

Darryl Pogue 9 years ago
parent
commit
608afb4270
  1. 62
      Sources/Plasma/NucleusLib/pnKeyedObject/plKeyImp.cpp
  2. 3
      Sources/Plasma/NucleusLib/pnKeyedObject/plKeyImp.h

62
Sources/Plasma/NucleusLib/pnKeyedObject/plKeyImp.cpp

@ -74,8 +74,12 @@ bool IsTrackedKey(const plKeyImp* key)
} }
#endif #endif
hsKeyedObject* plKeyImp::SafeGetObject(const plKeyImp* key) {
return key ? key->fObjectPtr : nullptr;
}
plKeyImp::plKeyImp() : plKeyImp::plKeyImp() :
fObjectPtr(nil), fObjectPtr(nil),
fStartPos(-1), fStartPos(-1),
fDataLen(-1), fDataLen(-1),
fNumActiveRefs(0), fNumActiveRefs(0),
@ -89,7 +93,7 @@ plKeyImp::plKeyImp() :
plKeyImp::plKeyImp(plUoid u, uint32_t pos,uint32_t len): plKeyImp::plKeyImp(plUoid u, uint32_t pos,uint32_t len):
fUoid(u), fUoid(u),
fObjectPtr(nil), fObjectPtr(nil),
fStartPos(pos), fStartPos(pos),
fDataLen(len), fDataLen(len),
fNumActiveRefs(0), fNumActiveRefs(0),
@ -104,7 +108,7 @@ plKeyImp::plKeyImp(plUoid u, uint32_t pos,uint32_t len):
#endif #endif
} }
plKeyImp::~plKeyImp() plKeyImp::~plKeyImp()
{ {
plProfile_DelMem(KeyMem, CalcKeySize(this)); plProfile_DelMem(KeyMem, CalcKeySize(this));
@ -137,7 +141,7 @@ plKeyImp::~plKeyImp()
void plKeyImp::SetUoid(const plUoid& uoid) void plKeyImp::SetUoid(const plUoid& uoid)
{ {
fUoid = uoid; fUoid = uoid;
#ifdef HS_DEBUGGING #ifdef HS_DEBUGGING
fIDName = fUoid.GetObjectName(); fIDName = fUoid.GetObjectName();
fClassType = plFactory::GetNameOfClass(fUoid.GetClassType()); fClassType = plFactory::GetNameOfClass(fUoid.GetClassType());
@ -145,18 +149,18 @@ void plKeyImp::SetUoid(const plUoid& uoid)
} }
const plString& plKeyImp::GetName() const const plString& plKeyImp::GetName() const
{ {
return fUoid.GetObjectName(); return fUoid.GetObjectName();
} }
hsKeyedObject* plKeyImp::GetObjectPtr() hsKeyedObject* plKeyImp::GetObjectPtr()
{ {
return ObjectIsLoaded(); return ObjectIsLoaded();
} }
hsKeyedObject* plKeyImp::ObjectIsLoaded() const hsKeyedObject* plKeyImp::ObjectIsLoaded() const
{ {
return this ? fObjectPtr : nil; return plKeyImp::SafeGetObject(this);
} }
// Copy the contents of p for cloning process // Copy the contents of p for cloning process
@ -170,8 +174,8 @@ void plKeyImp::CopyForClone(const plKeyImp *p, uint32_t playerID, uint32_t clone
fClassType = plFactory::GetNameOfClass( fUoid.GetClassType() ); fClassType = plFactory::GetNameOfClass( fUoid.GetClassType() );
#endif #endif
fStartPos = p->GetStartPos(); fStartPos = p->GetStartPos();
fDataLen = p->GetDataLen(); fDataLen = p->GetDataLen();
fUoid.SetClone(playerID, cloneID); fUoid.SetClone(playerID, cloneID);
} }
@ -269,9 +273,9 @@ hsKeyedObject* plKeyImp::RefObject(plRefFlags::Type flags)
return VerifyLoaded(); // load object on demand return VerifyLoaded(); // load object on demand
} }
void plKeyImp::UnRefObject(plRefFlags::Type flags) void plKeyImp::UnRefObject(plRefFlags::Type flags)
{ {
// Rather than using hsRefCnt's, make Ref and // Rather than using hsRefCnt's, make Ref and
// UnRef work with ActiveRef system // UnRef work with ActiveRef system
if ( (flags == plRefFlags::kPassiveRef) && !ObjectIsLoaded()) if ( (flags == plRefFlags::kPassiveRef) && !ObjectIsLoaded())
return; return;
@ -288,7 +292,7 @@ void plKeyImp::UnRefObject(plRefFlags::Type flags)
IClearRefs(); IClearRefs();
ClearNotifyCreated(); ClearNotifyCreated();
plKey key=plKey::Make( this ); // for linux build plKey key=plKey::Make( this ); // for linux build
plSelfDestructMsg* nuke = new plSelfDestructMsg( key ); plSelfDestructMsg* nuke = new plSelfDestructMsg( key );
plgDispatch::Dispatch()->MsgSend(nuke); plgDispatch::Dispatch()->MsgSend(nuke);
@ -296,7 +300,7 @@ void plKeyImp::UnRefObject(plRefFlags::Type flags)
} }
hsKeyedObject* plKeyImp::SetObjectPtr(hsKeyedObject* p) hsKeyedObject* plKeyImp::SetObjectPtr(hsKeyedObject* p)
{ {
hsKeyedObject* retVal = nil; hsKeyedObject* retVal = nil;
// If our object is the only one with a ref to us, this function will crash, so we // If our object is the only one with a ref to us, this function will crash, so we
@ -317,7 +321,7 @@ hsKeyedObject* plKeyImp::SetObjectPtr(hsKeyedObject* p)
#endif #endif
hsAssert(!fObjectPtr, "Setting an ObjectPtr thats already Set!"); hsAssert(!fObjectPtr, "Setting an ObjectPtr thats already Set!");
retVal = fObjectPtr = p; retVal = fObjectPtr = p;
} }
else else
@ -329,20 +333,20 @@ hsKeyedObject* plKeyImp::SetObjectPtr(hsKeyedObject* p)
retVal = nil; retVal = nil;
} }
return retVal; return retVal;
} }
void plKeyImp::ClearNotifyCreated() void plKeyImp::ClearNotifyCreated()
{ {
for (int i = 0; i < fNotifyCreated.GetCount(); i++) for (int i = 0; i < fNotifyCreated.GetCount(); i++)
hsRefCnt_SafeUnRef(fNotifyCreated[i]); hsRefCnt_SafeUnRef(fNotifyCreated[i]);
fNotifyCreated.Reset(); fNotifyCreated.Reset();
fNotified.Reset(); fNotified.Reset();
fActiveRefs.Reset(); fActiveRefs.Reset();
} }
void plKeyImp::AddNotifyCreated(plRefMsg* msg, plRefFlags::Type flags) void plKeyImp::AddNotifyCreated(plRefMsg* msg, plRefFlags::Type flags)
{ {
if (!(flags == plRefFlags::kPassiveRef)) if (!(flags == plRefFlags::kPassiveRef))
{ {
#ifdef LOG_ACTIVE_REFS #ifdef LOG_ACTIVE_REFS
@ -358,13 +362,13 @@ void plKeyImp::AddNotifyCreated(plRefMsg* msg, plRefFlags::Type flags)
} }
hsRefCnt_SafeRef(msg); hsRefCnt_SafeRef(msg);
fNotifyCreated.Append(msg); fNotifyCreated.Append(msg);
} }
void plKeyImp::RemoveNotifyCreated(int i) void plKeyImp::RemoveNotifyCreated(int i)
{ {
hsRefCnt_SafeUnRef(fNotifyCreated[i]); hsRefCnt_SafeUnRef(fNotifyCreated[i]);
fNotifyCreated.Remove(i); fNotifyCreated.Remove(i);
fNotified.RemoveBit(i); fNotified.RemoveBit(i);
fActiveRefs.RemoveBit(i); fActiveRefs.RemoveBit(i);
@ -536,9 +540,9 @@ void plKeyImp::NotifyCreated()
hsKeyedObject* ko = GetObjectPtr(); hsKeyedObject* ko = GetObjectPtr();
hsRefCnt_SafeRef(ko); hsRefCnt_SafeRef(ko);
hsAssert(ko, "Notifying of created before on nil object"); hsAssert(ko, "Notifying of created before on nil object");
INotifySelf(ko); INotifySelf(ko);
for (int i = 0; i < GetNumNotifyCreated(); i++) for (int i = 0; i < GetNumNotifyCreated(); i++)
{ {
if (!IsNotified(i) && GetNotifyCreated(i)->GetReceiver(0)->GetObjectPtr()) if (!IsNotified(i) && GetNotifyCreated(i)->GetReceiver(0)->GetObjectPtr())
@ -552,7 +556,7 @@ void plKeyImp::NotifyCreated()
SetNotified(i); SetNotified(i);
SatisfyPending(msg); SatisfyPending(msg);
plgDispatch::MsgSend(msg); plgDispatch::MsgSend(msg);
} }
} }
hsRefCnt_SafeUnRef(ko); hsRefCnt_SafeUnRef(ko);
@ -645,7 +649,7 @@ void plKeyImp::IRelease(plKeyImp* iTargetKey)
iTargetKey->IClearRefs(); iTargetKey->IClearRefs();
iTargetKey->ClearNotifyCreated(); iTargetKey->ClearNotifyCreated();
plKey key = plKey::Make(iTargetKey); plKey key = plKey::Make(iTargetKey);
plSelfDestructMsg* nuke = new plSelfDestructMsg(key); plSelfDestructMsg* nuke = new plSelfDestructMsg(key);
plgDispatch::Dispatch()->MsgSend(nuke); plgDispatch::Dispatch()->MsgSend(nuke);

3
Sources/Plasma/NucleusLib/pnKeyedObject/plKeyImp.h

@ -53,6 +53,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
//------------------------------------ //------------------------------------
class plKeyImp : public plKeyData class plKeyImp : public plKeyData
{ {
private:
static hsKeyedObject* SafeGetObject(const plKeyImp* key);
public: public:
plKeyImp(); plKeyImp();
plKeyImp(plUoid, uint32_t pos,uint32_t len); plKeyImp(plUoid, uint32_t pos,uint32_t len);

Loading…
Cancel
Save