~ubuntu-branches/ubuntu/natty/aspectc++/natty

« back to all changes in this revision

Viewing changes to AspectC++/AdviceRepo.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2005-12-23 10:49:40 UTC
  • Revision ID: james.westby@ubuntu.com-20051223104940-ig4klhoi991zs7km
Tags: upstream-0.99+1.0pre2
ImportĀ upstreamĀ versionĀ 0.99+1.0pre2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// This file is part of the AspectC++ compiler 'ac++'.
 
2
// Copyright (C) 1999-2003  The 'ac++' developers (see aspectc.org)
 
3
//                                                                
 
4
// This program is free software;  you can redistribute it and/or 
 
5
// modify it under the terms of the GNU General Public License as 
 
6
// published by the Free Software Foundation; either version 2 of 
 
7
// the License, or (at your option) any later version.            
 
8
//                                                                
 
9
// This program is distributed in the hope that it will be useful,
 
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of 
 
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  
 
12
// GNU General Public License for more details.                   
 
13
//                                                                
 
14
// You should have received a copy of the GNU General Public      
 
15
// License along with this program; if not, write to the Free     
 
16
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
 
17
// MA  02111-1307  USA                                            
 
18
 
 
19
#ifndef __AdviceRepo_h__
 
20
#define __AdviceRepo_h__
 
21
 
 
22
#include <map>
 
23
#include <string>
 
24
#include <set>
 
25
using namespace std;
 
26
 
 
27
#include <libxml/tree.h>
 
28
#include "RepoPosAspectKey.h"
 
29
#include "RepoIdMgr.h"
 
30
#include "RepoXMLNode.h"
 
31
 
 
32
class AdviceRepo : public RepoIdMgr {
 
33
 
 
34
  struct Data {
 
35
    int _id;
 
36
    string _type;
 
37
    int _lines;
 
38
    bool _ref;
 
39
    Data (int id, const string &type, int lines) :
 
40
      _id (id), _type (type), _lines (lines), _ref (true) {}
 
41
  };
 
42
  typedef map<RepoPosAspectKey, Data> Map;
 
43
  typedef Map::value_type MapPair;
 
44
  Map _map;
 
45
 
 
46
public:
 
47
 
 
48
  int insert (int file_id, int line, const string &type, int asp, int lines);
 
49
 
 
50
  void noref ();
 
51
 
 
52
  void cleanup (set<int> files);
 
53
 
 
54
  void make_xml (RepoXMLNode parent);
 
55
 
 
56
  void get_xml (RepoXMLNode parent);
 
57
};
 
58
 
 
59
#endif // __AdviceRepo_h__