File: AdviceInfo.h

package info (click to toggle)
aspectc%2B%2B 1.0pre4~svn.20080711-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 104,504 kB
  • ctags: 363,975
  • sloc: cpp: 1,645,814; ansic: 16,601; sh: 2,175; makefile: 1,043
file content (63 lines) | stat: -rw-r--r-- 2,400 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// This file is part of the AspectC++ compiler 'ac++'.
// Copyright (C) 1999-2003  The 'ac++' developers (see aspectc.org)
//                                                                
// This program is free software;  you can redistribute it and/or 
// modify it under the terms of the GNU General Public License as 
// published by the Free Software Foundation; either version 2 of 
// the License, or (at your option) any later version.            
//                                                                
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of 
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  
// GNU General Public License for more details.                   
//                                                                
// You should have received a copy of the GNU General Public      
// License along with this program; if not, write to the Free     
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
// MA  02111-1307  USA                                            

#ifndef __AdviceInfo_h__
#define __AdviceInfo_h__

#include <iostream>
using namespace std;

#include "PointCut.h"
#include "Binding.h"
#include "JoinPointLoc.h"
#include "BackEndProblems.h"
using namespace Puma;

class AspectInfo;
class BackEndProblems;

class AdviceInfo {
 
  AspectInfo &_aspect_info;
  JPL_Aspect &_aspect;
  PointCut _pointcut;
  Binding _binding;
  JPL_AdviceCode &_code;

public:
  AdviceInfo (AspectInfo &ai, JPL_AdviceCode &c);
  JPL_Aspect &aspect () const { return _aspect; }
  AspectInfo &aspect_info () const { return _aspect_info; }
  PointCut &pointcut () { return _pointcut; }
  Binding &binding () { return _binding; }
  
  JPL_AdviceCode &code () const { return _code; }

  void gen_invocation_func (ostream &out, bool def, const BackEndProblems &bep);
  void gen_invocation_func_call (ostream &stmt, const char* tjp_tp,
                                 const char *tjp_obj);

  void gen_binding_template (ostream &out, const char *jpname,
                             const BackEndProblems &bep);
  
  CScopeInfo *Scope () { return TI_AdviceCode::of (_code)->Scope (); }
  const char *name () { return TI_AdviceCode::of (_code)->name (); }
  JPL_AdviceCode::advice_type type () { return _code.type (); }
};

#endif // __AdviceInfo_h__