BaseData.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 CBaseData;
  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. CBaseData::CBaseData()
  19. {
  20. m_pData = NULL;
  21. m_nSize = m_nMaxSize = m_nGrowBy = 0;
  22. }
  23. CBaseData::CBaseData( const CBaseData &src )
  24. {
  25. m_pData = NULL;
  26. m_nSize = m_nMaxSize = m_nGrowBy = 0;
  27. *this = src;
  28. }
  29. CBaseData::~CBaseData()
  30. {
  31. if( m_pData )
  32. delete [] (BYTE*)m_pData;
  33. }
  34. void CBaseData::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(BASEDATA) <= SIZE_T_MAX);  // no overflow
  51. #endif
  52. m_pData = (BASEDATA*) new BYTE[nNewSize * sizeof(BASEDATA)];
  53. memset(m_pData, 0, nNewSize * sizeof(BASEDATA));  // 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(BASEDATA));
  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(BASEDATA) <= SIZE_T_MAX);  // no overflow
  76. #endif
  77. BASEDATA* pNewData = (BASEDATA*) new BYTE[nNewMax * sizeof(BASEDATA)];
  78. // copy new data from old
  79. memcpy(pNewData, m_pData, m_nSize * sizeof(BASEDATA));
  80. // construct remaining elements
  81. SP_ASSERT(nNewSize > m_nSize);
  82. memset(&pNewData[m_nSize], 0, (nNewSize-m_nSize) * sizeof(BASEDATA));
  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 CBaseData::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(BASEDATA) <= SIZE_T_MAX);  // no overflow
  97. #endif
  98. BASEDATA* pNewData = NULL;
  99. if (m_nSize != 0)
  100. {
  101. pNewData = (BASEDATA*) new BYTE[m_nSize * sizeof(BASEDATA)];
  102. // copy new data from old
  103. memcpy(pNewData, m_pData, m_nSize * sizeof(BASEDATA));
  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 CBaseData::SetAtGrow(int nIndex, BASEDATA newElement)
  113. {
  114. SP_ASSERT(nIndex >= 0);
  115. if (nIndex >= m_nSize)
  116. SetSize(nIndex+1);
  117. m_pData[nIndex] = newElement;
  118. }
  119. void CBaseData::InsertAt(int nIndex, BASEDATA 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(BASEDATA));
  136. // re-init slots we copied from
  137. memset(&m_pData[nIndex], 0, nCount * sizeof(BASEDATA));
  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 CBaseData::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(BASEDATA));
  154. m_nSize -= nCount;
  155. }
  156. void CBaseData::InsertAt(int nStartIndex, CBaseData* 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 CBaseData::InsertBaseDataSort( BASEDATA newElement )
  168. {
  169. for( int i=0; i<GetSize(); i++ )
  170. {
  171. BASEDATA & temp = ElementAt(i);
  172. if( temp.m_date == newElement.m_date )
  173. {
  174. SetAt(i,newElement);
  175. return i;
  176. }
  177. if( temp.m_date > newElement.m_date )
  178. {
  179. InsertAt(i,newElement);
  180. return i;
  181. }
  182. }
  183. return Add( newElement );
  184. }
  185. int SortBaseData(const void *p1,const void *p2)
  186. {
  187. BASEDATA *pTemp1 = (BASEDATA *)p1;
  188. BASEDATA *pTemp2 = (BASEDATA *)p2;
  189. if( pTemp1 && pTemp2 && pTemp1->m_date < pTemp2->m_date )
  190. return -1;
  191. else if( pTemp1 && pTemp2 && pTemp1->m_date > pTemp2->m_date )
  192. return 1;
  193. return 0;
  194. }
  195. void CBaseData::Sort( )
  196. {
  197. if( m_pData )
  198. qsort( m_pData, GetSize(), sizeof(BASEDATA), SortBaseData );
  199. }
  200. CBaseData & CBaseData::operator = ( const CBaseData &src )
  201. {
  202. Copy( src );
  203. return *this;
  204. }
  205. void CBaseData::Copy( const CBaseData &src )
  206. {
  207. SetSize( 0, src.GetSize()+5 );
  208. for( int i=0; i<src.GetSize(); i++ )
  209. {
  210. Add( src.GetAt(i) );
  211. }
  212. }
  213. /////////////////////////////////////////////////////////////////////////////