Skip to content
Snippets Groups Projects
Commit b1134730 authored by Sebastian Eibl's avatar Sebastian Eibl
Browse files

marked memory unsafe add function deprecated

parent f4b9a8d6
No related merge requests found
...@@ -131,7 +131,7 @@ public: ...@@ -131,7 +131,7 @@ public:
//**Add/Remove functions************************************************************************ //**Add/Remove functions************************************************************************
/*!\name Add/Remove functions */ /*!\name Add/Remove functions */
//@{ //@{
inline RigidBody& add ( BodyID body ); [[deprecated]] inline RigidBody& add ( BodyID body );
inline RigidBody& add ( std::unique_ptr<RigidBody>&& body ); inline RigidBody& add ( std::unique_ptr<RigidBody>&& body );
inline iterator remove ( const id_t sid ); inline iterator remove ( const id_t sid );
inline iterator remove ( BodyID body ); inline iterator remove ( BodyID body );
......
...@@ -54,18 +54,21 @@ int main( int argc, char** argv ) ...@@ -54,18 +54,21 @@ int main( int argc, char** argv )
MaterialID iron = Material::find("iron"); MaterialID iron = Material::find("iron");
{ {
BodyStorage storage; BodyStorage storage;
auto bd1 = new Body1(1, iron); auto bd1Ptr = std::make_unique<Body1>(1, iron);
auto bd2 = new Body2(2, iron); auto bd2Ptr = std::make_unique<Body2>(2, iron);
auto bd3 = new Body2(3, iron); auto bd3Ptr = std::make_unique<Body2>(3, iron);
auto bd4 = new Body2(4, iron); auto bd4Ptr = std::make_unique<Body2>(4, iron);
auto bd2 = bd2Ptr.get();
auto bd3 = bd3Ptr.get();
WALBERLA_CHECK_EQUAL(Body1::refCount, 1); WALBERLA_CHECK_EQUAL(Body1::refCount, 1);
WALBERLA_CHECK_EQUAL(Body2::refCount, 3); WALBERLA_CHECK_EQUAL(Body2::refCount, 3);
storage.add(bd1); storage.add(std::move(bd1Ptr));
storage.add(bd2); storage.add(std::move(bd2Ptr));
storage.add(bd3); storage.add(std::move(bd3Ptr));
storage.add(bd4); storage.add(std::move(bd4Ptr));
WALBERLA_CHECK_EQUAL(storage.size(), 4); WALBERLA_CHECK_EQUAL(storage.size(), 4);
WALBERLA_CHECK_EQUAL(Body1::refCount, 1); WALBERLA_CHECK_EQUAL(Body1::refCount, 1);
......
...@@ -148,8 +148,8 @@ int main( int argc, char** argv ) ...@@ -148,8 +148,8 @@ int main( int argc, char** argv )
MaterialID iron = Material::find("iron"); MaterialID iron = Material::find("iron");
BodyStorage storage; BodyStorage storage;
SphereID sphere = new Sphere(0, 0, Vec3(0,0,0), Vec3(0,0,0), Quat(), 1, iron, false, true, false); SpherePtr spPtr = std::make_unique<Sphere>(0, 0, Vec3(0,0,0), Vec3(0,0,0), Quat(), 1, iron, false, true, false);
storage.add(sphere); SphereID sphere = static_cast<SphereID>(&storage.add(std::move(spPtr)));
Vec3 x0 = Vec3(-2,2,0); Vec3 x0 = Vec3(-2,2,0);
Vec3 v0 = Vec3(-1,-1,1); Vec3 v0 = Vec3(-1,-1,1);
......
...@@ -60,7 +60,7 @@ int main( int argc, char** argv ) ...@@ -60,7 +60,7 @@ int main( int argc, char** argv )
math::seedRandomGenerator(1337); math::seedRandomGenerator(1337);
for (uint_t i = 0; i < 100; ++i) for (uint_t i = 0; i < 100; ++i)
storage[0].add( new Sphere(UniqueID<Sphere>::createGlobal(), 0, Vec3( math::realRandom(real_c(0), real_c(10)), math::realRandom(real_c(0), real_c(10)), math::realRandom(real_c(0), real_c(10))), Vec3(0,0,0), Quat(), 1, iron, false, false, false) ); storage[0].add( std::make_unique<Sphere>(UniqueID<Sphere>::createGlobal(), 0, Vec3( math::realRandom(real_c(0), real_c(10)), math::realRandom(real_c(0), real_c(10)), math::realRandom(real_c(0), real_c(10))), Vec3(0,0,0), Quat(), 1, iron, false, false, false) );
sccd.generatePossibleContacts(); sccd.generatePossibleContacts();
...@@ -84,14 +84,14 @@ int main( int argc, char** argv ) ...@@ -84,14 +84,14 @@ int main( int argc, char** argv )
bs.clear(); bs.clear();
bs.add( new Sphere(UniqueID<Sphere>::createGlobal(), 0, Vec3( math::realRandom(real_c(0), real_c(10)), math::realRandom(real_c(0), real_c(10)), math::realRandom(real_c(0), real_c(10))), Vec3(0,0,0), Quat(), 1, iron, false, false, false) ); bs.add( std::make_unique<Sphere>(UniqueID<Sphere>::createGlobal(), 0, Vec3( math::realRandom(real_c(0), real_c(10)), math::realRandom(real_c(0), real_c(10)), math::realRandom(real_c(0), real_c(10))), Vec3(0,0,0), Quat(), 1, iron, false, false, false) );
WcTimingPool pool; WcTimingPool pool;
for (int runs = 0; runs < 10; ++runs) for (int runs = 0; runs < 10; ++runs)
{ {
auto oldSize = bs.size(); auto oldSize = bs.size();
for (uint_t i = 0; i < oldSize; ++i) for (uint_t i = 0; i < oldSize; ++i)
bs.add( new Sphere(UniqueID<Sphere>::createGlobal(), 0, Vec3( math::realRandom(real_c(0), real_c(10)), math::realRandom(real_c(0), real_c(10)), math::realRandom(real_c(0), real_c(10))), Vec3(0,0,0), Quat(), 0.5, iron, false, false, false) ); bs.add( std::make_unique<Sphere>(UniqueID<Sphere>::createGlobal(), 0, Vec3( math::realRandom(real_c(0), real_c(10)), math::realRandom(real_c(0), real_c(10)), math::realRandom(real_c(0), real_c(10))), Vec3(0,0,0), Quat(), 0.5, iron, false, false, false) );
pool["SCCD"].start(); pool["SCCD"].start();
sccd.generatePossibleContacts(); sccd.generatePossibleContacts();
pool["SCCD"].end(); pool["SCCD"].end();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment