+ All Categories
Home > Documents > Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software...

Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software...

Date post: 31-Dec-2015
Category:
Upload: verity-thornton
View: 215 times
Download: 0 times
Share this document with a friend
33
Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University
Transcript
Page 1: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Phx.Morph:Aspect-Oriented Programming

using Phoenix

Can AOP solve Microsoft’s growing software problem?

Marc EaddyMSR Intern

Columbia University

Page 2: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Background• The Phoenix Project

– Microsoft’s production-grade compiler, analysis,and tools infrastructure

– Will become backend for all Microsoft compilers

– Massive software project– Currently 1.8M LOC (318K hand-written)

Page 3: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Problem• Many Phoenix requirements cannot be

cleanly separated using traditional OO techniques (inheritance and aggregation)– Unanticipated requirements– Requirements to satisfy multiple clients and

scenarios– “Operational” (orthogonal) requirements

• Traditional OO solutions resulted in increased software complexity– Designs are complex and highly coupled– Code is cluttered and difficult to write and

maintain

• Many other groups at Microsoft are also struggling with this problem

Page 4: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Our goalDetermine if Aspect-Oriented

Programming (AOP) can improve Phoenix development

Our approach1.Use Phoenix to develop an AOP solution

2.Then turn around and use the AOP solution to help develop Phoenix

Phx.Morph

Page 5: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Aspect-Oriented Programming

• Promise of greater “separation of concerns”

• AOP = Open Classes + Advice– Open Classes (type changes)– Advice (code changes)

• AspectJ™ is the canonical AOP specification and implementation

Page 6: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

AOP buzzwords• joinpoint – an execution event

– function call, function execution, field access, exception, etc.

• advice – code that the programmer wants to be called before, after, or instead of (around), some joinpoint

• pointcut – a pattern for matching joinpoints– e.g., “System.Output.*”

• weaving – transforming a program to call advice code

Page 7: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Compiler Phx.Morph WeavedProgram

AspectAssemblies

Post-Link StepNormal assemblies containing custom

AOP attributes

Normal assemblies containing custom

AOP attributes

Weaving using Phx.Morph

OriginalProgram

SourceFiles

Original developer can be oblivious

Original developer can be oblivious

Page 8: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Open Classes (OC)Ability to split a class definition into separate modules• Similar to Partial Classes in C#

except– post-link time; can extend a class at any

time– works on assemblies; no source req’d– language agnostic

• We support adding fields, properties, methods, base interfaces, and base classes

Page 9: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Original class

+AddChild(in child : Node)+GetChild(in id : int) : Node+GetChildCount() : int

-children

Node

BooleanExpressionNode

-condition : BooleanExpressionNode-body : Node

WhileLoopNode

-condition : BooleanExpressionNode-thenBody : Node-elseBody : Node

IfThenNode

Page 10: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Demo: Adding foreach sugarusing System.Collections;using Phx.Morph.Attributes;

[Extends("Node")]class NodeEnumeratorAspect : Node,

IEnumerable{ [Add] public IEnumerator GetEnumerator() { return new NodeEnumerator(this); }}

Class to extendClass to extend

“Add this method”“Add this method”

“Add this iface”

“Add this iface”

Page 11: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

NodeEnumeratorpublic class NodeEnumerator : IEnumerator{

Node node;int index = -1;

public NodeEnumerator(Node node) {this.node = node;

}

public object Current { get { return node.GetChild(index); } }

public bool MoveNext() { return ++index < node.ChildCount; }

public void Reset() { index = -1; }}

Page 12: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

foreach client static void DumpNode(Node root, string indent) { if (root == null) return;

System.Console.WriteLine(indent + root);

foreach (Node child in root) { DumpNode(child, indent + " "); } }

New capability!New capability!

Page 13: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

+AddChild(in child : Node)+GetChild(in id : int) : Node+GetChildCount() : int+Accept(in visitor : INodeVisitor)

-children

Node

+Accept(in visitor : INodeVisitor)

BooleanExpressionNode

+Accept(in visitor : INodeVisitor)

-condition : BooleanExpressionNode-body : Node

WhileLoopNode

+Accept(in visitor : INodeVisitor)

-condition : BooleanExpressionNode-thenBody : Node-elseBody : Node

IfThenNode

+visit(in node : Node)+visit(in node : BooleanExpressionNode)+visit(in node : WhileLoopNode)+visit(in node : IfThenNode)

INodeVisitor

Adding the Visitor pattern:Traditional OO

Depends On

Depends On

Depends On

Depends On

OO design is tightly coupled and hard to

maintain

OO design is tightly coupled and hard to

maintain

Page 14: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Adding the Visitor pattern:Open Classes

