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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
// 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 __OrderInfo_h__
#define __OrderInfo_h__
#include "PointCutEvaluator.h"
#include "PointCutContext.h"
#ifdef ACMODEL
#include "Elements.h"
#else
#include "JoinPointLoc.h"
#endif
class OrderInfo {
#ifdef ACMODEL
ACM_Aspect &_aspect;
ACM_Order &_order;
#else
JPL_Aspect &_aspect;
JPL_Order &_order;
#endif
list<PointCutExpr*> _pces;
PointCutExpr* _jp_pce;
void add_pce (PointCutExpr *pce) { _pces.push_back (pce); }
void set_jp_pce (PointCutExpr *jp_pce) { _jp_pce = jp_pce; }
public:
#ifdef ACMODEL
OrderInfo (ACM_Aspect &a, ACM_Order &o) : _aspect (a), _order (o), _jp_pce (0) {}
ACM_Aspect &aspect () const { return _aspect; }
ACM_Order &order () const { return _order; }
#else
OrderInfo (JPL_Aspect &a, JPL_Order &o) : _aspect (a), _order (o), _jp_pce (0) {}
JPL_Aspect &aspect () const { return _aspect; }
JPL_Order &order () const { return _order; }
#endif
~OrderInfo () {
for (list<PointCutExpr*>::iterator i = _pces.begin ();
i != _pces.end (); ++i)
PointCutEvaluator::destroy (*i);
if (_jp_pce)
PointCutEvaluator::destroy (_jp_pce);
}
const list<PointCutExpr*> &pces () const { return _pces; }
PointCutExpr *jp_pce () const { return _jp_pce; }
#ifdef ACMODEL
void analyze_exprs (ErrorStream &err, ProjectModel &jpm) {
#else
void analyze_exprs (ErrorStream &err, JoinPointModel &jpm) {
#endif
PointCutContext context (jpm);
PointCutEvaluator eval (err, context);
context.concrete_aspect (_aspect);
#ifdef ACMODEL
set_jp_pce (eval.create (TI_PointcutExpr::of(*_order.get_expr ())->tree(),
JPT_Any));
typedef ACM_Container<ACM_PointcutExpr, true> Container;
const Container &exprs = _order.get_aspect_exprs();
for (Container::const_iterator i = exprs.begin (); i != exprs.end (); ++i)
add_pce (eval.create (TI_PointcutExpr::of(**i)->tree(), JPT_Aspect));
#else
set_jp_pce (eval.create (_order.expr (), JoinPointLoc::Any));
const list<CTree*> &exprs = _order.pces ();
for (list<CTree*>::const_iterator i = exprs.begin (); i != exprs.end (); ++i)
add_pce (eval.create (*i, JoinPointLoc::Aspect));
#endif
}
};
#endif // __OrderInfo_h__
|