User Tools

Site Tools


blog:dynamicsquid

dynamicsquid

Yay, I finally managed to instrument Squid, the webproxy found at: http://wiki.squid-cache.org/FrontPage. This is for my thesis, where I implement Dynamic Aspects in C++. Now for the loading of dynamic aspects..

Update: The first dynamic aspect works! :) Here is the sourcecode of the aspect:

#include <iostream>
 
aspect DynamicTracer {
  advice execution("% ...::Http%::%(...)") : before() {
    std::cout << "now running: " << JoinPoint::signature() << std::endl;
  }
};

tech uni english aop

~~DISCUSSION~~

blog/dynamicsquid.txt · Last modified: 2008/10/18 15:56 by 127.0.0.1