Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix World Concurrency #577

Merged
merged 3 commits into from
Jan 3, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions dart/dynamics/Entity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ void Entity::changeParentFrame(Frame* _newParentFrame)

const Frame* oldParentFrame = mParentFrame;

if (!mAmQuiet && nullptr != mParentFrame)
if (!mAmQuiet && nullptr != mParentFrame && !mParentFrame->isWorld())
{
// If this entity has a parent Frame, tell that parent that it is losing
// this child
Expand All @@ -432,8 +432,13 @@ void Entity::changeParentFrame(Frame* _newParentFrame)

if (!mAmQuiet && nullptr != mParentFrame)
{
mParentFrame->mChildEntities.insert(this);
mParentFrame->processNewEntity(this);
if(!mParentFrame->isWorld())
{
// The WorldFrame should not keep track of its children, or else we get
// concurrency issues (race conditions).
mParentFrame->mChildEntities.insert(this);
mParentFrame->processNewEntity(this);
}
notifyTransformUpdate();
}

Expand Down
5 changes: 3 additions & 2 deletions dart/dynamics/Frame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ void Frame::changeParentFrame(Frame* _newParentFrame)
}
}

if(mParentFrame)
if(mParentFrame && !mParentFrame->isWorld())
{
FramePtrSet::iterator it = mParentFrame->mChildFrames.find(this);
if(it != mParentFrame->mChildFrames.end())
Expand All @@ -568,8 +568,9 @@ void Frame::changeParentFrame(Frame* _newParentFrame)
return;
}

if(!mAmQuiet)
if(!mAmQuiet && !_newParentFrame->isWorld())
_newParentFrame->mChildFrames.insert(this);

Entity::changeParentFrame(_newParentFrame);
}

Expand Down
90 changes: 90 additions & 0 deletions unittests/testConcurrency.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
/*
* Copyright (c) 2015, Georgia Tech Research Corporation
* All rights reserved.
*
* Author(s): Michael X. Grey <mxgrey@gatech.edu>
*
* Georgia Tech Graphics Lab and Humanoid Robotics Lab
*
* Directed by Prof. C. Karen Liu and Prof. Mike Stilman
* <karenliu@cc.gatech.edu> <mstilman@cc.gatech.edu>
*
* This file is provided under the following "BSD-style" License:
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/

#include <chrono>
#include <future>

#include <gtest/gtest.h>

#include "dart/simulation/World.h"

#include "TestHelpers.h"

using namespace dart;
using namespace dynamics;

//==============================================================================
void createAndDestroyFrames(int threadNum)
{
for(size_t i=0; i < 100; ++i)
{
EXPECT_EQ(Frame::World()->getNumChildEntities(), 0);
EXPECT_EQ(Frame::World()->getNumChildFrames(), 0);

SimpleFrame someFrame(Frame::World(),
"Frame_"+std::to_string(threadNum)+std::to_string(i));

EXPECT_EQ(Frame::World()->getNumChildEntities(), 0);
EXPECT_EQ(Frame::World()->getNumChildFrames(), 0);
}
}

//==============================================================================
TEST(Concurrency, FrameDeletion)
{
// Regression test for issue #576
std::vector<std::future<void>> futures;
for(size_t i=0; i < 10; ++i)
futures.push_back(std::async(std::launch::async,
&createAndDestroyFrames, i));

for(size_t i=0; i < futures.size(); ++i)
{
EXPECT_EQ(Frame::World()->getNumChildEntities(), 0);
EXPECT_EQ(Frame::World()->getNumChildFrames(), 0);
futures[i].get();
}

EXPECT_EQ(Frame::World()->getNumChildEntities(), 0);
EXPECT_EQ(Frame::World()->getNumChildFrames(), 0);
}

//==============================================================================
int main(int argc, char* argv[])
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}