public inbox for archer@sourceware.org
 help / color / mirror / Atom feed
* How to distinguish inheritance from containment?
@ 2009-07-01 20:38 Paul Pluzhnikov
  2009-07-01 20:52 ` Richard Ward
  0 siblings, 1 reply; 8+ messages in thread
From: Paul Pluzhnikov @ 2009-07-01 20:38 UTC (permalink / raw)
  To: archer; +Cc: ppluzhnikov

Greetings,

Consider this source:

--- cut ---
struct foo {
  int x;
};

struct is_a_foo : public foo {
  int y;
};

struct has_a_foo {
  foo f;
  int z;
};

int main()
{
  is_a_foo a;
  has_a_foo b;

  return a.x + b.f.x;
}
--- cut ---

Suppose I want to define a pretty printer for anything that "is a foo",
but which should not apply to things which "contain a foo" as the first
field.

The only way I figured out how to do this currently feels very "hacky":
(assume gdb.Value('a') is bound to python variable a).

  field0 = a.type.fields()[0]
  if "foo" == field0.name and "foo" == str(field0.type):
    print "is a foo"

In addition, above test is not fool-proof: if I rename 'f' member of
has_a_foo to 'foo':

  struct has_a_foo {
    struct foo foo;
    int z;
  };

then above test answers 'is a foo' for 'b' as well.

Would adding an 'inherited' pre-defined attribute to gdb.Field be a bad idea?
It would make 'is a foo' determination straightforward:

  if "foo" == str(field0.type) and field0.inherited:
    print "is a foo"


I'll send a patch if y'all think this is reasonable.

Thanks,
--
Paul Pluzhnikov

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2009-07-06 19:20 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-07-01 20:38 How to distinguish inheritance from containment? Paul Pluzhnikov
2009-07-01 20:52 ` Richard Ward
2009-07-01 21:05   ` Paul Pluzhnikov
2009-07-01 22:25     ` Richard Ward
2009-07-06 19:20       ` Tom Tromey
2009-07-02 17:20   ` Tom Tromey
2009-07-02 17:29     ` Paul Pluzhnikov
2009-07-02 18:50     ` Richard Ward

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).