source: trunk/libIGCM/libIGCM_card/IGCM_card_PrintOption.awk @ 219

Last change on this file since 219 was 219, checked in by brocksce, 14 years ago

Match not useful to detect a single option.
Simple is beautiful.

  • Property licence set to
    The following licence information concerns ONLY the libIGCM tools
    ==================================================================

    Copyright © Centre National de la Recherche Scientifique CNRS
    Commissariat à l'Énergie Atomique CEA

    libIGCM : Library for Portable Models Computation of IGCM Group.

    IGCM Group is the french IPSL Global Climate Model Group.

    This library is a set of shell scripts and functions whose purpose is
    the management of the initialization, the launch, the transfer of
    output files, the post-processing and the monitoring of datas produce
    by any numerical program on any plateforme.

    This software is governed by the CeCILL license under French law and
    abiding by the rules of distribution of free software. You can use,
    modify and/ or redistribute the software under the terms of the CeCILL
    license as circulated by CEA, CNRS and INRIA at the following URL
    "http://www.cecill.info".

    As a counterpart to the access to the source code and rights to copy,
    modify and redistribute granted by the license, users are provided only
    with a limited warranty and the software's author, the holder of the
    economic rights, and the successive licensors have only limited
    liability.

    In this respect, the user's attention is drawn to the risks associated
    with loading, using, modifying and/or developing or reproducing the
    software by the user in light of its specific status of free software,
    that may mean that it is complicated to manipulate, and that also
    therefore means that it is reserved for developers and experienced
    professionals having in-depth computer knowledge. Users are therefore
    encouraged to load and test the software's suitability as regards their
    requirements in conditions enabling the security of their systems and/or
    data to be ensured and, more generally, to use and operate it in the
    same conditions as regards security.

    The fact that you are presently reading this means that you have had
    knowledge of the CeCILL license and that you accept its terms.
  • Property svn:keywords set to Date Author Revision
File size: 2.6 KB
Line 
1#**************************************************************
2# Author: Patrick Brockmann
3# Contact: Patrick.Brockmann@cea.fr
4# $Date$
5# $Author$
6# $Revision$
7# IPSL (2006)
8#  This software is governed by the CeCILL licence see libIGCM/libIGCM_CeCILL.LIC
9# History:
10# Modification:
11#
12#**************************************************************
13
14#==========================
15function myprint(str) {
16        if (debug) {
17                print str
18        }
19}
20
21#==========================
22BEGIN {
23
24nbarg=ARGC
25if (ARGV[1] == "-d") {
26        debug=1
27        file=ARGV[2]
28        section=ARGV[3]
29        option=ARGV[4]
30        delete ARGV[1] ; delete ARGV[3] ; delete ARGV[4]
31        nbarg--
32} else {
33        debug=0
34        file=ARGV[1]
35        section=ARGV[2]
36        option=ARGV[3]
37        delete ARGV[2] ; delete ARGV[3]
38}
39
40# When exit statement, 'END' rule is always executed, so defined a exit_value to manage this
41exit_value=0
42if (nbarg != 4) {
43        print "Usage: IGCM_card_PrintOption [-d] file section option" 
44        print 
45        print "Args:"
46        print "      file = file at CARD format" 
47        print "      section = section to find" 
48        print "      option = option to find" 
49        print 
50        print "Options:" 
51        print "       -d = debug mode" 
52        print 
53        exit_value=1
54        exit
55}
56
57section_found=0
58option_found=0
59
60}
61
62#==========================
63{
64
65myprint($0) 
66
67# Do not consider commented lines (#...)
68if (! match($0,/^#/)) {
69
70# Find section with delimiters '[' and ']'
71if (match($0, "\\[" section "\\]")) {
72
73        myprint("---->section found")
74        section_found=1
75
76} else if (section_found == 1 && (match($0, option "[ ]*="))) {
77
78        myprint("---->option found")
79        option_found=1
80       
81        # Extract string after '='
82        option_value=substr($0, index($0, "=")+1)
83
84        # Remove space after '='
85        gsub(/^[ ]*/, "", option_value)
86
87        # If continuation character '\' get next lines
88        if (match($0,/\\$/)) {
89                tmp=$0
90                tmp=substr(tmp, 1, length(tmp)-1)
91                gsub(/[ \t]*/, "", tmp)
92                option_value=tmp
93                getline tmp
94                while (match(tmp,/\\$/)) {
95                        tmp=substr(tmp, 1, length(tmp)-1)
96                        gsub(/[ \t]*/, "", tmp)
97                        option_value=option_value " " tmp
98                        getline tmp 
99                        }
100                gsub(/[ \t]*/, "", tmp)
101                option_value=option_value " " tmp
102        }
103
104        exit
105
106} else if (section_found == 1 && match($0, /^[\[*\]]/)) {
107
108        myprint("---->end section")
109        exit
110
111}
112
113}
114
115}
116
117#==========================
118END {
119
120if (! exit_value ) {
121
122myprint("###############################")
123myprint("section      ====> " section)
124myprint("option       ====> " option)
125myprint("value        ====> " option_value)
126
127if (section_found == 0) {
128        print "Error: Section not found", section, option
129} else if (option_found == 0) {
130        print "Error: Option not found", section, option
131} else {
132        print option_value
133}
134
135}
136
137}
138 
139#==========================
Note: See TracBrowser for help on using the repository browser.