]> Creatis software - bbtk.git/blob - packages/std/src/bbstdASCII.cxx
New widget pipeline : progressing ...
[bbtk.git] / packages / std / src / bbstdASCII.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbstdASCII.cxx,v $
4   Language:  C++
5   Date:      $Date: 2008/11/25 11:17:20 $
6   Version:   $Revision: 1.6 $
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
14 *  This software is governed by the CeCILL-B license under French law and 
15 *  abiding by the rules of distribution of free software. You can  use, 
16 *  modify and/ or redistribute the software under the terms of the CeCILL-B 
17 *  license as circulated by CEA, CNRS and INRIA at the following URL 
18 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
19 *  or in the file LICENSE.txt.
20 *
21 *  As a counterpart to the access to the source code and  rights to copy,
22 *  modify and redistribute granted by the license, users are provided only
23 *  with a limited warranty  and the software's author,  the holder of the
24 *  economic rights,  and the successive licensors  have only  limited
25 *  liability. 
26 *
27 *  The fact that you are presently reading this means that you have had
28 *  knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */                                                                         
30
31
32 #include "bbstdASCII.h"
33 #include "bbstdPackage.h"
34 namespace bbstd
35 {
36   
37   BBTK_ADD_BLACK_BOX_TO_PACKAGE(std,ASCII);
38   BBTK_BLACK_BOX_IMPLEMENTATION(ASCII,bbtk::AtomicBlackBox);
39   void ASCII::Process()
40   {
41     int asciiValue;
42     char strTmp[10];
43     std::string result("");
44     if (bbGetInputIn()!=""){
45       
46       if (bbGetInputType()==0){
47         std::string commandstr(bbGetInputIn());
48         bool ok=true;
49         int pos1=0,pos2;
50         pos2 = commandstr.find(" ",pos1);
51         std::string ccommand;
52         while (ok==true)
53           {
54             if (pos2==-1)       
55               {
56                 ok=false;
57                 ccommand=commandstr.substr(pos1,commandstr.length()-pos1 );
58               }         else  {
59               ccommand=commandstr.substr(pos1,pos2-pos1);
60             }
61             asciiValue = atoi( ccommand.c_str() );
62             sprintf(strTmp,"%c",asciiValue);
63             result += strTmp;
64             
65             pos1=pos2+1;
66             pos2 = commandstr.find(" ",pos2+1);
67           } // while
68       } // if Type 0
69       
70       if (bbGetInputType()==1){
71         int i,size=bbGetInputIn().size();
72         for (i=0;i<size;i++){
73           asciiValue = (int)bbGetInputIn()[i];
74           sprintf(strTmp,"%d",asciiValue);
75           result +=strTmp;
76           if (i!=size-1) {
77             result +=" ";
78           } // i!=size-1
79         } // for
80       } // Type 1
81     }
82     bbSetOutputOut( result );  
83   }
84   
85   void ASCII::bbUserConstructor()
86   {
87     bbSetInputIn("");
88     bbSetInputType(0);
89   }
90   
91   void ASCII::bbUserCopyConstructor(bbtk::BlackBox::Pointer)
92   {    
93   }
94   
95   void ASCII::bbUserDestructor()
96   {
97   }
98 }
99 // EO namespace bbstd
100
101