the expression problem
play

The Expression Problem Prof. Dr. Ralf Lmmel Universitt - PowerPoint PPT Presentation

The Expression Problem Prof. Dr. Ralf Lmmel Universitt Koblenz-Landau Software Languages Team Elevator speech Suppose you have some data variants (say apples and oranges) and you have some operations on such data (say


  1. The Expression Problem Prof. Dr. Ralf Lämmel Universität Koblenz-Landau Software Languages Team

  2. Elevator speech Suppose you have some data variants (say “apples” and “oranges”) and you have some operations on such data (say “drink” and “squeeze”), how would you go about the design of data and operations so that you can hopefully add new data variants and new operations later on? 2 (C) 2010-2015 Ralf Lämmel

  3. Expression problem: Why the name? • Consider such data: – Expressions as in programming languages: – Literals – Addition – … The name goes back to Phil Wadler who • Consider such operations: defined the expression problem in an – Pretty print expressions email sent to mailing lists and individuals – Evaluate expressions in November 1998. – … • Consider such extension scenarios: – Add another expression form • Cases for all existing operations must be added. – Add another operation • Cases for all existing expression forms must be added. 3 (C) 2010-2015 Ralf Lämmel

  4. Expression problem: What problem? • In basic OO programming: – It is easy to add new data variants. – It is hard to add new operations. 4 (C) 2010-2015 Ralf Lämmel

  5. Data extensibility based on simple inheritance • class Expr : The base class of all expression forms • Virtual methods: • method prettyPrint : operation for pretty-printing • method evaluate : operation for expression evaluation • Subclasses: • class Lit : The expression form of "literals" • class Add : The expression form of "addition" • ... Data extensibility 5 (C) 2010-2015 Ralf Lämmel

  6. The class rooting all data variants /** * The base class of all expression forms */ public abstract class Expr { /* * Operation for pretty printing */ public abstract String prettyPrint(); /* * Operation for expression evaluation */ public abstract int evaluate(); } Beware of code bloat ! 6 (C) 2010-2015 Ralf Lämmel

  7. A class for a data variant /** * The expression form of "literals" (i.e., constants) */ public class Lit extends Expr { private int info; public int getInfo() { return info; } public void setInfo(int info) { this.info = info; } public String prettyPrint() { return Integer.toString(getInfo()); } public int evaluate() { return getInfo(); } } Beware of code bloat ! 7 (C) 2010-2015 Ralf Lämmel

  8. That is, another data variant but with the /** same operations. * The expression form of "addition" */ public class Add extends Expr { private Expr left, right; public Expr getLeft() { return left; } public void setLeft(Expr left) { this.left = left; } public Expr getRight() { return right; } public void setRight(Expr right) { this.right = right; } public String prettyPrint() { ... } public int evaluate() { return getLeft().evaluate() + getRight().evaluate(); } } Beware of code bloat ! 8 (C) 2010-2015 Ralf Lämmel

  9. That is, yet another data variant but, again, with /** the same operations. * The expression form of "negation" */ public class Neg extends Expr { private Expr expr; public Expr getExpr() { return expr; } public void setExpr(Expr expr) { this.expr = expr; } public String prettyPrint() { return "-(" + getExpr().prettyPrint() + ")"; } public int evaluate() { return - getExpr().evaluate(); } } Beware of code bloat ! 9 (C) 2010-2015 Ralf Lämmel

  10. Expression problem: What problem? • In basic OO programming: – It is easy to add new data variants. – It is hard to add new operations. • In OO programming with instance-of / cast: But – It is easy to add new operations. beware of – It is easy to add new data variants. programming errors 10 (C) 2010-2015 Ralf Lämmel

  11. Full (?) extensibility based on instance-of tests and type casts • We use instanceof tests and casts to dispatch functionality on data. • We use a specific exception and try-catch blocks to extend operations. • We encapsulate operations in objects so that extensions are self-aware. • This is approach is weakly typed . • In particular, there is no guarantee that we have covered all cases. 11 (C) 2010-2015 Ralf Lämmel

  12. Domain classes are nothing but data capsules. public abstract class Expr { } public class Lit extends Expr { private int info; public int getInfo() { return info; } public void setInfo(int info) { this.info = info; } } public class Add extends Expr { private Expr left, right; public Expr getLeft() { return left; } public void setLeft(Expr left) { this.left = left; } public Expr getRight() { return right; } public void setRight(Expr right) { this.right = right; } } 12 (C) 2010-2015 Ralf Lämmel

  13. We simulate pattern matching by instanceof and cast. public class EvaluatorBase { public int evaluate(Expr e) { if (e instanceof Lit) { Lit l = (Lit)e; return l.getInfo(); } if (e instanceof Add) { Add a = (Add)e; return evaluate(a.getLeft()) + evaluate(a.getRight()); } throw new FallThrouhException(); } } We anticipate failure of such operations as a means to compose them. 13 (C) 2010-2015 Ralf Lämmel

  14. An extended operation first attempts the basic implementation. public class EvaluatorExtension extends EvaluatorBase { public int evaluate(Expr e) { try { return super.evaluate(e); } catch (FallThrouhException x) { if (e instanceof Neg) { Neg n = (Neg)e; return -evaluate(n.getExpr()); } throw new FallThrouhException(); } } Recursive calls are } properly dispatched through “this” to the extended operation. 14 (C) 2010-2015 Ralf Lämmel

  15. Expression problem: What problem? • In basic OO programming: – It is easy to add new data variants. Forthcoming ! – It is hard to add new operations. • In OO programming with visitors : – It is easy to add new operations. – It is hard to add new data variants. • In OO programming with instance-of / cast: – It is easy to add new operations. – It is easy to add new data variants. 15 (C) 2010-2015 Ralf Lämmel

  16. Operation extensibility based on visitors PREVIEW • class Expr : The base class of all expression forms • Subclasses as before . • Virtual methods: • Accept a visitor (“apply an operation”) • Visitors: • class PrettyPrinter : operation for pretty-printing • class Evaluator : operation for expression evaluation • ... Operation extensibility 16 (C) 2010-2015 Ralf Lämmel

  17. The Visitor Pattern

  18. A book recommendation (C) 2010-2015 Prof. Dr. Ralf Lämmel, Universität Koblenz-Landau (where applicable)

  19. Elevator speech Q : How can we add functionality to a given (perhaps even closed) class hierarchy such that behavior can vary across concrete classes? A : Represent an operation to be performed on the elements of an object structure in a class separate from the given classes. (C) 2010-2015 Prof. Dr. Ralf Lämmel, Universität Koblenz-Landau (where applicable)

  20. Adding an operation to lists interface List {} class Nil implements List {} class Cons implements List { int head; List tail; } Now suppose we need functionality to compute the sum of a list. (C) 2010-2015 Prof. Dr. Ralf Lämmel, Universität Koblenz-Landau (where applicable)

  21. 1st attempt: instance-of and type cast List l = ...; int sum = 0; // contains the sum after the loop boolean proceed = true; while (proceed) { if (l instanceof Nil) What are the proceed = false; problems here? else if (l instanceof Cons) { sum = sum + ((Cons) l).head; // Type cast! l = ((Cons) l).tail; // Type cast! } } (C) 2010-2015 Prof. Dr. Ralf Lämmel, Universität Koblenz-Landau (where applicable)

  22. 1st attempt: instance-of and type cast Casts are evil ! Requirement: static type checking http://en.wikipedia.org/wiki/File:Codex_Gigas_devil.jpg (C) 2010-2015 Prof. Dr. Ralf Lämmel, Universität Koblenz-Landau (where applicable)

  23. 2nd attempt: virtual methods interface List { int sum(); } class Nil implements List { public int sum() { return 0; } } What are the class Cons implements List { int head; problems here? List tail; public int sum() { return head + tail.sum(); } } (C) 2010-2015 Prof. Dr. Ralf Lämmel, Universität Koblenz-Landau (where applicable)

  24. 2nd attempt: virtual methods Patching is evil ! Requirement: operation extensibility http://en.wikipedia.org/wiki/File:Codex_Gigas_devil.jpg (C) 2010-2015 Prof. Dr. Ralf Lämmel, Universität Koblenz-Landau (where applicable)

  25. 3rd attempt: the visitor pattern Part I: An interface for operations interface Visitor { void visitNil(Nil x); void visitCons(Cons x); } (C) 2010-2015 Prof. Dr. Ralf Lämmel, Universität Koblenz-Landau (where applicable)

  26. 3rd attempt: the visitor pattern interface List { Part II: void accept(Visitor v); Classes that accept visitors } class Nil implements List { public void accept(Visitor v) { v.visitNil(this); } } class Cons implements List { int head; List tail; public void accept(Visitor v) { v.visitCons(this); } } (C) 2010-2015 Prof. Dr. Ralf Lämmel, Universität Koblenz-Landau (where applicable)

  27. 3rd attempt: the visitor pattern Part III: A concrete visitor class SumVisitor implements Visitor { int sum = 0; public void visitNil(Nil x) {} public void visitCons(Cons x){ sum += x.head; x.tail.accept(this); } } (C) 2010-2015 Prof. Dr. Ralf Lämmel, Universität Koblenz-Landau (where applicable)

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend