Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Aspect Oriented Programming (Droidcon Paris 2015 BarCamp)

Aspect Oriented Programming (Droidcon Paris 2015 BarCamp)

Add magic to your code and remove boilerplate

Xavier Gouchet

November 09, 2015
Tweet

More Decks by Xavier Gouchet

Other Decks in Programming

Transcript

  1. Aspect Oriented Programming Add magic to your code and remove

    boilerplate Droidcon Paris 2015 Barcamp
  2. About... Xavier Gouchet Android software engineer (Tools, architecture, core, …)

    @xgouchet on Github, StackOverflow, Twitter, … speakerdeck.com/xgouchet
  3. It’s NOT ... ◎ A new programming language ◎ Something

    to replace OOP ◎ The solution to all your problems !
  4. It is a tool to ... ◎ Enhance modularity ◎

    Separate cross cutting concerns ◎ Focus on business logic ◎ Reduce noise in the source code
  5. void foo() { Log.v("Tag", "foo"); beginTransaction(); try { bar(); //

    ... setTransactionSuccessful(); } catch (Exception e) { reportError(e); } finally { endTransaction(); } Log.v("Tag", "foo done"); } Before / After
  6. void foo() { Log.v("Tag", "foo"); beginTransaction(); try { bar(); //

    ... setTransactionSuccessful(); } catch (Exception e) { reportError(e); } finally { endTransaction(); } Log.v("Tag", "foo done"); } Before / After
  7. void foo() { Log.v("Tag", "foo"); beginTransaction(); try { bar(); //

    ... setTransactionSuccessful(); } catch (Exception e) { reportError(e); } finally { endTransaction(); } Log.v("Tag", "foo done"); } Before / After
  8. void foo() { Log.v("Tag", "foo"); beginTransaction(); try { bar(); //

    ... setTransactionSuccessful(); } catch (Exception e) { reportError(e); } finally { endTransaction(); } Log.v("Tag", "foo done"); } Before / After
  9. void foo() { Log.v("Tag", "foo"); beginTransaction(); try { bar(); //

    ... setTransactionSuccessful(); } catch (Exception e) { reportError(e); } finally { endTransaction(); } Log.v("Tag", "foo done"); } Before / After
  10. void foo() { Log.v("Tag", "foo"); beginTransaction(); try { bar(); //

    ... setTransactionSuccessful(); } catch (Exception e) { reportError(e); } finally { endTransaction(); } Log.v("Tag", "foo done"); } Before / After
  11. .class ul { display: inline;} #id p {font-style: italic;} a:hover

    {color: #FF4630; } input[type=text] {font-family: monospace;} CSS + HTML
  12. .class ul { display: inline;} #id p {font-style: italic;} a:hover

    {color: #FF4630; } input[type=text] {font-family: monospace;} CSS + HTML Attributes behaviors/appearance applied to... <Elements/> markup nodes in the source code, defined by... Selectors rules and patterns
  13. Vocabulary Advices behaviors applied to... JoinPoints positions in the source

    code, defined by... PointCuts rules and patterns Attributes behaviors/appearance applied to... <Elements/> markup nodes in the source code, defined by... Selectors rules and patterns
  14. Hello World @interface TraceLog {} public class MyClass { @TraceLog

    public void foo() { // ... } } @Aspect public class TraceLogAspect { @Pointcut("execution(@TraceLog * *(..))") public void traceLogMethod(){} @Before("traceLogMethod())") public void advice(JoinPoint jp) { Log.v("AspectTag", "> " + jp.getSignature()); } }
  15. Hello World @interface TraceLog {} public class MyClass { @TraceLog

    public void foo() { // ... } } @Aspect public class TraceLogAspect { @Pointcut("execution(@TraceLog * *(..))") public void traceLogMethod(){} @Before("traceLogMethod())") public void advice(JoinPoint jp) { Log.v("AspectTag", "> " + jp.getSignature()); } }
  16. Hello World @interface TraceLog {} public class MyClass { @TraceLog

    public void foo() { // ... } } @Aspect public class TraceLogAspect { @Pointcut("execution(@TraceLog * *(..))") public void traceLogMethod(){} @Before("traceLogMethod())") public void advice(JoinPoint jp) { Log.v("AspectTag", "> " + jp.getSignature()); } }
  17. Hello World @interface TraceLog {} public class MyClass { @TraceLog

    public void foo() { // ... } } @Aspect public class TraceLogAspect { @Pointcut("execution(@TraceLog * *(..))") public void traceLogMethod(){} @Before("traceLogMethod())") public void advice(JoinPoint jp) { Log.v("AspectTag", "> " + jp.getSignature()); } }
  18. Hello World @interface TraceLog {} public class MyClass { @TraceLog

    public void foo() { // ... } } @Aspect public class TraceLogAspect { @Pointcut("execution(@TraceLog * *(..))") public void traceLogMethod(){} @Before("traceLogMethod())") public void advice(JoinPoint jp) { Log.v("AspectTag", "> " + jp.getSignature()); } }
  19. Hello World @interface TraceLog {} public class MyClass { @TraceLog

    public void foo() { // ... } } @Aspect public class TraceLogAspect { @Pointcut("execution(@TraceLog * *(..))") public void traceLogMethod(){} @Before("traceLogMethod())") public void advice(JoinPoint jp) { Log.v("AspectTag", "> " + jp.getSignature()); } }
  20. Hello World @interface TraceLog {} public class MyClass { @TraceLog

    public void foo() { // ... } } @Aspect public class TraceLogAspect { @Pointcut("execution(@TraceLog * *(..))") public void traceLogMethod(){} @Before("traceLogMethod())") public void advice(JoinPoint jp) { Log.v("AspectTag", "> " + jp.getSignature()); } }
  21. Performance Monitoring @Aspect public class PerformanceMonitorAspect { @Pointcut("execution(@Monitor * *(..))")

    public void monitoredMethod(){} @Around("monitoredMethod())") public Object advice(ProceedingJoinPoint pjp) { long start = System.nanoTime(); Object result = pjp.proceed(); long end = System.nanoTime(); Log.i("Monitored", jp.toString + " : " + (end - start) + "ns"); return result; } }
  22. Performance Monitoring @Aspect public class PerformanceMonitorAspect { @Pointcut("execution(@Monitor * *(..))")

    public void monitoredMethod(){} @Around("monitoredMethod())") public Object advice(ProceedingJoinPoint pjp) { long start = System.nanoTime(); Object result = pjp.proceed(); long end = System.nanoTime(); Log.i("Monitored", jp.toString + " : " + (end - start) + "ns"); return result; } }
  23. Performance Monitoring @Aspect public class PerformanceMonitorAspect { @Pointcut("execution(@Monitor * *(..))")

    public void monitoredMethod(){} @Around("monitoredMethod())") public Object advice(ProceedingJoinPoint pjp) { long start = System.nanoTime(); Object result = pjp.proceed(); long end = System.nanoTime(); Log.i("Monitored", jp.toString + " : " + (end - start) + "ns"); return result; } }
  24. Memoization @Aspect public class MemoizationAspect { @Pointcut("execution(@Memoize * *(..))") public

    void memoizedMethod() {} @Around("memoizedMethod()") public Object advice(ProceedingJoinPoint pjp) { Object cached = getCached(pjp); if (cached == null) { cached = pjp.proceed(); cacheResult(pjp, cached); } return cached; } }
  25. Database Transaction @Aspect public class SQLiteTransactionAspect { @Pointcut("execution(@SQLiteTransaction * *(..))")

    public void transactionMethod(){} @Around("transactionMethod() && args(db)") public void advice(ProceedingJoinPoint jp, SQLiteDatabase db) { db.beginTransaction(); try { jp.proceed(); db.setTransactionSuccessful(); } catch (SQLiteException e) { Log.e("SQLite", "Error at" + jp.toString(), e); } finally { db.endTransaction(); } } }
  26. Database Transaction @Aspect public class SQLiteTransactionAspect { @Pointcut("execution(@SQLiteTransaction * *(..))")

    public void transactionMethod(){} @Around("transactionMethod() && args(db)") public void advice(ProceedingJoinPoint jp, SQLiteDatabase db) { db.beginTransaction(); try { jp.proceed(); db.setTransactionSuccessful(); } catch (SQLiteException e) { Log.e("SQLite", "Error at" + jp.toString(), e); } finally { db.endTransaction(); } } }
  27. Database Transaction @Aspect public class SQLiteTransactionAspect { @Pointcut("execution(@SQLiteTransaction * *(..))")

    public void transactionMethod(){} @Around("transactionMethod() && args(db)") public void advice(ProceedingJoinPoint jp, SQLiteDatabase db) { db.beginTransaction(); try { jp.proceed(); db.setTransactionSuccessful(); } catch (SQLiteException e) { Log.e("SQLite", "Error at" + jp.toString(), e); } finally { db.endTransaction(); } } }
  28. Validation @interface Validation { String regexp() default ".*"; } public

    class UserAccount { @Validation(regexp = "[a-zA-Z]{6,}") public void setUserName(String userName) { mUserName = userName; } @Validation(regexp = "^(?=.*\d)(?=.*[A-Z]).{8,}$") public void setPassword(String password) { mPassword = password; } }
  29. Validation @interface Validation { String regexp() default ".*"; } public

    class UserAccount { @Validation(regexp = "[a-zA-Z]{6,}") public void setUserName(String userName) { mUserName = userName; } @Validation(regexp = "^(?=.*\d)(?=.*[A-Z]).{8,}$") public void setPassword(String password) { mPassword = password; } }
  30. Validation @Aspect public class ValidationAspect { @Before("execution(@Validation * *(..)) &&

    args(input) && @annotation(v)") public void advice(JoinPoint jp, String input, Validation v) { Pattern pattern = Pattern.compile(v.regexp()); Matcher matcher = pattern.matcher(input); if (!matcher.matches()) { throw new InvalidInputException(); } } }
  31. Validation @Aspect public class ValidationAspect { @Before("execution(@Validation * *(..)) &&

    args(input) && @annotation(v)") public void advice(JoinPoint jp, String input, Validation v) { Pattern pattern = Pattern.compile(v.regexp()); Matcher matcher = pattern.matcher(input); if (!matcher.matches()) { throw new InvalidInputException(); } } }
  32. Validation @Aspect public class ValidationAspect { @Before("execution(@Validation * *(..)) &&

    args(input) && @annotation(v)") public void advice(JoinPoint jp, String input, Validation v) { Pattern pattern = Pattern.compile(v.regexp()); Matcher matcher = pattern.matcher(input); if (!matcher.matches()) { throw new InvalidInputException(); } } }
  33. What about the stack trace ? com.example.InvalidInputException at com.example.ValidationAspect.advice(ValidationAspect.java:35) at

    com.example.MyClass.setPassword(UserAccount.java:83) at com.example.test.UserAccount.onSubmit(UserAccount.java:42) ... 5 more
  34. Undo / Redo interface IUndoableAction { public void undo(); public

    void redo(); } class FieldAction implements IUndeoableAction { Field mField; Object mTarget, mOldValue, mNewValue; public FieldAction(Object target, Field field, Object oldValue, Object newValue) { mField = field; mTarget = target; mOldValue = oldValue; mNewValue = newValue; } public void undo(){ field.set(target, oldValue); } public void redo(){ field.set(target, newValue); } }
  35. Undo / Redo @Aspect public class UndoActionAspect { @Pointcut("within(com.example.model.*)") public

    void withinModelClass() {} @Before("withinModelClass() && set(public * *) && args(newValue) && target(target)") public void advice(JoinPoint jp, Object target, Object newValue) { Field field = getField(jp, target); Object oldValue = field.get(target); UndoManager.getInstance() .record(new FieldAction(target, field, oldValue, newValue); } }
  36. Gatekeeping enum Role { DEV, BETA, PUBLIC } @interface GateKeep

    { Role[] allowed(); } public class HomeActivity { @GateKeep(allowed = {DEV, BETA}) public void setupMaterialUI() { // ... } @GateKeep(allowed = {DEV}) public void startJukeboxPlayer() { // ... } }
  37. Gatekeeping @Aspect public class GateKeepAspect { @Around("execution(@GateKeep * *(..)) &&

    @annotation(gk)") public void advice(ProceedingJoinPoint jp, Gatekeep gk) { Role userRole = UserService.getInstance() .getCurrentUser() .getRole(); if (Arrays.asList(gate.allowedRoles()) .contains(userRole)) { jp.proceed(); } } }
  38. Multithreading @Aspect public class UIThreadAspect { final Handler mMainHandler =

    new Handler(Looper. getMainLooper()); @Around("execution(@RunOnUIThread void *(..))") public void advice(final ProceedingJoinPoint jp) { if (Looper.myLooper() == Looper.getMainLooper()) { jp.proceed(); } else { mMainHandler.post(new Runnable() { public void run() { jp.proceed(); } }); } }
  39. @Aspect @DeclarePrecedence("around1, before2, after3, around4, before5, after6") public class OrderingAspect

    { // Applied to the same pointcut, the result will be // around1 { // before2 // around4 { // before5 // joinpoint // after3 // } // } // after4 } Ordering advices
  40. Compile time checks @Aspect public class CoreCheckAspect { @Pointcut("within(com.example.core.*)") public

    void withinCorePackage() {} @Pointcut("call(* com.example.ui..*..*(..))") public void callToUIMethod() {} @DeclareError("withinCorePackage() && callToUIMethod()") static final String SEP_OF_CONCERNS = "Core classes should not call UI methods"; }
  41. Mixins interface INamed { String getName(); } class NamedImpl implements

    INamed { private String mName; public NamedImpl(Object namedObject) { mName = namedObject.toString(); } public String getName() { return mName; } }
  42. Mixins @Aspect public class NamedAspect { @DeclareMixin("com.example..*") public static INamed

    makeNamed(Object namedObject) { return new NamedImpl(namedObject); } } class Foo { public void hello (){ Log.i("Hello", "My name is " + ((INamed) this).getName()); } }
  43. Things to remember ◎ Singleton by default ◎ Inheritance, abstracts,

    generics, inner classes… ◎ Android flavors ◎ AOP is real programming
  44. Wizardry or Witchcraft @Aspect public class PreventNPEAspect { @Pointcut("within(com.example.model.*)") public

    void withinModelClass() {} @Around("withinModelClass() && execution(* *(..))") public void advice(ProceeJoinPoint jp) { Object[] args = jp.getArgs(); for (int i = 0; i < args.length; i++) { if (args[i] == null) { args[i] = ""; } } jp.proceed(args); } }
  45. Wizardry or Witchcraft @Aspect public class PreventNPEAspect { @Around("execution(@PreventStringNPE *

    *(..))") public void advice(ProceeJoinPoint jp) { Object[] args = jp.getArgs(); for (int i = 0; i < args.length; i++) { if (args[i] == null) { args[i] = ""; } } jp.proceed(args); } }
  46. Errors to avoid ◎ Pokeball : gotta catch’em all Pointcuts

    must be as precise as possible ◎ Octopuss : arms reaching everywher Pointcuts matching unrelated joinpoints ◎ Asp’ception : because aspect is code too Pointcuts matching the advice itself ◎ Aspector Gadget : single responsibility SOLID principles apply to AOP as well
  47. The easy way buildscript { dependencies { classpath 'com.uphyca.gradle:gradle-android-aspectj-plugin: 0.9.14'

    } } apply plugin: 'com.uphyca.android-aspectj' dependencies { compile 'org.aspectj:aspectjrt:1.8.1' }