Report.cpp
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:10k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. /*
  2. Cross Platform Core Code.
  3. Copyright(R) 2001-2002 Balang Software.
  4. All rights reserved.
  5. Using:
  6. class CReport;
  7. */
  8. #include "StdAfx.h"
  9. #include "../Include/Stock.h"
  10. #ifdef _DEBUG
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. #ifdef _DEBUG
  15. #define new DEBUG_NEW
  16. #endif
  17. /////////////////////////////////////////////////////////////////////////////
  18. CReport::CReport()
  19. {
  20. m_pData = NULL;
  21. m_nSize = m_nMaxSize = m_nGrowBy = 0;
  22. }
  23. CReport::CReport( const CReport &src )
  24. {
  25. m_pData = NULL;
  26. m_nSize = m_nMaxSize = m_nGrowBy = 0;
  27. *this = src;
  28. }
  29. CReport::~CReport()
  30. {
  31. if( m_pData )
  32. delete [] (BYTE*)m_pData;
  33. }
  34. void CReport::SetSize(int nNewSize, int nGrowBy /* = -1 */)
  35. {
  36. SP_ASSERT(nNewSize >= 0);
  37. if (nGrowBy != -1)
  38. m_nGrowBy = nGrowBy;  // set new size
  39. if (nNewSize == 0)
  40. {
  41. // shrink to nothing
  42. delete [] (BYTE*)m_pData;
  43. m_pData = NULL;
  44. m_nSize = m_nMaxSize = 0;
  45. }
  46. else if (m_pData == NULL)
  47. {
  48. // create one with exact size
  49. #ifdef SIZE_T_MAX
  50. SP_ASSERT((long)nNewSize * sizeof(REPORT) <= SIZE_T_MAX);  // no overflow
  51. #endif
  52. m_pData = (REPORT*) new BYTE[nNewSize * sizeof(REPORT)];
  53. memset(m_pData, 0, nNewSize * sizeof(REPORT));  // zero fill
  54. m_nSize = m_nMaxSize = nNewSize;
  55. }
  56. else if (nNewSize <= m_nMaxSize)
  57. {
  58. // it fits
  59. if (nNewSize > m_nSize)
  60. {
  61. // initialize the new elements
  62. memset(&m_pData[m_nSize], 0, (nNewSize-m_nSize) * sizeof(REPORT));
  63. }
  64. m_nSize = nNewSize;
  65. }
  66. else
  67. {
  68. // Otherwise grow array
  69. int nNewMax;
  70. if (nNewSize < m_nMaxSize + m_nGrowBy)
  71. nNewMax = m_nMaxSize + m_nGrowBy;  // granularity
  72. else
  73. nNewMax = nNewSize;  // no slush
  74. #ifdef SIZE_T_MAX
  75. SP_ASSERT((long)nNewMax * sizeof(REPORT) <= SIZE_T_MAX);  // no overflow
  76. #endif
  77. REPORT* pNewData = (REPORT*) new BYTE[nNewMax * sizeof(REPORT)];
  78. // copy new data from old
  79. memcpy(pNewData, m_pData, m_nSize * sizeof(REPORT));
  80. // construct remaining elements
  81. SP_ASSERT(nNewSize > m_nSize);
  82. memset(&pNewData[m_nSize], 0, (nNewSize-m_nSize) * sizeof(REPORT));
  83. // get rid of old stuff (note: no destructors called)
  84. delete [] (BYTE*)m_pData;
  85. m_pData = pNewData;
  86. m_nSize = nNewSize;
  87. m_nMaxSize = nNewMax;
  88. }
  89. }
  90. void CReport::FreeExtra()
  91. {
  92. if (m_nSize != m_nMaxSize)
  93. {
  94. // shrink to desired size
  95. #ifdef SIZE_T_MAX
  96. SP_ASSERT((long)m_nSize * sizeof(REPORT) <= SIZE_T_MAX);  // no overflow
  97. #endif
  98. REPORT* pNewData = NULL;
  99. if (m_nSize != 0)
  100. {
  101. pNewData = (REPORT*) new BYTE[m_nSize * sizeof(REPORT)];
  102. // copy new data from old
  103. memcpy(pNewData, m_pData, m_nSize * sizeof(REPORT));
  104. }
  105. // get rid of old stuff (note: no destructors called)
  106. delete [] (BYTE*)m_pData;
  107. m_pData = pNewData;
  108. m_nMaxSize = m_nSize;
  109. }
  110. }
  111. /////////////////////////////////////////////////////////////////////////////
  112. void CReport::SetAtGrow(int nIndex, REPORT newElement)
  113. {
  114. SP_ASSERT(nIndex >= 0);
  115. if (nIndex >= m_nSize)
  116. SetSize(nIndex+1);
  117. m_pData[nIndex] = newElement;
  118. }
  119. void CReport::InsertAt(int nIndex, REPORT newElement, int nCount /*=1*/)
  120. {
  121. SP_ASSERT(nIndex >= 0);    // will expand to meet need
  122. SP_ASSERT(nCount > 0);     // zero or negative size not allowed
  123. if (nIndex >= m_nSize)
  124. {
  125. // adding after the end of the array
  126. SetSize(nIndex + nCount);  // grow so nIndex is valid
  127. }
  128. else
  129. {
  130. // inserting in the middle of the array
  131. int nOldSize = m_nSize;
  132. SetSize(m_nSize + nCount);  // grow it to new size
  133. // shift old data up to fill gap
  134. memmove(&m_pData[nIndex+nCount], &m_pData[nIndex],
  135. (nOldSize-nIndex) * sizeof(REPORT));
  136. // re-init slots we copied from
  137. memset(&m_pData[nIndex], 0, nCount * sizeof(REPORT));
  138. }
  139. // insert new value in the gap
  140. SP_ASSERT(nIndex + nCount <= m_nSize);
  141. while (nCount--)
  142. m_pData[nIndex++] = newElement;
  143. }
  144. void CReport::RemoveAt(int nIndex, int nCount /* = 1 */)
  145. {
  146. SP_ASSERT(nIndex >= 0);
  147. SP_ASSERT(nCount >= 0);
  148. SP_ASSERT(nIndex + nCount <= m_nSize);
  149. // just remove a range
  150. int nMoveCount = m_nSize - (nIndex + nCount);
  151. if (nMoveCount)
  152. memcpy(&m_pData[nIndex], &m_pData[nIndex + nCount],
  153. nMoveCount * sizeof(REPORT));
  154. m_nSize -= nCount;
  155. }
  156. void CReport::InsertAt(int nStartIndex, CReport* pNewArray)
  157. {
  158. SP_ASSERT(pNewArray != NULL);
  159. SP_ASSERT(nStartIndex >= 0);
  160. if (pNewArray->GetSize() > 0)
  161. {
  162. InsertAt(nStartIndex, pNewArray->GetAt(0), pNewArray->GetSize());
  163. for (int i = 0; i < pNewArray->GetSize(); i++)
  164. SetAt(nStartIndex + i, pNewArray->GetAt(i));
  165. }
  166. }
  167. int CReport::InsertReportSort( REPORT newElement )
  168. {
  169. if( newElement.m_time <= 0 )
  170. return -1;
  171. if( newElement.m_fNew < 1e-4 )
  172. return -1;
  173. if( newElement.m_fVolume < 1e-4 )
  174. return -1;
  175. if( !CSPTime::InTradeTime( newElement.m_time, 60 ) )
  176. return -1;
  177. for( int i=GetSize()-1; i>=0; i-- )
  178. {
  179. REPORT & temp = ElementAt(i);
  180. if( newElement.m_time == temp.m_time )
  181. {
  182. SetAt(i,newElement);
  183. return i;
  184. }
  185. if( fabs(newElement.m_fVolume - temp.m_fVolume) < 1e-4 )
  186. {
  187. SetAt(i,newElement);
  188. return i;
  189. }
  190. if( newElement.m_time >= temp.m_time && newElement.m_fVolume > temp.m_fVolume )
  191. {
  192. InsertAt(i+1,newElement);
  193. return i+1;
  194. }
  195. if( newElement.m_time > temp.m_time && newElement.m_fVolume < temp.m_fVolume )
  196. return -1;
  197. if( newElement.m_time < temp.m_time && newElement.m_fVolume > temp.m_fVolume )
  198. return -1;
  199. }
  200. InsertAt( 0, newElement );
  201. return 0;
  202. }
  203. int SortReport(const void *p1,const void *p2)
  204. {
  205. REPORT *pTemp1 = (REPORT *)p1;
  206. REPORT *pTemp2 = (REPORT *)p2;
  207. if( pTemp1 && pTemp2 && pTemp1->m_time < pTemp2->m_time )
  208. return -1;
  209. else if( pTemp1 && pTemp2 && pTemp1->m_time > pTemp2->m_time )
  210. return 1;
  211. if( pTemp1 && pTemp2 && pTemp1->m_fVolume < pTemp2->m_fVolume )
  212. return -1;
  213. else if( pTemp1 && pTemp2 && pTemp1->m_fVolume > pTemp2->m_fVolume )
  214. return 1;
  215. return 0;
  216. }
  217. void CReport::Sort( )
  218. {
  219. if( m_pData )
  220. qsort( m_pData, GetSize(), sizeof(REPORT), SortReport );
  221. }
  222. void CReport::RemoveDirty( )
  223. {
  224. for( int i=GetSize()-1; i>=0; i-- )
  225. {
  226. if( ElementAt(i).m_time <= 0 )
  227. RemoveAt(i);
  228. else if( ElementAt(i).m_fNew < 1e-4 )
  229. RemoveAt(i);
  230. else if( ElementAt(i).m_fVolume < 1e-4 )
  231. RemoveAt(i);
  232. else if( !CSPTime::InTradeTime( ElementAt(i).m_time, 60 ) )
  233. RemoveAt(i);
  234. else if( i>0 && ElementAt(i).m_fVolume - ElementAt(i-1).m_fVolume < 1e-4 )
  235. RemoveAt(i);
  236. }
  237. }
  238. CReport & CReport::operator = ( const CReport &src )
  239. {
  240. Copy( src );
  241. return *this;
  242. }
  243. void CReport::Copy( const CReport &src )
  244. {
  245. SetSize( 0, src.GetSize()+5 );
  246. for( int i=0; i<src.GetSize(); i++ )
  247. {
  248. Add( src.GetAt(i) );
  249. }
  250. }
  251. BOOL CReport::GetMMLD( int nIndex, double *pdVolBuy, double *pdVolSell, double * pdVolDiff )
  252. {
  253. SP_ASSERT( nIndex >= 0 && nIndex < GetSize() );
  254. if( nIndex < 0 || nIndex > GetSize()-1 )
  255. return FALSE;
  256. double dVolBuy = 0;
  257. double dVolSell = 0;
  258. REPORT & rpt = ElementAt(nIndex);
  259. for(int k=0; k<sizeof(rpt.m_fBuyVolume)/sizeof(rpt.m_fBuyVolume[0]); k++ )
  260. dVolBuy += rpt.m_fBuyVolume[k];
  261. for( k=0; k<sizeof(rpt.m_fSellVolume)/sizeof(rpt.m_fSellVolume[0]); k++ )
  262. dVolSell += rpt.m_fSellVolume[k];
  263. if( pdVolBuy ) *pdVolBuy = dVolBuy;
  264. if( pdVolSell ) *pdVolSell = dVolSell;
  265. if( pdVolDiff ) *pdVolDiff = (dVolBuy-dVolSell);
  266. return TRUE;
  267. }
  268. BOOL CReport::GetMMLDMinMaxInfo( double *pdMin, double *pdMax )
  269. {
  270. double dMin = 0, dMax = 1;
  271. for( int i=0; i<GetSize(); i++ )
  272. {
  273. double dVolBuy = 0;
  274. double dVolSell = 0;
  275. GetMMLD( i, &dVolBuy, &dVolSell, NULL );
  276. if( 0 == i )
  277. {
  278. dMin = dVolBuy;
  279. dMax = dVolBuy;
  280. }
  281. if( dVolBuy < dMin ) dMin = dVolBuy;
  282. if( dVolBuy > dMax ) dMax = dVolBuy;
  283. if( dVolSell < dMin ) dMin = dVolSell;
  284. if( dVolSell > dMax ) dMax = dVolSell;
  285. }
  286. if( dMax < 500 )
  287. dMax = 500; // 最小为5手
  288. if( pdMin ) *pdMin = dMin;
  289. if( pdMax ) *pdMax = dMax;
  290. return TRUE;
  291. }
  292. BOOL CReport::StatBuySellEx( float * fSellPrice, float * fSellVolume, float * fBuyPrice, float * fBuyVolume, int nSize )
  293. {
  294. for( int k=0; k<nSize; k++ )
  295. {
  296. fSellPrice[k] = 0.;
  297. fSellVolume[k] = 0.;
  298. fBuyPrice[k] = 0.;
  299. fBuyVolume[k] = 0.;
  300. }
  301. CSPDWordArray adwSellPrice, adwSellVolume, adwBuyPrice, adwBuyVolume;
  302. REPORT rpt;
  303. memset( &rpt, 0, sizeof(rpt) );
  304. int nBSCount = sizeof(rpt.m_fBuyPrice)/sizeof(float);
  305. for( k=0; k<GetSize(); k++ )
  306. {
  307. REPORT & report = ElementAt(k);
  308. // Insert
  309. for( int i=nBSCount-1; i>=0; i-- )
  310. {
  311. if( report.m_fSellPrice[i] > 1e-4 )
  312. {
  313. adwSellPrice.InsertAt( 0, DWORD(report.m_fSellPrice[i]*1000) );
  314. adwSellVolume.InsertAt( 0, DWORD(report.m_fSellVolume[i]) );
  315. }
  316. if( report.m_fBuyPrice[i] > 1e-4 )
  317. {
  318. adwBuyPrice.InsertAt( 0, DWORD(report.m_fBuyPrice[i]*1000) );
  319. adwBuyVolume.InsertAt( 0, DWORD(report.m_fBuyVolume[i]) );
  320. }
  321. }
  322. // Remove 
  323. DWORD dwSellMin = 0;
  324. for( i=0; i<adwSellPrice.GetSize(); i++ )
  325. {
  326. if( adwSellPrice[i] < dwSellMin+1e-4 )
  327. {
  328. adwSellPrice.RemoveAt(i);
  329. adwSellVolume.RemoveAt(i);
  330. i --;
  331. }
  332. else
  333. {
  334. dwSellMin = adwSellPrice[i];
  335. }
  336. }
  337. DWORD dwBuyMax = 0;
  338. for( i=0; i<adwBuyPrice.GetSize(); i++ )
  339. {
  340. if( 0 != dwBuyMax && adwBuyPrice[i] > dwBuyMax-1e-4 )
  341. {
  342. adwBuyPrice.RemoveAt(i);
  343. adwBuyVolume.RemoveAt(i);
  344. i --;
  345. }
  346. else
  347. {
  348. dwBuyMax = adwBuyPrice[i];
  349. }
  350. }
  351. }
  352. // Store
  353. for( k=0; k<nSize && k<adwSellPrice.GetSize(); k++ )
  354. {
  355. fSellPrice[k] = float(0.001 * adwSellPrice[k]);
  356. fSellVolume[k] = float(adwSellVolume[k]);
  357. }
  358. for( k=0; k<nSize && k<adwBuyPrice.GetSize(); k++ )
  359. {
  360. fBuyPrice[k] = float(0.001 * adwBuyPrice[k]);
  361. fBuyVolume[k] = float(adwBuyVolume[k]);
  362. }
  363. return TRUE;
  364. }
  365. /////////////////////////////////////////////////////////////////////////////