dev: Fix ethernet device inheritance structure

The Python wrappers and the C++ should have the same object
structure. If this is not the case, bad things will happen when the
SWIG wrappers cast between an object and any of its base classes. This
was not the case for NSGigE and Sinic devices. This patch makes NSGigE
and Sinic inherit from the new EtherDevBase class, which in turn
inherits from EtherDevice. As a bonus, this removes some duplicated
statistics from the Sinic device.
This commit is contained in:
Andreas Sandberg
2012-11-02 11:32:01 -05:00
parent c0ab52799c
commit df02047d5a
6 changed files with 42 additions and 196 deletions

View File

@@ -39,6 +39,7 @@
#include "base/statistics.hh"
#include "dev/pcidev.hh"
#include "params/EtherDevice.hh"
#include "params/EtherDevBase.hh"
#include "sim/sim_object.hh"
class EtherInt;
@@ -120,4 +121,31 @@ class EtherDevice : public PciDev
Stats::Scalar droppedPackets;
};
/**
* Dummy class to keep the Python class hierarchy in sync with the C++
* object hierarchy.
*
* The Python object hierarchy includes the EtherDevBase class which
* is used by some ethernet devices as a way to share common
* configuration information in the generated param structs. Since the
* Python hierarchy is used to generate a SWIG interface for all C++
* SimObjects, we need to reflect this in the C++ object hierarchy. If
* we don't, SWIG might end up doing 'bad things' when it down casts
* ethernet objects to their base class(es).
*/
class EtherDevBase : public EtherDevice
{
public:
EtherDevBase(const EtherDevBaseParams *params)
: EtherDevice(params)
{}
const EtherDevBaseParams *
params() const
{
return dynamic_cast<const EtherDevBaseParams *>(_params);
}
};
#endif //__DEV_ETHERDEVICE_HH__