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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #ifndef RtspUtil_Hxx
  2. #define RtspUtil_Hxx
  3. /* ====================================================================
  4.  * The Vovida Software License, Version 1.0 
  5.  * 
  6.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  7.  * 
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 
  15.  * 2. Redistributions in binary form must reproduce the above copyright
  16.  *    notice, this list of conditions and the following disclaimer in
  17.  *    the documentation and/or other materials provided with the
  18.  *    distribution.
  19.  * 
  20.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  21.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  22.  *    not be used to endorse or promote products derived from this
  23.  *    software without prior written permission. For written
  24.  *    permission, please contact vocal@vovida.org.
  25.  *
  26.  * 4. Products derived from this software may not be called "VOCAL", nor
  27.  *    may "VOCAL" appear in their name, without prior written
  28.  *    permission of Vovida Networks, Inc.
  29.  * 
  30.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  31.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  32.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  33.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  34.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  35.  * IN EXCESS OF 281421,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  36.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  37.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  38.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  39.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  40.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  41.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  42.  * DAMAGE.
  43.  * 
  44.  * ====================================================================
  45.  * 
  46.  * This software consists of voluntary contributions made by Vovida
  47.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  48.  * Inc.  For more information on Vovida Networks, Inc., please see
  49.  * <http://www.vovida.org/>.
  50.  *
  51.  */
  52. static const char* const RtspUtil_hxx_Version =
  53.     "$Id: RtspUtil.hxx,v 1.10 2001/05/15 20:26:12 bko Exp $";
  54. #include "CharData.hxx"
  55. enum RtspMethodsType
  56. {
  57.     RTSP_NULL_MTHD = 0, // first several are most common ones
  58.     RTSP_ANNOUNCE_MTHD,
  59.     RTSP_DESCRIBE_MTHD,
  60.     RTSP_PLAY_MTHD,
  61.     RTSP_RECORD_MTHD,
  62.     RTSP_SETUP_MTHD,
  63.     RTSP_TEARDOWN_MTHD,
  64.     RTSP_PAUSE_MTHD,
  65.     RTSP_GET_PARAMETER_MTHD,
  66.     RTSP_OPTIONS_MTHD,
  67.     RTSP_REDIRECT_MTHD,
  68.     RTSP_SET_PARAMETER_MTHD,
  69.     RTSP_UNKNOWN_MTHD        // 12
  70. };
  71.     
  72. enum RtspHeadersType
  73. {
  74.     RTSP_ACCEPT_HDR = 0, // first several are most common ones 
  75.     RTSP_CSEQ_HDR,
  76.     RTSP_RANGE_HDR,
  77.     RTSP_SESSION_HDR,
  78.     RTSP_TRANSPORT_HDR,
  79.     RTSP_BLOCKSIZE_HDR,
  80.     RTSP_CONTENT_BASE_HDR,
  81.     RTSP_CONTENT_LENGTH_HDR,
  82.     RTSP_CONTENT_TYPE_HDR,
  83.     RTSP_ACCEPT_ENCODING_HDR,
  84.     RTSP_ACCEPT_LANGUAGE_HDR,
  85.     RTSP_ALLOW_HDR,
  86.     RTSP_AUTHORIZATION_HDR,
  87.     RTSP_BANDWIDTH_HDR,
  88.     RTSP_CACHE_CONTROL_HDR,
  89.     RTSP_CONFERENCE_HDR,
  90.     RTSP_CONNECTION_HDR,
  91.     RTSP_CONTENT_ENCODING_HDR,
  92.     RTSP_CONTENT_LANGUAGE_HDR,
  93.     RTSP_CONTENT_LOCATION_HDR,
  94.     RTSP_DATE_HDR,
  95.     RTSP_EXPIRES_HDR,
  96.     RTSP_FROM_HDR,
  97.     RTSP_HOST_HDR,
  98.     RTSP_IF_MATCH_HDR,
  99.     RTSP_IF_MODIFIED_SINCE_HDR,
  100.     RTSP_LAST_MODIFIED_HDR,
  101.     RTSP_LOCATION_HDR,
  102.     RTSP_PROXY_AUTHENTICATE_HDR,
  103.     RTSP_PROXY_REQUIRE_HDR,
  104.     RTSP_PUBLIC_HDR,
  105.     RTSP_REFERER_HDR,
  106.     RTSP_RETRY_AFTER_HDR,
  107.     RTSP_REQUIRE_HDR,
  108.     RTSP_RTP_INFO_HDR,
  109.     RTSP_SCALE_HDR,
  110.     RTSP_SERVER_HDR,
  111.     RTSP_SPEED_HDR,
  112.     RTSP_TIMESTAMP_HDR,
  113.     RTSP_UNSUPPORTED_HDR,
  114.     RTSP_USER_AGENT_HDR,
  115.     RTSP_VARY_HDR,
  116.     RTSP_VIA_HDR,
  117.     RTSP_WWW_AUTHENTICATE_HDR,
  118.     RTSP_UNKNOWN_HDR        // 44
  119. };
  120. enum RtspStatusCodesType
  121. {
  122.     RTSP_NULL_STATUS = 0,
  123.     RTSP_100_STATUS,
  124.     RTSP_200_STATUS,
  125.     RTSP_201_STATUS,
  126.     RTSP_250_STATUS,
  127.     RTSP_300_STATUS,
  128.     RTSP_301_STATUS,
  129.     RTSP_302_STATUS,
  130.     RTSP_303_STATUS,
  131.     RTSP_305_STATUS,
  132.     RTSP_400_STATUS,
  133.     RTSP_401_STATUS,
  134.     RTSP_402_STATUS,
  135.     RTSP_403_STATUS,
  136.     RTSP_404_STATUS,
  137.     RTSP_405_STATUS,
  138.     RTSP_406_STATUS,
  139.     RTSP_407_STATUS,
  140.     RTSP_408_STATUS,
  141.     RTSP_410_STATUS,
  142.     RTSP_411_STATUS,
  143.     RTSP_412_STATUS,
  144.     RTSP_413_STATUS,
  145.     RTSP_414_STATUS,
  146.     RTSP_415_STATUS,
  147.     RTSP_451_STATUS,
  148.     RTSP_452_STATUS,
  149.     RTSP_453_STATUS,
  150.     RTSP_454_STATUS,
  151.     RTSP_455_STATUS,
  152.     RTSP_456_STATUS,
  153.     RTSP_457_STATUS,
  154.     RTSP_458_STATUS,
  155.     RTSP_459_STATUS,
  156.     RTSP_460_STATUS,
  157.     RTSP_461_STATUS,
  158.     RTSP_462_STATUS,
  159.     RTSP_500_STATUS,
  160.     RTSP_501_STATUS,
  161.     RTSP_502_STATUS,
  162.     RTSP_503_STATUS,
  163.     RTSP_504_STATUS,
  164.     RTSP_505_STATUS,
  165.     RTSP_551_STATUS,
  166.     RTSP_UNKNOWN_STATUS //45
  167. };
  168. /** */
  169. class RtspUtil
  170. {
  171.     public:
  172.         /** */
  173.         static u_int32_t getMethodInNumber(const CharData& methodInStr);
  174.         /** */
  175.         static u_int32_t getHeaderInNumber(const CharData& headerInStr);
  176.         /** */
  177.         static u_int32_t getStatusCodeInNumber(RtspStatusCodesType code)
  178.             { return myStatusCodes[code]; }
  179.         /** */
  180.         static CharData& getStatusCodeInString(RtspStatusCodesType code)
  181.             { return myStatusCodeStrings[code]; }
  182.         /** */
  183.         static CharData& getStatusInString(RtspStatusCodesType code)
  184.             { return myStatusStrings[code]; }
  185.         /** */
  186.         static CharData& getVersion()
  187.             { return myVersion[0]; }
  188.     private:
  189.         /** */
  190.         static CharData myMethods[];
  191.         /** */
  192.         static CharData myHeaders[];
  193.         /** */
  194.         static u_int32_t myStatusCodes[];
  195.         /** */
  196.         static CharData myStatusCodeStrings[];
  197.         /** */
  198.         static CharData myStatusStrings[];
  199.         /** */
  200.         static CharData myVersion[];
  201. };
  202. /* Local Variables: */
  203. /* c-file-style: "stroustrup" */
  204. /* indent-tabs-mode: nil */
  205. /* c-file-offsets: ((access-label . -) (inclass . ++)) */
  206. /* c-basic-offset: 4 */
  207. /* End: */
  208. #endif