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

金融证券系统

开发平台:

Visual C++

  1. /*
  2. Cross Platform Core Code.
  3. Copyright(R) 2001-2002 Balang Software.
  4. All rights reserved.
  5. Using:
  6. class CDRData;
  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. CDRData::CDRData()
  19. {
  20. m_pData = NULL;
  21. m_nSize = m_nMaxSize = m_nGrowBy = 0;
  22. }
  23. CDRData::CDRData( const CDRData &src )
  24. {
  25. m_pData = NULL;
  26. m_nSize = m_nMaxSize = m_nGrowBy = 0;
  27. *this = src;
  28. }
  29. CDRData::~CDRData()
  30. {
  31. if( m_pData )
  32. delete [] (BYTE*)m_pData;
  33. }
  34. void CDRData::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(DRDATA) <= SIZE_T_MAX);  // no overflow
  51. #endif
  52. m_pData = (DRDATA*) new BYTE[nNewSize * sizeof(DRDATA)];
  53. memset(m_pData, 0, nNewSize * sizeof(DRDATA));  // 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(DRDATA));
  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(DRDATA) <= SIZE_T_MAX);  // no overflow
  76. #endif
  77. DRDATA* pNewData = (DRDATA*) new BYTE[nNewMax * sizeof(DRDATA)];
  78. // copy new data from old
  79. memcpy(pNewData, m_pData, m_nSize * sizeof(DRDATA));
  80. // construct remaining elements
  81. SP_ASSERT(nNewSize > m_nSize);
  82. memset(&pNewData[m_nSize], 0, (nNewSize-m_nSize) * sizeof(DRDATA));
  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 CDRData::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(DRDATA) <= SIZE_T_MAX);  // no overflow
  97. #endif
  98. DRDATA* pNewData = NULL;
  99. if (m_nSize != 0)
  100. {
  101. pNewData = (DRDATA*) new BYTE[m_nSize * sizeof(DRDATA)];
  102. // copy new data from old
  103. memcpy(pNewData, m_pData, m_nSize * sizeof(DRDATA));
  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 CDRData::SetAtGrow(int nIndex, DRDATA newElement)
  113. {
  114. SP_ASSERT(nIndex >= 0);
  115. if (nIndex >= m_nSize)
  116. SetSize(nIndex+1);
  117. m_pData[nIndex] = newElement;
  118. }
  119. void CDRData::InsertAt(int nIndex, DRDATA 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(DRDATA));
  136. // re-init slots we copied from
  137. memset(&m_pData[nIndex], 0, nCount * sizeof(DRDATA));
  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 CDRData::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(DRDATA));
  154. m_nSize -= nCount;
  155. }
  156. int CDRData::InsertDRDataSort( DRDATA newElement )
  157. {
  158. for( int i=0; i<GetSize(); i++ )
  159. {
  160. DRDATA & temp = ElementAt(i);
  161. if( temp.m_date == newElement.m_date )
  162. {
  163. SetAt(i,newElement);
  164. return i;
  165. }
  166. if( temp.m_date > newElement.m_date )
  167. {
  168. InsertAt(i,newElement);
  169. return i;
  170. }
  171. }
  172. return Add( newElement );
  173. }
  174. void CDRData::InsertAt(int nStartIndex, CDRData* pNewArray)
  175. {
  176. SP_ASSERT(pNewArray != NULL);
  177. SP_ASSERT(nStartIndex >= 0);
  178. if (pNewArray->GetSize() > 0)
  179. {
  180. InsertAt(nStartIndex, pNewArray->GetAt(0), pNewArray->GetSize());
  181. for (int i = 0; i < pNewArray->GetSize(); i++)
  182. SetAt(nStartIndex + i, pNewArray->GetAt(i));
  183. }
  184. }
  185. CDRData & CDRData::operator = ( const CDRData &src )
  186. {
  187. Copy( src );
  188. return *this;
  189. }
  190. void CDRData::Copy( const CDRData &src )
  191. {
  192. SetSize( 0, src.GetSize()+5 );
  193. for( int i=0; i<src.GetSize(); i++ )
  194. {
  195. Add( src.GetAt(i) );
  196. }
  197. }
  198. int SortDRData(const void *p1,const void *p2)
  199. {
  200. DRDATA *pTemp1 = (DRDATA *)p1;
  201. DRDATA *pTemp2 = (DRDATA *)p2;
  202. if( pTemp1 && pTemp2 && pTemp1->m_date < pTemp2->m_date )
  203. return -1;
  204. else if( pTemp1 && pTemp2 && pTemp1->m_date > pTemp2->m_date )
  205. return 1;
  206. return 0;
  207. }
  208. void CDRData::Sort( )
  209. {
  210. if( m_pData )
  211. qsort( m_pData, GetSize(), sizeof(DRDATA), SortDRData );
  212. }
  213. BOOL CDRData::IsSameAs( CDRData * psrc )
  214. {
  215. if( NULL == psrc || GetSize() != psrc->GetSize() )
  216. return FALSE;
  217. for( int i=0; i<GetSize(); i++ )
  218. {
  219. DRDATA & dr = ElementAt(i);
  220. DRDATA & drsrc = psrc->ElementAt(i);
  221. if( /* dr.m_dwMarket != drsrc.m_dwMarket || */
  222. 0 != strncmp(dr.m_szCode,drsrc.m_szCode,sizeof(dr.m_szCode))
  223. || dr.m_date != drsrc.m_date
  224. // || dr.m_time != drsrc.m_time
  225. || fabs(dr.m_fGive-drsrc.m_fGive) > 1e-5
  226. || fabs(dr.m_fPei-drsrc.m_fPei) > 1e-5
  227. || fabs(dr.m_fPeiPrice-drsrc.m_fPeiPrice) > 1e-5
  228. || fabs(dr.m_fProfit-drsrc.m_fProfit) > 1e-5
  229. || dr.m_dwReserved != drsrc.m_dwReserved )
  230. {
  231. return FALSE;
  232. }
  233. }
  234. return TRUE;
  235. }
  236. /////////////////////////////////////////////////////////////////////////////