+visit(in node : Node)+visit(in node : BooleanExpressionNode)+visit(in node : WhileLoopNode)+visit(in node : IfThenNode)

INodeVisitor

+Accept(in visitor : INodeVisitor)

[Extends("Node")]

+Accept(in visitor : INodeVisitor)

[Extends("BooleanExpressionNode")]

+Accept(in visitor : INodeVisitor)

[Extends("WhileLoopNode")]

+Accept(in visitor : INodeVisitor)

[Extends("IfThenNode")]

DependsOn

+AddChild(in child : Node)+GetChild(in id : int) : Node+GetChildCount() : int

-children

Node

BooleanExpressionNode

-condition : BooleanExpressionNode-body : Node

WhileLoopNode

-condition : BooleanExpressionNode-thenBody : Node-elseBody : Node

IfThenNode

Open Classes design breaks the circular dependency and

centralizes the code

Open Classes design breaks the circular dependency and

centralizes the code

Page 15: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

• Client wants to attach custom data to an object• Example: IR-Longevity plug-in tracks compiler

phase when an instruction is created

+Find()

-list

ExtensibleObject

+Attach()+Detach()+Register()

-id

ExtensionObject

+AddExtensionObject()+FindExtensionObject()

-...

Instr

+Register()+Get()

-id : int-BirthPhase : Phase

BirthPhaseExtensionObject

0..*Client’s

extensionobject

Client’sextension

object

Phoenix client extensibility:Traditional OO

Page 16: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

• Empowers clients– High performance– Type safe– Don’t have to wait for RDK drop– Don’t require help from Phoenix team

Phoenix client extensibility:Open Classes

• Weave Phx.dll• To add BirthPhase field directly to Instr

-BirthPhase : Phase

Instr Client’sextension

object

Client’sextension

object

Page 17: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

AdviceAbility to inject code at specific points in a program

– profiling– logging/tracing– log field get/set– dirty bit (persistence, synchronization)– change notification (undo/redo/rollback)– enforce invariants (non-null, const, data flow,

Design by Contract)– error checking/handling– fault injection– caching– proxies/delegation– etc. etc.

Page 18: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Demo: Logging reflection usage

• Want to log a message whenever we use the Reflection API

• Self-weave Phx.Morph.dll

Page 19: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Logging adviceusing Phx.Morph.Aop;using Phx.Morph.Attributes;

public class LogReflectionAspect{ [Advice(AdviceType.before, "call(System.Reflection..)")] static public void LogReflection([Signature] string signature,

[SourceLocation.WithinSignature] string withinSignature, [SourceLocation.FilePath] string filePath, [SourceLocation.Line] uint line) { System.Console.WriteLine(); System.Console.WriteLine("Called {0}()", signature); System.Console.WriteLine(" inside {0}()", withinSignature); System.Console.WriteLine(" [File: {0}, Line: {1}]", System.IO.Path.GetFileName(filePath), line); }}

Page 20: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Weaved result IL_0065: ldarg.0

IL_0066: call class System.Reflection.Assembly System.Reflection.Assembly::Load(string)

Page 21: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Weaved result IL_0065: ldarg.0 IL_0066: ldstr "System.Reflection.Assembly.Load" IL_006b: ldstr "Phx.Morph.ReflectionHelpers.LoadAssembly" IL_0070: ldstr "c:\\phx\\rdk\\samples\\Morpher\\Phx.Morph\\

ReflectionHelpers.cs" IL_0075: ldc.i4 0xfb IL_007a: call void LogReflectionExt::LogReflection(

string,

string,

string,

uint32) IL_007f: call class System.Reflection.Assembly

System.Reflection.Assembly::Load(string)

Injected code

Page 22: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Logging outputCalled System.Reflection.Assembly.Load() inside Phx.Morph.ReflectionHelpers.LoadAssembly() [File: ReflectionHelpers.cs, Line: 251]

Called System.Reflection.Emit.AssemblyBuilder.DefineDynamicModule()

inside Phx.Morph.Attributes.AttributeHelper.CreateTypeBuilder() [File: AttributeHelper.cs, Line: 499]

Called System.Reflection.Emit.ModuleBuilder.DefineType() inside Phx.Morph.Attributes.AttributeHelper.CreateTypeBuilder() [File: AttributeHelper.cs, Line: 504]

…etc…

Page 23: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Demo: Enforcing invariants• Supporting const-ness at runtime

Person teacher = new Person();

teacher.Salary = 25000;

teacher.IsConst = true;

teacher.Salary = 1000000;

• Caveat: Must weave all clients

New!

Invariant violated!

