Breaking Dependencies: Type Erasure - A Design Analysis - Klaus Iglberger - CppCon 2021

  Рет қаралды 32,339

CppCon

CppCon

2 жыл бұрын

cppcon.org/
github.com/CppCon/CppCon2021
---
This session is part of the Software Design Track.
“If I could go back in time and had the power to change C++, rather than adding virtual function, I would add language support for type erasure …” (Eric Niebler, June 19, 2020, Twitter).
For many developers type erasure is superior to inheritance. And indeed, it has proven itself to be a powerful design pattern, helping to significantly reduce coupling between software entities.
This talk will give a short introduction to type erasure, with a particular focus on the design aspect of the technique. After attending this session, attendees will understand why type erasure provides such a strong decoupling and why this makes it superior to inheritance in terms of dependency management.
---
Klaus Iglberger
Freelancer
C++ Trainer/Consultant
Klaus Iglberger is a freelancing C++ trainer and consultant. He has finished his PhD in computer science in 2010 and since then is focused on large-scale C++ software design. He shares his experience in popular advanced C++ courses around the world (mainly in Germany, but also the EU and US). Additionally, he is the initiator and lead designer of the Blaze C++ math library (bitbucket.org/blaze-lib/blaze...) and one of the organizers of the Munich C++ user group (www.meetup.com/MUCplusplus/).
---
Videos Streamed & Edited by Digital Medium: online.digital-medium.co.uk
Register Now For CppCon 2022: cppcon.org/registration/

