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