]> Creatis software - crea.git/blob - appli/creaSed/creaSed.cpp
Feature #1711
[crea.git] / appli / creaSed / creaSed.cpp
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Santé)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9 #
10 #  This software is governed by the CeCILL-B license under French law and 
11 #  abiding by the rules of distribution of free software. You can  use, 
12 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
13 #  license as circulated by CEA, CNRS and INRIA at the following URL 
14 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
15 #  or in the file LICENSE.txt.
16 #
17 #  As a counterpart to the access to the source code and  rights to copy,
18 #  modify and redistribute granted by the license, users are provided only
19 #  with a limited warranty  and the software's author,  the holder of the
20 #  economic rights,  and the successive licensors  have only  limited
21 #  liability. 
22 #
23 #  The fact that you are presently reading this means that you have had
24 #  knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------ 
26 */ 
27
28 #include <stdio.h>
29 #include <iostream>
30 #include <fstream>
31 #include <sstream>
32 #include <vector>
33
34
35 //==========================================================================
36 void replace(std::string& str,
37                          const std::string& from, 
38              const std::string& to )
39 {
40         std::string::size_type pos = str.find( from );
41         while ( pos != std::string::npos )
42         {
43                 str.replace( pos, from.size(), to );
44                 pos = str.find( from, pos+from.size()-1 );
45         } 
46 }
47 //==========================================================================
48
49
50 //==========================================================================
51 int main(int argc, char **argv)
52 {
53           
54   if (argc!=4) 
55     {
56                 for(int i = 1; i < argc; i++){
57                         std::cerr << "||||      "<<argv[i]<<std::endl;
58                 }
59       std::cerr << "usage : "<< argv[0] <<" -fileIn  \"-FindString\" \"-ReplaceString\"" << std::endl;
60       return 1;
61     }
62
63   FILE *ffIn;
64   std::string fileIn;
65   std::string fileOut;
66   std::string findstring;
67   std::string replacestring;
68   std::string lineStr;
69   char strTmp[255];
70
71   fileIn        = argv[1];
72   findstring    = argv[2];
73   replacestring = argv[3];
74
75   errno_t errorOpen = fopen_s(&ffIn, fileIn.c_str(),"r");
76   if (!errorOpen && ffIn){
77         while(!feof(ffIn)){
78             fgets( strTmp , 255, ffIn );
79             lineStr=strTmp;
80             if( feof(ffIn) && (lineStr.length()==1) ) { 
81             } else {
82               replace( lineStr,findstring, replacestring );
83               std::cout << lineStr;
84             }
85         }
86         fclose(ffIn);   
87   } else {
88       std::cerr << "ERROR. File : "<< argv[1] <<" does not exists." << std::endl;
89       return 1;
90   }
91
92
93   return 0;
94 }
95 //==========================================================================
96
97