Page 24: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Invariant aspect[Extends("Person")]class InvariantAspect{

[Add]public bool IsConst;

[Advice(AdviceType.before, "set(Person.*)")] void CheckIsConst(

[SourceLocation.WithinSignature] string withinSignature,[This] object This)

{if (IsConst){

System.Console.WriteLine("Person '{0}' violated IsConst constraint inside {1}",This, withinSignature);

}}

}

Page 25: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Phx.Morph implementation

Phx.Morph

EditorsOpen Classes, weaving

AOPJoinpoints, pointcuts, …

AttributesCustom AOP attributes

Phoenix Core API

PEREWAssemblyRe-Writer

MorphPlugin

• Built using Phoenix• MorphPlugin plugs

into PEREW and uses Phx.Morph to perform weaving

Page 26: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Current limitations• Managed-code only• Cannot access private members• Limited aspect instantiation model

– Instance advice methods are imported– Static advice methods are referenced

• Not yet implemented– Can’t import a method with multiple return

statements– Around advice– Many pointcuts not implemented (including

cflow)– Aspect composition and precedence– Access to some joinpoint context (Args,

Target, thisJoinPoint)

Page 27: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

AspectJ™PROSE

Hyper/J

JAsCo

EAOP

JMangler

AspectC++

CeaserJ

AspectC

Steamloom

AspectS

FeatureC++

DynAOP

Apostle

AspectR

Spring (J2EE)

DemeterJ

Concern Manipulation Environment

IBM Eclipse

IBM WebSphere

HyperProbes

JBoss (J2EE)

BEA JRockit

JVM

AspectScheme

Aspects

AOPHP

Composition Filters

Jakarta HivemindJAML

XWeaver

PEAKPythiusPHPaspect

AspectL

AspectCocoa

Loom.NET

Weave.NET Meta.NET

Rapier.NETAspect#

Aspect.NET

AspectDNG

SetPoint CLAWPostSharp Eos

ComposeStar

EncaseAOP-Engine

SourceWeave.NETAopDotNetAddin

Phx.Morph

Other

Java

C++

.NET

Products

Related work

Italics = Microsoft-sponsored (although none are shipped)

AOP.NET

Wool

“Real” (shipped) products

No real products

Page 28: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Why our work is interesting• Built using Phoenix – Microsoft’s

production-grade compiler, analysis and tools infrastructure– Capable of weaving very large programs (e.g.,

Phoenix itself, which is 1.8M LOC)– Evolves in parallel with Phoenix and the

Common Language Runtime (performance improvements, bug fixes, API evolution, etc.)

• Used by Phoenix to solve real business requirements– Phoenix is real software– Hampered by traditional OO techniques– We’ve started using AOP to develop Phoenix

Page 29: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Conclusions• Our goal was to determine if AOP

would improve Phoenix development– Re-implemented a Phoenix plug-in to

use Open Classes instead of the OO extension API

– Began prototyping grafting adapter interfaces onto Phoenix classes to integrate with another library

– We validated the feasibility of using Phx.Morph on Phoenix itself

Page 30: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Future work• Next step is a proof-of-concept

– Determine small piece of Phoenix to aspectualize– Design aspect solution– Implement remaining required AOP functionality– Modify Phoenix build process to perform post-link

weaving step

• Explore more AOP scenarios– compile-time (ala Partial Classes for C++)

• Makes it easier for Phoenix to use their own extensions• Easily separate hand-written code from generated code

(code behind)

– load-time• Needed to fully support compile-time weaving

– runtime (dynamic weaving)• Useful for on-the-fly debugging and rapid prototyping

• Improve ease-of-use– IDE integration, projecting aspects into source code

Page 31: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

CLR wish list• New partial metadata keyword

– Extends the C# Partial Classes concept beyond compile time and makes it language neutral

– Compiler support: Class definition = class source files + partial class source files + partial classes defined in referenced assemblies

– Runtime support: Combines partial classes at load-time

• Complete CodeDOM API– Express all C# and C++/CLI language constructs– Express complete syntax tree (including comments and

whitespace)– Parsers for C# and C++/CLI

• Weaving at runtime– Ability to add fields, methods, etc. after load-time

(ModuleLoadFinished)– Fix ICorProfiler.SetFunctionReJIT (don’t want to use out-

of-process debugger API solution)– Support for JIT deoptimization

Page 32: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

Acks• Many thanks to the Phoenix team!

• Mentor: Weiping Hu

• Andy Ayers

• Julian Burger

• Jan Gray

• John Lefor

• Paddy McDonald

• Chuck Mitchell

Page 33: Phx.Morph: Aspect-Oriented Programming using Phoenix Can AOP solve Microsoft’s growing software problem? Marc Eaddy MSR Intern Columbia University.

ContactMarc Eaddy – [email protected]


Recommended