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

Last change on this file since 425 was 425, checked in by mmaipsl, 13 years ago

To guarantee unicity of searched option in a section.
Same commit as CVS commit 1.4 for IGCM_card_WriteOption.awk.

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