-
Notifications
You must be signed in to change notification settings - Fork 2
/
RNA.cpp
488 lines (445 loc) · 14.5 KB
/
RNA.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
// DataChain.cpp: implementation of the RNA class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "ColorEyeI.h"
#include "RNA.h"
#include <algorithm>
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
#ifdef _DEBUG
#define debugCode( code_fragment ) { code_fragment }
#else
#define debugCode( code_fragment )
#endif
//////////////////////////////////////////////////////////////////////////
//sort
bool RNA::areaPriority(const Cartridge2 &sp1, const Cartridge2 &sp2)
{
return (sp1.GetSqncArea() < sp2.GetSqncArea()) ? 1 : 0;
}
bool RNA::origPriority(const Cartridge2 &sp1, const Cartridge2 &sp2)
{
return (sp1.GetSqncFrm() < sp2.GetSqncFrm()) ? 1 : 0;
}
// void RNA::SortQuackMsr(std::vector<Cartridge2>& vCar) const
// {
// std::stable_sort(vCar.begin(), vCar.end(), areaPriority);
// }
//
// void RNA::SortOrigMsr(std::vector<Cartridge2>& vCar) const
// {
// std::stable_sort(vCar.begin(), vCar.end(), origPriority);
// }
void RNA::SortQuackMsr()
{
std::stable_sort(Begin(), End(), areaPriority);
}
void RNA::SortOrigMsr()
{
std::stable_sort(Begin(), End(), origPriority);
}
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
RNA::RNA()//: p_Pusher(0)
{
Cartridge2 x;
m_CarChain2.push_back(x);
}
RNA::~RNA()
{
m_CarChain2.clear();
}
// const Cartridge2& RNA::At(const Cartridge2& _C2) const
// {
// for (std::vector<Cartridge2>::const_iterator citor = m_CarChain2.begin(); citor != m_CarChain2.end(); ++citor)
// if (_C2 == *citor)
// return m_CarChain2.at(abs(citor - m_CarChain2.begin()));
//
// return m_CarChain2.at(0);
// }
//
const Cartridge2& RNA::At(const std::vector<Cartridge2>::size_type& _P) const
{ return m_CarChain2.at(_P); };
float RNA::fFind(const CString& _C, const CString& _P, const CString& _M, const CString& _F, const ValueKind& _V){ return Find(_C, _P, _M, _F).GetBullet().oFlt(_V);}
CString RNA::sFind(const CString& _C, const CString& _P, const CString& _M, const CString& _F, const ValueKind& _V){ return Find(_C, _P, _M, _F).GetBullet().oStr(_V);}
#ifdef _DEBUG
float RNA::fFind(const CString& _C, const int& _P, const CString& _M, const CString& _F, const ValueKind& _V){ paraError(); return 0.0000;}
float RNA::fFind(const CString& _C, const CString& _P, const int& _M, const CString& _F, const ValueKind& _V){ paraError(); return 0.0000;}
float RNA::fFind(const CString& _C, const int& _P, const int& _M, const CString& _F, const ValueKind& _V){ paraError(); return 0.0000;}
CString RNA::sFind(const CString& _C, const int& _P, const CString& _M, const CString& _F, const ValueKind& _V){ paraError(); return "0.0000";}
CString RNA::sFind(const CString& _C, const CString& _P, const int& _M, const CString& _F, const ValueKind& _V){ paraError(); return "0.0000";}
CString RNA::sFind(const CString& _C, const int& _P, const int& _M, const CString& _F, const ValueKind& _V){ paraError(); return "0.0000";}
void RNA::paraError()
{
AfxMessageBox("檢查一下參數有沒有加\"\"");
ASSERT(0);
}
#endif
std::vector<int>::size_type RNA::HaveSeveral(const CString& color, const CString& ptTotal, const CString& mrIndex, const CString& fePara)
{
CString clr(color);
CString ptTtl(ptTotal);
CString mrIdx(mrIndex);
CString fePr(fePara);
std::vector<int> vSub;
if ( finder.ReconstrKeyWord(clr, ptTtl, mrIdx, fePr) )
{
for (std::vector<Cartridge2>::iterator itor = m_CarChain2.begin(); itor != m_CarChain2.end(); ++itor)
{
if ( (itor->GetDescrip().Find(clr) >= 0) && (itor->GetDescrip().Find(ptTtl) >= 0) &&
(itor->GetDescrip().Find(mrIdx) >= 0) && (itor->GetDescrip().Find(fePr) >= 0) )
vSub.push_back(itor - m_CarChain2.begin());
}
}
return vSub.size();
}
Cartridge2& RNA::Find(const CString& color, const CString& ptTotal, const CString& mrIndex, const CString& fePara)
{
/*
將關鍵字切成 1. x色, 2. x點, 3. 第x點, 4. 離邊參數 三個部份
然後重建成三個詞(三個函數)
再進行交集搜尋(試試可以可以使用遞迴)
*/
CString clr(color);
CString ptTtl(ptTotal);
CString mrIdx(mrIndex);
CString fePr(fePara);
CString sample;
std::vector<int> vSub;
if (finder.Reconstr(clr, ptTtl, mrIdx, fePr))
{
sample.Format("%s%s%s%s", clr, ptTtl, mrIdx, fePr);
for ( std::vector<Cartridge2>::const_iterator itor = m_CarChain2.begin(); itor != m_CarChain2.end(); ++itor)
{
if ( itor->GetDescrip().Find(sample) >= 0 )
{
CString debugCharPtr = itor->GetDescrip();
vSub.push_back(itor - m_CarChain2.begin());
}
}
}
if (vSub.size() == 1)
return m_CarChain2.at(vSub.at(0));
else
return m_CarChain2.at(0);
}
Cartridge2& RNA::Find(const CString& sample)
{
/*
將關鍵字切成 1. x色, 2. x點, 3. 第x點, 4. 離邊參數 三個部份
然後重建成三個詞(三個函數)
再進行交集搜尋(試試可以可以使用遞迴)
*/
CString smple(sample);
std::vector<int> vSub;
if (finder.Reconstr(smple))
{
for (std::vector<Cartridge2>::const_iterator itor = m_CarChain2.begin(); itor != m_CarChain2.end(); ++itor)
{
//if (sample == itor->GetDescrip())
if ( itor->GetDescrip().Find(smple) >= 0 )
vSub.push_back(itor - m_CarChain2.begin());
}
}
if (vSub.size() == 1)
return m_CarChain2.at(vSub.at(0));
else
return m_CarChain2.at(0);
}
// const int RNA::reconstrColor(CString& strResult)
// {
// int colorName(0);
//
// //Crosstalk+矩形
// colorName = strResult.Find("Cross");
// if (colorName >= 0)
// {
// strResult.Format("%s", strResult.Mid(colorName, 13));
// return colorName;
// }
//
// //Nits
// colorName = strResult.Find("Nits");
// if (colorName >= 0)
// {
// strResult.Format("%s", strResult.Mid(colorName, 4));
// return colorName;
// }
//
// //x色
// colorName = strResult.Find("色") - 2;
//
// if (colorName >= 0)
// {
// strResult.Format("%s", strResult.Mid(colorName, 2));
// return colorName;
// }
//
// return colorName;
// }
//
// const int RNA::reconstrPointNum(CString& strResult)
// {
// int colorName(0);
//
// //Gamma
// colorName = strResult.Find("Gamma");
// if (colorName >= 0)
// {
// strResult.Format("%s", strResult.Mid(colorName, 5));
// return colorName;
// }
//
// //中心點
// colorName = strResult.Find("中心點");
// if (colorName >= 0)
// {
// strResult.Format("中心點");
// return colorName;
// }
//
// colorName = strResult.Find("1點");
// if (colorName >= 0)
// {
// strResult.Format("中心點");
// return colorName;
// }
//
// //數字 點
// const int shift = 2;
// colorName = strResult.Find("點") - (3+shift);
// if (colorName >= 0-(3+shift) && atoi(strResult))
// {
// strResult.Format("%s", strResult.Mid(colorName, 3));
// return colorName;
// }
//
// colorName = strResult.Find("點") - (2+shift);
// if (colorName >= 0-(2+shift) && atoi(strResult))
// {
// strResult.Format("%s", strResult.Mid(colorName, 2));
// return colorName;
// }
//
// colorName = strResult.Find("點") - (1+shift);
// if (colorName >= 0-(1+shift) && atoi(strResult))
// {
// strResult.Format("%s", strResult.Mid(colorName, 1));
// return colorName;
// }
//
// // if (colorName >= 0)
// // strResult.Format("%s", strResult.Mid(colorName, 2));
//
// return colorName;
// }
// const int RNA::reconstrMsrNo(CString& strResult)
// {
// const int shift = 2;
// int colorName(0);
//
// colorName = strResult.Find("第") + shift;
// if (colorName >= 0+shift && atoi(strResult.Mid(colorName, 3)))
// {
// strResult.Format("第%s點", strResult.Mid(colorName, 3));
// return colorName;
// }
//
// colorName = strResult.Find("第") + shift;
// if (colorName >= 0+shift && atoi(strResult.Mid(colorName, 2)))
// {
// strResult.Format("%s", strResult.Mid(colorName, 2));
// return colorName;
// }
//
// colorName = strResult.Find("第") + shift;
// if (colorName >= 0+shift && atoi(strResult.Mid(colorName, 1)))
// {
// strResult.Format("%s", strResult.Mid(colorName, 1));
// return colorName;
// }
//
// return colorName;
// }
void RNA::Empty()
{
m_CarChain2.clear();
Cartridge2 x;
m_CarChain2.push_back(x);
}
// void RNA::CutEqualCell(std::vector<Cartridge2> compData)
// {
// if (!compData.empty())
// {
// std::vector<Cartridge2>::iterator compItor, removeBeginItor;
//
// for (compItor = compData.begin(); compItor != compData.end(); ++compItor)
// {
// removeBeginItor = std::remove(Begin(), End(), *compItor);
// m_CarChain2.erase(removeBeginItor, End());
// }
// }
// }
void RNA::CutEqualCell(const RNA& compData)
{
if (!compData.IsEmpty())//裡面這些不要修改,影響再次量測的資料擺放
{
CString str;
debugLogMaker.Clear();
//在這時
//m_CarChain2是舊
//compData是新的
std::vector<Cartridge2>::const_iterator rnaitor = 0, compItor;
debugCode(
str.Format("Begin: %X, End: %X\n", Begin(), End());
debugLogMaker.Add(str);
debugLogMaker.Add("\nRNA原本的位址\n");
for (rnaitor = m_CarChain2.begin();
rnaitor != m_CarChain2.end(); ++rnaitor)
{
str.Format("%X, c(%d, %d, %d), P(%d, %d), status: %s\n",\
rnaitor,\
rnaitor->GetBkColor().R(), rnaitor->GetBkColor().G(), rnaitor->GetBkColor().B(),\
rnaitor->GetPointPosi().x, rnaitor->GetPointPosi().y,\
rnaitor->GetStrBkStatus());
debugLogMaker.Add(str);
}
debugLogMaker.Add("\ncompData的位址\n");
for (compItor = compData.Begin(); compItor != compData.End(); ++compItor)
{
str.Format("%X, c(%d, %d, %d), P(%d, %d), status: %s\n",\
compItor,\
compItor->GetBkColor().R(), compItor->GetBkColor().G(), compItor->GetBkColor().B(),\
compItor->GetPointPosi().x, compItor->GetPointPosi().y,\
compItor->GetStrBkStatus());
debugLogMaker.Add(str);
}
)
//remove & cut 在新的裡面,比對舊的,代表重覆,重覆量測去除掉
// removeItor = ;
debugCode(
str.Format("\nremoveItor:\n");
debugLogMaker.Add("\nremoveItor:\n");
)
std::vector<Cartridge2>::iterator removeItor(End());
for (compItor = compData.Begin(); compItor != compData.End(); ++compItor)
{
//移動一個元素到最後,就刪掉
debugCode(
str.Format("B. %X\n", removeItor);
debugLogMaker.Add(str);
)
//removeItor = std::remove(Begin(), removeItor, *compItor);//確認compData的資料是沒錯的
removeItor = std::remove(Begin(), removeItor, *compItor);
debugCode(
str.Format("A. %x\n", removeItor);
debugLogMaker.Add(str);
)
}
m_CarChain2.erase(removeItor, End());
debugCode(
debugLogMaker.Add("\nRNA後來的位址\n");
for (rnaitor = m_CarChain2.begin();
rnaitor != m_CarChain2.end(); ++rnaitor)
{
str.Format("%X, c(%d, %d, %d), P(%d, %d), status: %s\n",\
rnaitor,\
rnaitor->GetBkColor().R(), rnaitor->GetBkColor().G(), rnaitor->GetBkColor().B(),\
rnaitor->GetPointPosi().x, rnaitor->GetPointPosi().y,\
rnaitor->GetStrBkStatus());
debugLogMaker.Add(str);
}
)
}
CColorEyeIApp* pApp = dynamic_cast<CColorEyeIApp*>(AfxGetApp());
ASSERT_VALID(pApp);
DebugCode( m_desktopPath.Format("%s", pApp->GetDesktopPath()); )
debugLogMaker.Out2File(m_desktopPath+"//RNA_address.log");
}
void RNA::DeleteEmptyCell()
{
//適用於InitStd之後收集資料完,再free掉沒有資料的Cell
RNA x;
for (std::vector<Cartridge2>::iterator itor = Begin(); itor != End(); ++itor)
{
if (itor->GetBullet().IsEmpty() == TRUE)
x.AddCell(*itor); //要剪掉的
}
//x.push_back(*itor);
// debugFile freeEmpty;
// for (std::vector<Cartridge2>::iterator itorX = x.Begin(); itorX != x.End(); ++itorX)
// {
// freeEmpty.Add(itorX->GetDescrip() + "\n");
// }
// freeEmpty.Out2File("C:\\Users\\1004066\\Desktop\\freeEmpty.log");
CutEqualCell(x);
}
//////////////////////////////////////////////////////////////////////////
// std::vector<Cartridge2>& RNA::operator=(const std::vector<Cartridge2>& vCar)
// {
// m_CarChain2 = vCar;
// return m_CarChain2;
// }
// std::vector<CString> RNA::InsideData()
// {
// std::vector<CString> vStr;
// CString str1;
//
// vStr.clear();
// str1.Format("記憶體位址 原始順序 區域碼 背景色碼 第幾點 量測點數 || Lv x y du dv T Duv X Y Z Doc:%d\n", m_CarChain2.size());
// vStr.push_back(str1);
//
// for (std::vector<Cartridge2>::const_iterator iter = m_CarChain2.begin(); iter != m_CarChain2.end(); ++iter)
// {
// CString str;
// // str.Format("%x %d %d %s %d %s %f %f %f %f %f %d %f %f %f %f\n",\
// // iter, //記憶體位址
// // iter->GetOrigSeqc(), //原始順序 99
// // iter->GetArea(), //區域碼
// // iter->GetStrColorType(), //背景色碼
// // iter->GetMsrFlowNo(), //第幾點
// // iter->GetStrPointNum(), //量測點數
// //
// // iter->GetLv(),
// // iter->GetSx(),
// // iter->GetSy(),
// // iter->GetDu(),
// // iter->GetDv(),
// // iter->GetT(),
// // iter->GetDuv(),
// // iter->GetX(),
// // iter->GetY(),
// // iter->GetZ()
// // );
//
// str.Format("%x %d %d %s %d %s || %s %s %s %s %s %s %s %s %s %s\n",\
// iter, //記憶體位址
// iter->GetOrigSeqc(), //原始順序 99
// iter->GetArea(), //區域碼
// iter->GetStrColorType(), //背景色碼
// iter->GetMsrFlowNo(), //第幾點
// iter->GetStrPointNum(), //量測點數
//
// iter->GetStrLv(),
// iter->GetStrSx(),
// iter->GetStrSy(),
// iter->GetStrDu(),
// iter->GetStrDv(),
// iter->GetStrT(),
// iter->GetStrDuv(),
// iter->GetStrX(),
// iter->GetStrY(),
// iter->GetStrZ()
// );
//
// //AfxMessageBox(iter->GetBullet().MsgBoxStr());
//
// vStr.push_back(str);
// }
// return vStr;
// }