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

流媒体/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 AllDataPerformanceTest_cxx_Version =
  51.     "$Id: AllDataPerformanceTest.cxx,v 1.6 2001/07/25 21:06:31 bko Exp $";
  52. #include "Verify.hxx"
  53. #include "CopyOnWriteData.hxx"
  54. //#include "NewData.hxx"
  55. #include "StringData.hxx"
  56. #include <iostream>
  57. #include "VTime.hxx"
  58. bool debug = false;
  59. typedef int (*func)(int);
  60. void test(int count, func c_f, func s_f)
  61. {
  62.     int c = 0;
  63.     int n = 0;
  64.     int s = 0;
  65.     if (c_f)
  66.     {
  67.         c = c_f(count);
  68.     }
  69.     if (s_f)
  70.     {
  71.         s = s_f(count);
  72.     }
  73.     cout << "c: " << c << endl;
  74.     cout << "s: " << s << endl;
  75. }
  76. template < class C >
  77. int test_00_helper(int count)
  78. {
  79.     C test0 = "random junk asdf this is a test";
  80.     C test1;
  81.     C test2 = "asdf";
  82.     VTime start;
  83.     for (int i = 0; i < count; i++)
  84.     {
  85.         int retn = test0.match(test2, &test1, false);
  86.     }
  87.     VTime end;
  88.     return end - start;
  89. }
  90. void test_00()
  91. {
  92.     test(100000,
  93.          &test_00_helper < CopyOnWriteData > ,
  94.          &test_00_helper < StringData > );
  95. }
  96. template < class C >
  97. int test_01_helper(int count)
  98. {
  99.     C test0 = "random junk asdf this is a test";
  100.     C test1;
  101.     C test2 = "asdf";
  102.     VTime start;
  103.     for(int i = 0; i < count; i++)
  104.     {
  105.         int retn = test0.match("asdf", &test1, false);
  106.     }
  107.     VTime end;
  108.     return end - start;
  109. }
  110. void test_01()
  111. {
  112.     test(100000,
  113.          &test_01_helper < CopyOnWriteData > ,
  114.          &test_01_helper < StringData > );
  115. }
  116. template < class C >
  117. int test_02_helper(int count)
  118. {
  119.     C test0 = "random junk asdf this is a test";
  120.     C test1;
  121.     C test2 = "asdf";
  122.     VTime start;
  123.     for(int i = 0; i < count; i++)
  124.     {
  125.         int retn = test0.find(test2);
  126.     }
  127.     VTime end;
  128.     return end - start;
  129. }
  130. void test_02()
  131. {
  132.     test(100000,
  133.          &test_02_helper < CopyOnWriteData > ,
  134.          &test_02_helper < StringData > );
  135. }
  136. int main(int argc, char** argv)
  137. {
  138.     test_00();
  139.     test_01();
  140.     test_02();
  141.     return 0;
  142. }