UtilFile.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. /* open_for_write */
  41. /******************************************************************************/
  42. /* This subroutine is used to open a file */
  43. /******************************************************************************/
  44. FILE* open_for_write (const char *filename)
  45. {
  46. char filefich[LONG_FNAME];
  47. sprintf(filefich,"%s/%s",include_dir,filename);
  48. return fopen(filefich, "w");
  49. }
  50. /******************************************************************************/
  51. /* open_for_append */
  52. /******************************************************************************/
  53. /* This subroutine is used to open a file with option a+ */
  54. /******************************************************************************/
  55. FILE* open_for_append (const char *filename)
  56. {
  57. char filefich[LONG_M];
  58. sprintf(filefich,"%s/%s",include_dir,filename);
  59. return fopen(filefich, "a+");
  60. }
  61. /******************************************************************************/
  62. /* setposcurname */
  63. /******************************************************************************/
  64. /* This subroutine is used to know the current position in the file in argument */
  65. /******************************************************************************/
  66. /* */
  67. /* setposcur ---------> position in file */
  68. /* */
  69. /******************************************************************************/
  70. long int setposcurname(FILE *fileout)
  71. {
  72. fflush(fileout);
  73. return ftell(fileout);
  74. }
  75. /******************************************************************************/
  76. /* setposcur */
  77. /******************************************************************************/
  78. /* This subroutine is used to know the current position in the file */
  79. /******************************************************************************/
  80. /* */
  81. /* setposcur ---------> position in file */
  82. /* */
  83. /******************************************************************************/
  84. long int setposcur()
  85. {
  86. return setposcurname(fortran_out);
  87. }
  88. /******************************************************************************/
  89. /* copyuse_0 */
  90. /******************************************************************************/
  91. /* Firstpass 0 */
  92. /* We should write in the fortran_out the USE tok_name */
  93. /* read in the original file */
  94. /******************************************************************************/
  95. /* */
  96. /******************************************************************************/
  97. void copyuse_0(const char *namemodule)
  98. {
  99. if ( IsTabvarsUseInArgument_0() == 1 )
  100. {
  101. /* We should write this declaration into the original subroutine too */
  102. fprintf(oldfortran_out," use %s\n", namemodule);
  103. }
  104. }
  105. /******************************************************************************/
  106. /* copyuseonly_0 */
  107. /******************************************************************************/
  108. /* Firstpass 0 */
  109. /* We should write in the fortran_out the USE tok_name, only */
  110. /* read in the original file */
  111. /******************************************************************************/
  112. /* */
  113. /******************************************************************************/
  114. void copyuseonly_0(const char *namemodule)
  115. {
  116. if (firstpass == 0 && IsTabvarsUseInArgument_0() == 1 )
  117. {
  118. /* We should write this declaration into the original subroutine too */
  119. fprintf(oldfortran_out," use %s , only : \n", namemodule);
  120. }
  121. }