MemoryManagerTest.cxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /* ====================================================================
  2.  * The Vovida Software License, Version 1.0 
  3.  * 
  4.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in
  15.  *    the documentation and/or other materials provided with the
  16.  *    distribution.
  17.  * 
  18.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  19.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  20.  *    not be used to endorse or promote products derived from this
  21.  *    software without prior written permission. For written
  22.  *    permission, please contact vocal@vovida.org.
  23.  *
  24.  * 4. Products derived from this software may not be called "VOCAL", nor
  25.  *    may "VOCAL" appear in their name, without prior written
  26.  *    permission of Vovida Networks, Inc.
  27.  * 
  28.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  29.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  31.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  32.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  33.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  34.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  35.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  36.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  37.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  39.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  40.  * DAMAGE.
  41.  * 
  42.  * ====================================================================
  43.  * 
  44.  * This software consists of voluntary contributions made by Vovida
  45.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  46.  * Inc.  For more information on Vovida Networks, Inc., please see
  47.  * <http://www.vovida.org/>.
  48.  *
  49.  */
  50. static const char* const MemoryManagerTest_cxx_Version =
  51.     "";
  52. #include "MemoryManager.hxx"
  53. #include "Verify.hxx"
  54. #include "Data.hxx"
  55. #include <new>
  56. void  testAlloc()
  57. {
  58.     char* p = (char*)(MemoryManager::mynew(100));
  59.     MemoryManager::displayAllocList();
  60.     char* q = (char*)(MemoryManager::mynew(300));
  61.     MemoryManager::displayAllocList();
  62.     char* r = (char*)(MemoryManager::mynew(400));
  63.     MemoryManager::displayAllocList();
  64.     char* s = (char*)(MemoryManager::mynew(500));
  65.     MemoryManager::displayAllocList();
  66.     char* t = (char*)(MemoryManager::mynew(600));
  67.     MemoryManager::displayAllocList();
  68.     char* u = (char*)(MemoryManager::mynew(700));
  69.     MemoryManager::displayAllocList();
  70.     char* v = (char*)(MemoryManager::mynew(800));
  71.     MemoryManager::displayAllocList();
  72.     char* w = (char*)(MemoryManager::mynew(900));
  73.     MemoryManager::displayAllocList();
  74.     char* x = (char*)(MemoryManager::mynew(1000));
  75.     MemoryManager::displayAllocList();
  76.     char* y = (char*)(MemoryManager::mynew(1100));
  77.     MemoryManager::displayAllocList();
  78.     char* z = (char*)(MemoryManager::mynew(1200));
  79.     MemoryManager::displayAllocList();
  80.     char* a = (char*)(MemoryManager::mynew(1300));
  81.     MemoryManager::displayAllocList();
  82.     char* b = (char*)(MemoryManager::mynew(1400));
  83.     MemoryManager::displayAllocList();
  84.     char* c = (char*)(MemoryManager::mynew(1500));
  85.     MemoryManager::displayAllocList();
  86.     
  87.     strcpy(p, "lmnopqrstuvwxyz");
  88.     strcpy(q, "lmnopqrstuvwxyz");
  89.     strcpy(r, "lmnopqrstuvwxyz");
  90.     strcpy(s, "lmnopqrstuvwxyz");
  91.     strcpy(t, "lmnopqrstuvwxyz");
  92.     strcpy(u, "lmnopqrstuvwxyz");
  93.     strcpy(v, "lmnopqrstuvwxyz");
  94.     strcpy(w, "lmnopqrstuvwxyz");
  95.     strcpy(x, "lmnopqrstuvwxyz");
  96.     strcpy(y, "lmnopqrstuvwxyz");
  97.     strcpy(z, "lmnopqrstuvwxyz");
  98.     strcpy(a, "lmnopqrstuvwxyz");
  99.     strcpy(b, "lmnopqrstuvwxyz");
  100.     strcpy(c, "lmnopqrstuvwxyz");
  101.     cout << " p is: " << p << endl;
  102.     cout << " q is: " << q << endl;
  103.     cout << " r is: " << r << endl;
  104.     cout << " s is: " << s << endl;
  105.     cout << " t is: " << t << endl;
  106.     cout << " u is: " << u << endl;
  107.     cout << " v is: " << v << endl;
  108.     cout << " w is: " << w << endl;
  109.     cout << " x is: " << x << endl;
  110.     cout << " y is: " << y << endl;
  111.     cout << " z is: " << z << endl;
  112.     cout << " a is: " << a << endl;
  113.     cout << " b is: " << b << endl;
  114.     cout << " c is: " << c <<  endl;
  115.     MemoryManager::displayAllocList();
  116.     MemoryManager::mydelete(p);
  117.     MemoryManager::mydelete(q);
  118.     MemoryManager::mydelete(r);
  119.     MemoryManager::mydelete(s);
  120.     MemoryManager::mydelete(t);
  121.     MemoryManager::mydelete(u);
  122.     MemoryManager::mydelete(v);
  123.     MemoryManager::mydelete(w);
  124.     MemoryManager::mydelete(x);
  125.     MemoryManager::mydelete(y);
  126.     MemoryManager::mydelete(z);
  127.     MemoryManager::mydelete(a);
  128.     MemoryManager::mydelete(b);
  129.     MemoryManager::mydelete(c);
  130.     MemoryManager::displayAllocList();
  131.     //allocate again. this time, this should be allocating from free list.
  132.     (char*)(MemoryManager::mynew(100));
  133.     MemoryManager::displayAllocList();
  134.     MemoryManager::displayFreeList();
  135.     (char*)(MemoryManager::mynew(300));
  136.     MemoryManager::displayAllocList();
  137.     MemoryManager::displayFreeList();
  138.     (char*)(MemoryManager::mynew(400));
  139.     MemoryManager::displayAllocList();
  140.     MemoryManager::displayFreeList();
  141.     (char*)(MemoryManager::mynew(500));
  142.     MemoryManager::displayAllocList();
  143.     MemoryManager::displayFreeList();
  144.     
  145.     (char*)(MemoryManager::mynew(1000));
  146.     MemoryManager::displayAllocList();
  147.     MemoryManager::displayFreeList();
  148.     
  149.     (char*)(MemoryManager::mynew(5000));
  150.     MemoryManager::displayAllocList();
  151.     MemoryManager::displayFreeList();
  152.     
  153.     (char*)(MemoryManager::mynew(50000));
  154.     MemoryManager::displayAllocList();
  155.     MemoryManager::displayFreeList(); 
  156.     
  157.     
  158.     char* systemPtr = new char(1000);
  159.     MemoryManager::mydelete(systemPtr);
  160.     
  161.     
  162.     
  163.     test_verify(1); // do some valid tests later
  164. }
  165.     
  166. int main()
  167. {
  168.     testAlloc();
  169.     return test_return_code(1);
  170. }