Пікірлер: 86
@bunpasi
@bunpasi 2 жыл бұрын
Klaus is capable of giving so much information in such a short amount of time without being overwhelming. You know a talk is going to be great if he gives it.
@ShaunStruwig
@ShaunStruwig Жыл бұрын
Klaus repeatedly saying "However... we're not happy!" and continuing to strive for the ultimate perfection... he's definitely a German! :D
@xiaofansun4873
@xiaofansun4873 Жыл бұрын
Nice talk! This is the most beautiful solution I have ever seen to solve the problem of a large number of class inheritances. Thanks, Klaus!
@MaitreBart
@MaitreBart 2 жыл бұрын
I see that you end up with different native functions accepting (const-ref to) "leaf" classes (like Circle, Square). Those "strategy" functions will need to access member data indirectly via "getters", i.e. one getter per data member. I always found that classes filled with getters somehow breaks encapsulation. For classes as simple as circle and square, it's no big deal. But for more complex classes involving multiple data members, you will end up revealing several specific implementation details via those getters. I know TE wants to solve a problem, but it seems to do so at the cost of breaking encapsulation (i.e., revealing implementation details) of the fundamental classes. Fell free to share you opinions.
@pabstkkx
@pabstkkx 2 жыл бұрын
As always great talk. Thanks Klaus!
@manuwhale
@manuwhale Жыл бұрын
Klaus gives us an elegant and very comprehensive speech, as always!
@gonzajuarez4918
@gonzajuarez4918 10 ай бұрын
ahhhhh so THIS is type-erasure. I've always called it one of: - "the way C++ does dynamic dispatch like Common Lisp's defgeneric/defmethod" - "The thing Sean Parent introduces in that talk". This is MUCH shorter. Thanks, great talk, great explanation
@WilhelmDrake
@WilhelmDrake Жыл бұрын
Dear Mr. Klaus, you are a excellent teacher. This lecture indeed brought a smile to my face. Thank you.
@puyadaravi3109
@puyadaravi3109 2 жыл бұрын
Thanks Klaus this was a pleasure to watch! It is one of my favorite topics as well for the same reason.
@CppCon
@CppCon 2 жыл бұрын
Great to hear!
@SamWhitlock
@SamWhitlock 2 жыл бұрын
External polymorphism seems to be what other languages have landed on, e.g. Go's interfaces or Haskell's typeclasses. It makes so much sense to not tightly couple data inheritance with functionality inheritance (what we get with virtual functions), as the former is not always needed. This is definitely my favorite type erasure talk this far!
@NaveenB13m
@NaveenB13m Жыл бұрын
Thanks Klaus. Clear presentation of a beautiful idea. This motivates me to watch rest of Kluas' talks as well.
@CppCon
@CppCon Жыл бұрын
Very pleased to hear that you are inspired to watch further presentations.
@wangcwy
@wangcwy 7 ай бұрын
This is such a great video on c++ design patterns! ❤
@jthrush
@jthrush 2 жыл бұрын
Wow, this solves a problem I just encountered yesterday and used ugly void* casting. What perfect timing!
@lakkadbrijesh5727
@lakkadbrijesh5727 2 жыл бұрын
Excited
@johnabrossimow
@johnabrossimow Ай бұрын
33:19 For those who missed, draw and serialize are implemented as free functions, which are referenced in the shape concept class polymorphically.
@kimhyunpil
@kimhyunpil Жыл бұрын
Amazing talk!
@MarcoBergamin
@MarcoBergamin Жыл бұрын
Amazing talk
@immanuellitzroth1905
@immanuellitzroth1905 2 жыл бұрын
Seems to me if you're going to critique the simple inheritance model for having MetalBigEndianCircle *and* MetalLittleEndianCircle your final solution should support that too.
@sorushkhajepor8735
@sorushkhajepor8735 2 жыл бұрын
Great pattern, and presented so easy to grasp.
@CppCon
@CppCon 2 жыл бұрын
Glad it was helpful!
@MeisamRivers
@MeisamRivers 6 ай бұрын
26:00 "std::variant is the opposite of type erasure. std::variant [gives you] a closed set of types and an open set of operations. Type Erasure gives you an open set of types and a close set of operations. "
@CacheTaFace
@CacheTaFace 2 жыл бұрын
The answer was pod structs and free functions all along!
@peterevans6752
@peterevans6752 2 жыл бұрын
Good talk on the merits in addition to the mechanics of Type Erasure! I wonder how the proposed "Deduce This pattern" helps or interacts with Type Erasure.
@GrzegorzMilka
@GrzegorzMilka 2 жыл бұрын
Amazing. This design pattern brings efficient existential types to the C++ world. Nicely presented as well.
@CppCon
@CppCon 2 жыл бұрын
Many thanks!
@AleifrLeifrson
@AleifrLeifrson Жыл бұрын
If Klaus was a professor at my university, I would have taken all his classes!
@zbyniowicz
@zbyniowicz Жыл бұрын
I am inspired!
@bboysil
@bboysil 2 жыл бұрын
Excelent talk!
@CppCon
@CppCon 2 жыл бұрын
Glad you enjoyed it
@ajayjadhav900
@ajayjadhav900 8 ай бұрын
Where could I get the PPT of the above presentation?
@MSK_MKT
@MSK_MKT 2 жыл бұрын
This is great, and I can't agree more that using inheritance as interface is one of the worst mistakes one can make in library design.
@pawello87
@pawello87 Жыл бұрын
The 'draw' and 'serialize' functions from the 'Shape' class should have example parameters entered instead of /*...*/. Eg another TE wrapper, 'Renderer'. Without it, you can't see at first glance how 'Shape' allows you to choose/change an implementation (which is easily noticeable when using a Strategy pattern).
@edobez
@edobez Жыл бұрын
I’m in fact trying to understand where the actual strategies would fit here
@odedkadshai
@odedkadshai 2 жыл бұрын
wonderful talk, i think external polymorphism is similar to crtp
@matiasgrioni292
@matiasgrioni292 Жыл бұрын
Type erasure is great, but the final solution makes no mention of the original problem, which is namely using OpenGL or other graphics libraries with this shape ontology. It seems like as presented, this is really only solving half the problem which is that the Shape hierarchy is totally separate from the drawing hierarchy. But how to combine the drawing hierarchy in, is never explicitly explained in the final solution. There are a few that make sense to me (having an IRenderer interface, having n*m free functions like draw(const Circle&, OpenGlRenderer), draw(const Circle&, MetalRenderer&), draw(const Square&, OpenGlRenderer), etc). I believe the solution is there, but the presenter really should have gone the extra step to fully prove it.
@edobez
@edobez Жыл бұрын
I agree with you. For the first solution that you proposed (IRenderer), don’t we fall into the same hierarchy problems?
@adrielsantos1271
@adrielsantos1271 2 жыл бұрын
awesome!
@CppCon
@CppCon 2 жыл бұрын
Thanks!
@chandrasekharanm6236
@chandrasekharanm6236 2 жыл бұрын
This is the first talk I've listened to on Type Erasure and Klaus beautifully lays down the concepts. Can you provide a link to the slides or the code used in the slides? PS : The description has a link to the repo for CppCon2020 and not 2021.
@CppCon
@CppCon 2 жыл бұрын
Thank you for bringing this to our attention. We are in the process of remedying this incorrect link.
@razvanciochina3266
@razvanciochina3266 Жыл бұрын
@@CppCon Any news on this?
@artemfediai7206
@artemfediai7206 4 ай бұрын
@@CppConany news on that?
@raymitchell9736
@raymitchell9736 2 жыл бұрын
Hi Klaus, the C++ community, and CppCon... I am trying to follow along with your slides and implement this toy as exploration into a design I'm working on. For this, I'm sticking with the same code structure, just changing the names to look more like my application. What I am running into is a compiler error I don't understand (MS Visual Studio 2019, uses C++14) And it doesn't like it when I instantiate the "shape" class with a, say a "circle" (again I'm using different names). The complaint is where I am instantiating the pimple in the templated constructor (introduced at 35:29 in the video) pimpl { new Model(x) } And I get "error C2664: 'Shape::Model::Model(T &&)': Can't convert argument 1 from 'const T' to 'T &&' on the line... What am I missing? You mentioned some other resources where you (or others) go into details of this implementation in other talks, but not in the notes in show notes. Hope you can point out my issue or point me to where the discussion is more details. Thanks in advance!
@kjhgaseiyufbef1604
@kjhgaseiyufbef1604 2 жыл бұрын
in a sibling comment hung biu suggests using Model::template Model(U&& u)
@user-wy4lm9qt9l
@user-wy4lm9qt9l 2 жыл бұрын
at 29:15, why is the T&& passed to the ShapeModel constructor a rvalue reference? I thought it's a forwarding/universal reference, because it's a template with double &
@binary132
@binary132 2 ай бұрын
It means the ownership is being transferred into the ShapeModel.
@stef3232
@stef3232 2 жыл бұрын
Thanks for the great talk! I gave it a shot and tried to implement the example. However, the constructor of ShapeModel with T&& and std::forward did not work for me. Instead, I tried a T const& without std::forward, as you described in earlier talks. That did work just fine. The error was "cannot bind rvalue reference of type 'Circle&&' to lvalue of type 'const Circle'. Is the code shown on the slides actually working, or did I mess up?
@ww-hc3qz
@ww-hc3qz 2 жыл бұрын
you are right,
@hungbiu8609
@hungbiu8609 2 жыл бұрын
Change Model ctor to a templated ctor with additional type parameter like "Model::template Model(U&& u)". The problem is that given a concrete type argument Circle for class template Model, the ctor shown in the slides will be instantiated as "Model::Model(Circle&&)", hence it won't accept anything other than rvalue (yes the ctor shown in the slide is broken). However, if the Model ctor is supplied with another type parameter U, then compiler could substitute U with "const Circle" and instantiate the ctor as intented like this: "Model::template Model(const Circle&)". A forwarding reference should be independently deduced.
@kjhgaseiyufbef1604
@kjhgaseiyufbef1604 2 жыл бұрын
You have to use a forwarding constructor with universal references and std::forward the arguments. However, if the forwarding constructor is templated, you also need to restrict it to work on all types except the type of the class, so that it doesn't shadow the copy constructor in overload resolution.
@MikeDavies621
@MikeDavies621 2 жыл бұрын
Is the example code from this talk available anywhere ? I can#t get the examples in the .pdf to compile and I'm pulling my hair out...
@colugo5172
@colugo5172 2 жыл бұрын
thank you
@CppCon
@CppCon 2 жыл бұрын
You're welcome
@KobiCohenArazi
@KobiCohenArazi Жыл бұрын
OMG, I see Dr. Douglas Schmidt here :)
@User-cv4ee
@User-cv4ee Жыл бұрын
A question on the templated constructor. What if the constructor for Circle take a single parameter radius, but the Square constructor takes two, width and the height?
@edobez
@edobez Жыл бұрын
Did you find an answer for that?
@habits12
@habits12 11 ай бұрын
You pass to shape constructor a concrete shape concept instance. You will fully construct a square with two parameters and pass it to shape, or circle with one parameter. Does it answer your question?
@player-eric
@player-eric Жыл бұрын
Hi, guys! What design patterns are used in Type Erasure?
@jimhewes7507
@jimhewes7507 11 күн бұрын
Ok, so I have a collection of Shape objects including shapes like Circle, Square and Triangle. Now I want to find the average radius of all the Circle objects. How do I do that? I'll need to loop over all the Shape objects in the collection. I don't want to have to put a GetRadius() function in the ShapeConcept class because it's irrelevant to the Square and Triangle classes. Some functions are common to all Shapes like draw() and serialize() but some are specific to a particular Shape. I may want to use those functions. Not easy to do with this type erasure pattern.
@hungbiu8609
@hungbiu8609 2 жыл бұрын
Also recommend checking out the talk "Runtime Polymorphism: Back to the Basics" from Louis Dionne who is the author of dyno
@Swedishnbkongu
@Swedishnbkongu 2 жыл бұрын
And Sean Parents talk (on which o think Louis' is based or credits), better code: polymorphism
@WalderFrey
@WalderFrey Жыл бұрын
Great talk but doesn't compile (in VS2022 at least). It can't find the free functions for draw() and serialize(). If you rename these functions in ShapeConcept, e.g. to serialize_ and draw_, the compiler seems happier. The templated constructor for Shape doesn't appear to work either when you take the const lvalue reference, but seems happier with a forwarding reference.
@jamesbond0705
@jamesbond0705 Жыл бұрын
For your problems (name-hiding and binding const lvalue ref to rvalue), the speaker corrects them in his 2022 CppCon talk. Please check P.19 and P.29 of cppcon.b-cdn.net/wp-content/uploads/2022/09/Type-Erasure-The-Implementation-Details-Klaus-Iglberger-CppCon-2022.pdf
@zy.x8572
@zy.x8572 2 жыл бұрын
This technique is widely used in std, such as std::shared_ptr, std::function, etc.
@liveonphoenix5045
@liveonphoenix5045 Жыл бұрын
How can I invoke the overridden clone() member function of the ShapeModel class, and who is responsible for calling it? Can you assist me in comprehending this?
@ianliu88
@ianliu88 2 жыл бұрын
Is this technique equivalent to type traits in rust?
@pushqrdx
@pushqrdx Жыл бұрын
90% sure it is, or at least they achieve the same means, i am not sure about implementation details
@meowsqueak
@meowsqueak Жыл бұрын
This seems very interesting but I’m having trouble reconciling both parts of the talk. The first part talks about a pattern for decoupling dependencies, via the Strategy pattern, and the second part presents a type erasure solution that is useful for collections of objects of different types that collectively conform to some interface. Where does the drawing strategy (e.g. OpenGL or Vulcan) fit into the TE design? Is the strategy passed into the Shape Draw function? How do the specific details of the actual shape (e.g. radius for circle) end up being accessible to an actual draw implementation? Or to swap it around, how does a Circle (which we can’t change) know anything about how to use, say, an OpenGL context to draw itself? I don’t see how erasing the type helps solve the original problem of decoupling the dependencies. What am I missing?
@jimhewes7507
@jimhewes7507 11 күн бұрын
I think type erasure is not a very good name for it. I think it's really just an inverse bridge pattern. The type is still there. But the type now just applies to the implementation (the functions) rather than to the data (the structure, Circle, Square.) In the bridge pattern we've handed to the class the implementation it should use. In "type erasure", or inverse bridge, we've handed to the implementation the class or data it should use. So now we're passing around a ShapeConcept (OpenGL or Vulcan) with a Circle inside of it instead of passing around a Circle (i.e. its base class Shape) with an OpenGL or Vulcan implementation inside of it. What's the difference? I wondered that myself. But I think the important thing is that a type is better identified as what implementation or interface it supports than what data it has. So we separate out the data by (inverse bridge pattern) and just identify the type by it's implementation. When we pass a thing to a function we typically only want to know what functions it supports. So it's better when a type tells you what the implementation is rather than what the data is.
@ozanberkkaya151
@ozanberkkaya151 10 ай бұрын
Slides are not in your Github page. I cannot access it.
@pedromiguelareias
@pedromiguelareias Жыл бұрын
Since the number of shape types is known at compile time, why not a tuple of vectors of shapes? In addition, non-instrusive serialization libraries are available, e.g. CEREAL.
@origamibulldoser1618
@origamibulldoser1618 Жыл бұрын
Hm. "We dont have to deal with inheritance anymore". We still have virtual dispatch, dpnt we?
@PedroOliveira-sl6nw
@PedroOliveira-sl6nw Жыл бұрын
Gonna totally make a better example than shapes
@francisgrizzlysmit4715
@francisgrizzlysmit4715 Жыл бұрын
awesome but I'm worried that it has pimples , have to squeeze the pus out of them lol🤠 seriously completely blown away took a bit of concentration but it's really obvious when you get it
@francisgrizzlysmit4715
@francisgrizzlysmit4715 Жыл бұрын
really clever love the loose coupling
@NXTangl
@NXTangl Жыл бұрын
This appears to be almost exactly a C++ implementation of the Rust trait system's fat-pointer type erasure.
@Bbdu75yg
@Bbdu75yg 11 ай бұрын
Why not use variant instead of type erasure ?
@yldrmcs
@yldrmcs Жыл бұрын
Unfortunately I don’t see any “beauty” in this implementation because this still requires us to write boilerplate code and I don’t want to use any library for such simple things that a language is supposed to provide.
@lexer_
@lexer_ 2 жыл бұрын
Interesting topic, incredibly slow delivery. This could've easily fit into 20 minutes just like the first talk about the topic he mentioned.
@kjhgaseiyufbef1604
@kjhgaseiyufbef1604 2 жыл бұрын
1) he is not a native speaker; 2) many viewers are not native speakers; 3) this is supposed to be an talk for most levels of knowledge and intellect; 4) I listened to this on 1.5 just fine, it's easier to speed it up than to pause and go back constantly
@razvanciochina3266
@razvanciochina3266 Жыл бұрын
Found the slides here: cppcon.digital-medium.co.uk/wp-content/uploads/2021/09/Type-Erasure-A-Design-Analysis.pdf Don't have the code though, but you can whip something up from the slides. I wish we had some working code too look at though.
@kurtischarnock4304
@kurtischarnock4304 Жыл бұрын
Hero
@godDIEmanLIVE
@godDIEmanLIVE Жыл бұрын
Amazing talk, amazing concept. Sadly it reveals how shit C++ really is. You have to jump through hoops and do a lot of bainfuckery to achieve a very simple goal: tricking your compiler into doing what you want it to do. Newer languages, that don't waste your time as much, seem to support a lot of this stuff out of the box.
Monster dropped gummy bear 👻🤣 #shorts
00:45
Yoeslan
Рет қаралды 12 МЛН
Barriga de grávida aconchegante? 🤔💡
00:10
Polar em português
Рет қаралды 49 МЛН
Glow Stick Secret (part 2) 😱 #shorts
00:33
Mr DegrEE
Рет қаралды 42 МЛН
Two Ways To Do Dynamic Dispatch
19:54
Logan Smith
Рет қаралды 68 М.
Back to Basics: Classic STL - Bob Steagall - CppCon 2021
1:01:31
Back to Basics: Exceptions - Klaus Iglberger - CppCon 2020
1:01:45
Купите ЭТОТ БЮДЖЕТНИК вместо флагманов от Samsung, Xiaomi и Apple!
13:03
Thebox - о технике и гаджетах
Рет қаралды 63 М.
Fiber kablo
0:15
Elektrik-Elektronik
Рет қаралды 5 МЛН
Внутренности Rabbit R1 и AI Pin
1:00
Кик Обзор
Рет қаралды 2,1 МЛН
Introducing GPT-4o
26:13
OpenAI
Рет қаралды 3,4 МЛН