New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
WorkWithAllocatelist.c in branches/2015/dev_r5021_UKMO1_CICE_coupling/NEMOGCM/EXTERNAL/AGRIF/LIB – NEMO

source: branches/2015/dev_r5021_UKMO1_CICE_coupling/NEMOGCM/EXTERNAL/AGRIF/LIB/WorkWithAllocatelist.c @ 5445

Last change on this file since 5445 was 5445, checked in by davestorkey, 9 years ago

Clear SVN keywords from 2015/dev_r5021_UKMO1_CICE_coupling branch.

File size: 6.9 KB
Line 
1/******************************************************************************/
2/*                                                                            */
3/*     CONV (converter) for Agrif (Adaptive Grid Refinement In Fortran)       */
4/*                                                                            */
5/* Copyright or   or Copr. Laurent Debreu (Laurent.Debreu@imag.fr)            */
6/*                        Cyril Mazauric (Cyril_Mazauric@yahoo.fr)            */
7/* This software is governed by the CeCILL-C license under French law and     */
8/* abiding by the rules of distribution of free software.  You can  use,      */
9/* modify and/ or redistribute the software under the terms of the CeCILL-C   */
10/* license as circulated by CEA, CNRS and INRIA at the following URL          */
11/* "http://www.cecill.info".                                                  */
12/*                                                                            */
13/* As a counterpart to the access to the source code and  rights to copy,     */
14/* modify and redistribute granted by the license, users are provided only    */
15/* with a limited warranty  and the software's author,  the holder of the     */
16/* economic rights,  and the successive licensors  have only  limited         */
17/* liability.                                                                 */
18/*                                                                            */
19/* In this respect, the user's attention is drawn to the risks associated     */
20/* with loading,  using,  modifying and/or developing or reproducing the      */
21/* software by the user in light of its specific status of free software,     */
22/* that may mean  that it is complicated to manipulate,  and  that  also      */
23/* therefore means  that it is reserved for developers  and  experienced      */
24/* professionals having in-depth computer knowledge. Users are therefore      */
25/* encouraged to load and test the software's suitability as regards their    */
26/* requirements in conditions enabling the security of their systems and/or   */
27/* data to be ensured and,  more generally, to use and operate it in the      */
28/* same conditions as regards security.                                       */
29/*                                                                            */
30/* The fact that you are presently reading this means that you have had       */
31/* knowledge of the CeCILL-C license and that you accept its terms.           */
32/******************************************************************************/
33/* version 1.7                                                                */
34/******************************************************************************/
35#include <stdio.h>
36#include <stdlib.h>
37#include <string.h>
38#include "decl.h"
39
40/******************************************************************************/
41/*                               Add_Allocate_Var_1                           */
42/******************************************************************************/
43/* Firstpass 1                                                                */
44/******************************************************************************/
45/*                                                                            */
46/******************************************************************************/
47void Add_Allocate_Var_1(char *nom,char *nommodule)
48{
49   listallocate *newvar;
50   listallocate *parcours;
51   int out;
52
53   if ( firstpass == 1 )
54   {
55      if ( !List_Allocate_Var )
56      {
57         newvar = (listallocate *)malloc(sizeof(listallocate));
58         strcpy(newvar->a_nomvar,nom);
59         Save_Length(nom,25);
60         strcpy(newvar->a_subroutine,subroutinename);
61         Save_Length(subroutinename,26);
62         strcpy(newvar->a_module,nommodule);
63         Save_Length(nommodule,27);
64         newvar->suiv = NULL;
65         List_Allocate_Var = newvar;
66      }
67      else
68      {
69         parcours = List_Allocate_Var;
70         out = 0 ;
71         while ( parcours->suiv && out == 0 )
72         {
73            if (  !strcasecmp(parcours->a_nomvar,nom) &&
74                  !strcasecmp(parcours->a_subroutine,subroutinename) &&
75                  !strcasecmp(parcours->a_module,nommodule) ) out = 1;
76            else
77               parcours=parcours->suiv;
78         }
79         if ( out == 0 )
80         {
81            if (  !strcasecmp(parcours->a_nomvar,nom) &&
82                  !strcasecmp(parcours->a_subroutine,subroutinename) &&
83                  !strcasecmp(parcours->a_module,nommodule) ) out = 1;
84            else
85            {
86               /* add the record                                              */
87              newvar = (listallocate *)malloc(sizeof(listallocate));
88              strcpy(newvar->a_nomvar,nom);
89              Save_Length(nom,25);
90              strcpy(newvar->a_subroutine,subroutinename);
91              Save_Length(subroutinename,26);
92              strcpy(newvar->a_module,nommodule);
93              Save_Length(nommodule,27);
94              newvar->suiv = NULL;
95              parcours->suiv = newvar;
96            }
97         }
98      }
99   }
100}
101
102
103/******************************************************************************/
104/*                            IsVarAllocatable_0                              */
105/******************************************************************************/
106/* Firstpass 0                                                                */
107/******************************************************************************/
108/*                                                                            */
109/******************************************************************************/
110int IsVarAllocatable_0(char *ident)
111{
112   listallocate *parcours;
113   int out;
114
115   out = 0 ;
116   if ( firstpass == 0 )
117   {
118      parcours = List_Allocate_Var;
119      while ( parcours && out == 0 )
120      {
121         if ( !strcasecmp(parcours->a_nomvar,ident)  ) out = 1 ;
122         else parcours=parcours->suiv;
123      }
124   }
125   return out;
126}
127
128
129/******************************************************************************/
130/*                          varisallocatable_0                                */
131/******************************************************************************/
132/* Firstpass 0                                                                */
133/******************************************************************************/
134/*                                                                            */
135/******************************************************************************/
136int varisallocatable_0(char *ident)
137{
138   listallocate *newvaralloc;
139   int out;
140
141   out =0;
142   if (firstpass == 0 )
143   {
144         newvaralloc = List_Allocate_Var;
145         while ( newvaralloc && out == 0 )
146         {
147            if ( !strcasecmp(ident,newvaralloc->a_nomvar) )  out = 1;
148            else newvaralloc = newvaralloc->suiv;
149         }
150   }
151   return out;
152}
Note: See TracBrowser for help on using the repository browser.