~ubuntu-branches/ubuntu/wily/aspectc++/wily

« back to all changes in this revision

Viewing changes to AspectC++/LineDirectiveMgr.cc

  • 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
#include "LineDirectiveMgr.h"
 
20
#include "Puma/Token.h"
 
21
#include "Puma/CUnit.h"
 
22
#include "Puma/MacroUnit.h"
 
23
 
 
24
bool LineDirectiveMgr::insert (Unit *unit, Token *token, bool after) {
 
25
  if (_config.noline ())
 
26
    return false;
 
27
  if (unit && token && unit->isMacroExp ()) {
 
28
    token = ((MacroUnit*)unit)->ExpansionBegin (token);
 
29
    unit  = (Unit*)token->belonging_to ();
 
30
  }
 
31
  if (unit && unit->isMacroExp ()) {
 
32
    return false; // no chance :-(
 
33
  }
 
34
  CUnit line_directive (_err);
 
35
  directive (line_directive, unit, token);
 
36
  line_directive << endu;
 
37
  Unit *ins_unit = (Unit*)token->belonging_to ();
 
38
  if (after)
 
39
    ins_unit->move (token, line_directive);
 
40
  else
 
41
    ins_unit->move_before (token, line_directive);
 
42
  return true;
 
43
}
 
44
 
 
45
bool LineDirectiveMgr::directive (ostream &out, Unit *unit, Token *token) {
 
46
  if (_config.noline ())
 
47
    return false;
 
48
  if (unit && token && unit->isMacroExp ()) {
 
49
    token = ((MacroUnit*)unit)->ExpansionBegin (token);
 
50
    unit  = token ? (Unit*)token->belonging_to () : 0;
 
51
  }
 
52
  if (unit && unit->isMacroExp ()) {
 
53
    return false; // no chance :-(
 
54
  }
 
55
  out << endl << "#line " << (token ? token->location ().line () : 1)
 
56
      << " \"" << (unit ? unit->name () : "<ac>") << "\"" << endl;
 
57
  return true;
 
58
}
 
59