]> Creatis software - bbtk.git/blob - packages/std/src/bbstdVectorFilterString.cxx
#3478 VectorfilterString Box add the insert string option
[bbtk.git] / packages / std / src / bbstdVectorFilterString.cxx
1 //===== 
2 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
3 //===== 
4 #include "bbstdVectorFilterString.h"
5 #include "bbstdPackage.h"
6 namespace bbstd
7 {
8
9 BBTK_ADD_BLACK_BOX_TO_PACKAGE(std,VectorFilterString)
10 BBTK_BLACK_BOX_IMPLEMENTATION(VectorFilterString,bbtk::AtomicBlackBox);
11 //===== 
12 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
13 //===== 
14
15 void VectorFilterString::ConnectionRepetitions( std::vector<std::string> vIn,std::vector<std::string> *vOut  )
16 {
17         int i,size=vIn.size();
18         int itmp=0, acum=0;
19         std::string stmp;
20         for( i=0;i<size;i++)
21         {
22                 if (vIn[i].compare( vIn[itmp])==0) 
23                 {
24                         acum++;
25                 } else {
26                         itmp=i;
27                         vOut->push_back(std::to_string(acum));
28                         acum=1;
29                 }
30         } // for
31         vOut->push_back(std::to_string(acum));
32 }
33
34 void VectorFilterString::FilterByFindinIn0()
35 {
36         std::vector<std::string> vOut0;
37         std::vector<std::string> vOut1;
38         std::vector<std::string> vOut2;
39         std::vector<std::string> vOut3;
40         std::vector<std::string> vOut4;
41         std::vector<std::string> vOut5;
42         std::vector<std::string> vOut6;
43         std::vector<std::string> vOut7;
44         std::vector<std::string> vOut8;
45         std::vector<std::string> vOut9;
46
47         int i,size = bbGetInputIn0().size();
48         int pos;
49         for (i=0; i<size; i++)
50         {
51                 pos=bbGetInputIn0()[i].find( bbGetInputsk1());
52                 if (  pos  >= 0)
53                 {
54                         vOut0.push_back( bbGetInputIn0()[i] );
55                         if ( i < bbGetInputIn1().size() ) { vOut1.push_back( bbGetInputIn1()[i] ); }
56                         if ( i < bbGetInputIn2().size() ) { vOut2.push_back( bbGetInputIn2()[i] ); }
57                         if ( i < bbGetInputIn3().size() ) { vOut3.push_back( bbGetInputIn3()[i] ); }
58                         if ( i < bbGetInputIn4().size() ) { vOut4.push_back( bbGetInputIn4()[i] ); }
59                         if ( i < bbGetInputIn5().size() ) { vOut5.push_back( bbGetInputIn5()[i] ); }
60                         if ( i < bbGetInputIn6().size() ) { vOut6.push_back( bbGetInputIn6()[i] ); }
61                         if ( i < bbGetInputIn7().size() ) { vOut7.push_back( bbGetInputIn7()[i] ); }
62                         if ( i < bbGetInputIn8().size() ) { vOut8.push_back( bbGetInputIn8()[i] ); }
63                         if ( i < bbGetInputIn9().size() ) { vOut9.push_back( bbGetInputIn9()[i] ); }
64                 } // if pos
65         } // for i
66         
67         bbSetOutputOut0( vOut0 );
68         bbSetOutputOut1( vOut1 );
69         bbSetOutputOut2( vOut2 );
70         bbSetOutputOut3( vOut3 );
71         bbSetOutputOut4( vOut4 );
72         bbSetOutputOut5( vOut5 );
73         bbSetOutputOut6( vOut6 );
74         bbSetOutputOut7( vOut7 );
75         bbSetOutputOut8( vOut8 );
76         bbSetOutputOut9( vOut9 );
77 }
78
79 void VectorFilterString::InsertStringPos()
80 {
81     std::vector<std::string> vOut0;
82     std::vector<std::string> vOut1;
83     std::vector<std::string> vOut2;
84     std::vector<std::string> vOut3;
85     std::vector<std::string> vOut4;
86     std::vector<std::string> vOut5;
87     std::vector<std::string> vOut6;
88     std::vector<std::string> vOut7;
89     std::vector<std::string> vOut8;
90     std::vector<std::string> vOut9;
91     int i,size      = bbGetInputIn0().size();
92     std::string sk1 = bbGetInputsk1();
93     int pos         = atoi( bbGetInputsk2().c_str() );
94     for (i=0; i<size; i++)
95     {
96         vOut0.push_back( bbGetInputIn0()[i].insert(pos,sk1) );
97         if ( i < bbGetInputIn1().size() ) { vOut1.push_back( bbGetInputIn1()[i].insert(pos,sk1) ); }
98         if ( i < bbGetInputIn2().size() ) { vOut2.push_back( bbGetInputIn2()[i].insert(pos,sk1) ); }
99         if ( i < bbGetInputIn3().size() ) { vOut3.push_back( bbGetInputIn3()[i].insert(pos,sk1) ); }
100         if ( i < bbGetInputIn4().size() ) { vOut4.push_back( bbGetInputIn4()[i].insert(pos,sk1) ); }
101         if ( i < bbGetInputIn5().size() ) { vOut5.push_back( bbGetInputIn5()[i].insert(pos,sk1) ); }
102         if ( i < bbGetInputIn6().size() ) { vOut6.push_back( bbGetInputIn6()[i].insert(pos,sk1) ); }
103         if ( i < bbGetInputIn7().size() ) { vOut7.push_back( bbGetInputIn7()[i].insert(pos,sk1) ); }
104         if ( i < bbGetInputIn8().size() ) { vOut8.push_back( bbGetInputIn8()[i].insert(pos,sk1) ); }
105         if ( i < bbGetInputIn9().size() ) { vOut9.push_back( bbGetInputIn9()[i].insert(pos,sk1) ); }
106     } // for i
107     bbSetOutputOut0( vOut0 );
108     bbSetOutputOut1( vOut1 );
109     bbSetOutputOut2( vOut2 );
110     bbSetOutputOut3( vOut3 );
111     bbSetOutputOut4( vOut4 );
112     bbSetOutputOut5( vOut5 );
113     bbSetOutputOut6( vOut6 );
114     bbSetOutputOut7( vOut7 );
115     bbSetOutputOut8( vOut8 );
116     bbSetOutputOut9( vOut9 );
117 }
118
119
120
121 void VectorFilterString::Process()
122 {
123
124 // THE MAIN PROCESSING METHOD BODY
125 //   Here we simply set the input 'In' value to the output 'Out'
126 //   And print out the output value
127 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
128 //    void bbSet{Input|Output}NAME(const TYPE&)
129 //    const TYPE& bbGet{Input|Output}NAME() const 
130 //    Where :
131 //    * NAME is the name of the input/output
132 //      (the one provided in the attribute 'name' of the tag 'input')
133 //    * TYPE is the C++ type of the input/output
134 //      (the one provided in the attribute 'type' of the tag 'input')
135
136 //    bbSetOutputOut( bbGetInputIn() );
137 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
138   
139         if (bbGetInputType()==0) 
140         {
141                 std::vector<std::string> vOut0;
142                 std::vector<std::string> vOut1;
143                 std::vector<std::string> vOut2;
144                 std::vector<std::string> vOut3;
145                 std::vector<std::string> vOut4;
146                 std::vector<std::string> vOut5;
147                 std::vector<std::string> vOut6;
148                 std::vector<std::string> vOut7;
149                 std::vector<std::string> vOut8;
150                 std::vector<std::string> vOut9;
151                 ConnectionRepetitions( bbGetInputIn0() , &vOut0 );
152                 ConnectionRepetitions( bbGetInputIn1() , &vOut1 );
153                 ConnectionRepetitions( bbGetInputIn2() , &vOut2 );
154                 ConnectionRepetitions( bbGetInputIn3() , &vOut3 );
155                 ConnectionRepetitions( bbGetInputIn4() , &vOut4 );
156                 ConnectionRepetitions( bbGetInputIn5() , &vOut5 );
157                 ConnectionRepetitions( bbGetInputIn6() , &vOut6 );
158                 ConnectionRepetitions( bbGetInputIn7() , &vOut7 );
159                 ConnectionRepetitions( bbGetInputIn8() , &vOut8 );
160                 ConnectionRepetitions( bbGetInputIn9() , &vOut9 );
161                 bbSetOutputOut0( vOut0 );
162                 bbSetOutputOut1( vOut1 );
163                 bbSetOutputOut2( vOut2 );
164                 bbSetOutputOut3( vOut3 );
165                 bbSetOutputOut4( vOut4 );
166                 bbSetOutputOut5( vOut5 );
167                 bbSetOutputOut6( vOut6 );
168                 bbSetOutputOut7( vOut7 );
169                 bbSetOutputOut8( vOut8 );
170                 bbSetOutputOut9( vOut9 );
171         }
172
173     if (bbGetInputType()==2)
174     {
175         FilterByFindinIn0();
176     }
177
178     if (bbGetInputType()==3)
179     {
180         InsertStringPos();
181     }
182 }
183 //===== 
184 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
185 //===== 
186 void VectorFilterString::bbUserSetDefaultValues()
187 {
188
189 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
190 //    Here we initialize the input 'In' to 0
191    bbSetInputType(0);
192    bbSetInputsk1("");
193    bbSetInputsk2("");
194 }
195 //===== 
196 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
197 //===== 
198 void VectorFilterString::bbUserInitializeProcessing()
199 {
200
201 //  THE INITIALIZATION METHOD BODY :
202 //    Here does nothing 
203 //    but this is where you should allocate the internal/output pointers 
204 //    if any 
205
206   
207 }
208 //===== 
209 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
210 //===== 
211 void VectorFilterString::bbUserFinalizeProcessing()
212 {
213
214 //  THE FINALIZATION METHOD BODY :
215 //    Here does nothing 
216 //    but this is where you should desallocate the internal/output pointers 
217 //    if any
218   
219 }
220
221 } // EO namespace bbstd
222
223