File: replacePaths_c.awk

package info (click to toggle)
opari2 2.0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,808 kB
  • sloc: cpp: 8,533; sh: 5,755; ansic: 5,129; f90: 530; fortran: 341; makefile: 227; awk: 179
file content (49 lines) | stat: -rwxr-xr-x 1,565 bytes parent folder | download | duplicates (4)
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
# This file is part of the Score-P software (http://www.score-p.org)
#
# Copyright (c) 2009-2011,
#    *    RWTH Aachen University, Germany
#    *    Gesellschaft fuer numerische Simulation mbH Braunschweig, Germany
#    *    Technische Universitaet Dresden, Germany
#    *    University of Oregon, Eugene, USA
#    *    Forschungszentrum Juelich GmbH, Germany
#    *    German Research School for Simulation Sciences GmbH, Juelich/Aachen, Germany
#    *    Technische Universitaet Muenchen, Germany
#
# See the COPYING file in the package base directory for details.

{
    if(match($0,"sscl=")){
        line = "   "
        for(i = 1; i <= NF; i++){
            if(match($i,"^\"")){
                #remove full path
                gsub("escl=([^/]*/)*","escl=",$i)
                gsub("sscl=([^/]*/)*","sscl=",$i)
                #remove old length
                sub("\"[0-9a-z]*","\"", $i)
                #insert new length
                sub("\"", "\""length($i)-1, $i)
            }
            line = line " " $i
        }
        print line
    }
    else if(match($0,"Init_reg")){
        #remove the timestamp based region identifier
        gsub("Init_reg_[0-9a-z_]+","Init_reg_000",$0)
        print $0
    }
    else if(match($0,"#line")){
        #remove the path from the line numbering
        gsub("/([^/]*/)*","",$0)
        print $0
    }
    else if(match($0,"#include") && match($0,"opari.inc")){
        #remove the path from the line numbering
        gsub("/([^/]*/)*","",$0)
        print $0
    }
    else{
        print $0
    }
}