pdf_object.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:7k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: pdf_object.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:03:45  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: pdf_object.cpp,v 1000.1 2004/06/01 21:03:45 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software / database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software / database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Peter Meric
  35.  *
  36.  * File Description:
  37.  *   CPdfObject - Stream for output of Adobe PDF objects
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include "pdf_object.hpp"
  41. #include "pdf_object_writer.hpp"
  42. #include <util/compress/stream.hpp>
  43. #include <util/compress/zlib.hpp>
  44. #include <util/ascii85.hpp>
  45. BEGIN_NCBI_SCOPE
  46. CPdfObject::CPdfObject(unsigned int obj_num,
  47.                        unsigned int generation,
  48.                        bool allowCompression
  49.                       )
  50.     : m_ObjNum(obj_num),
  51.       m_Generation(generation),
  52.       m_Separator("n"),
  53.       m_AllowCompression(allowCompression)
  54. {
  55. }
  56. CPdfObject::~CPdfObject()
  57. {
  58.     m_Buffer.freeze(false);
  59. }
  60. enum EPdfObjectFormat
  61. {
  62.     eUncompressed,
  63.     eCompressed
  64. };
  65. unsigned int CPdfObject::GetObjNum(void) const
  66. {
  67.     return m_ObjNum;
  68. }
  69. unsigned int CPdfObject::GetGeneration(void) const
  70. {
  71.     return m_Generation;
  72. }
  73. void CPdfObject::PrintTo(CNcbiOstream& stream) const
  74. {
  75.     // start the page content object
  76.     stream << m_ObjNum << ' ' << m_Generation << " obj" << endl;
  77.     const_cast<CPdfObject*>(this)->x_PrintTo(stream);
  78.     stream << "endobj" << endl;
  79. }
  80. void CPdfObject::x_PrintTo(CNcbiOstream& stream)
  81. {
  82.     string::size_type os_len = m_Buffer.pcount();
  83.     const bool compress = m_AllowCompression && os_len > 4096;
  84.     AutoPtr< char, ArrayDeleter<char> > strmbuf;
  85.     if (os_len > 0) {
  86.         // add the stream contents
  87.         if (compress) {
  88.             const size_t cbuflen = size_t(os_len * 1.03);
  89.             AutoPtr< char, ArrayDeleter<char> > cbuf(new char[cbuflen]);
  90.             const string str = m_Buffer.str();
  91.             // compress the data
  92.             CZipCompression c;
  93.             unsigned int len;
  94.             c.CompressBuffer(str.data(), os_len, cbuf.get(), cbuflen, &len);
  95.             // encode the data using ASCII-85
  96.             // ASCII-85 encoding produces five ASCII characters for
  97.             // every four bytes of binary data
  98.             const size_t buflen = size_t(len * 1.3);
  99.             strmbuf.reset(new char[buflen]);
  100.             os_len = CAscii85::s_Encode(cbuf.get(), len, strmbuf.get(), buflen);
  101.             // add stream-related attributes to dictionary
  102.             m_Dictionary["Length"] = new CPdfNumber(int(os_len));
  103.             m_Dictionary["Filter"] = new CPdfObj("[/ASCII85Decode/FlateDecode]");
  104.         }
  105.         else {
  106.             // add stream-related attributes to dictionary
  107.             // don't count the last newline in the stream as part of the length
  108.             m_Dictionary["Length"] = new CPdfNumber(int(os_len - 1));
  109.         }
  110.     }
  111.     // write dictionary
  112.     stream << m_Dictionary << endl;
  113.     // write the stream
  114.     if (os_len > 0) {
  115.         stream << "stream" << endl;
  116.         // add the stream contents
  117.         if (compress && strmbuf.get()) {
  118.             const unsigned int line_len = 72;
  119.             const char* ptr = strmbuf.get();
  120.             size_t l = os_len;
  121.             for ( ; l > line_len; l -= line_len, ptr += line_len) {
  122.                 stream.write(ptr, line_len) << pdfeol;
  123.             }
  124.             stream.write(ptr, l) << pdfeol;
  125.         }
  126.         else {
  127.             // write uncompressed stream
  128.             stream << string(m_Buffer.str(), os_len);
  129.         }
  130.         stream << "endstream" << endl;
  131.     }
  132. }
  133. CPdfDictionary& CPdfObject::GetDictionary(void)
  134. {
  135.     return m_Dictionary;
  136. }
  137. CPdfObject::TPdfObjRef& CPdfObject::operator[](const string& key)
  138. {
  139.     return m_Dictionary[key];
  140. }
  141. CPdfObject& CPdfObject::operator<<(CPdfObject& (*pf)(CPdfObject&))
  142. {
  143.     return (*pf)(*this);
  144. }
  145. CNcbiOstream& CPdfObject::GetWriteBuffer(void)
  146. {
  147.     return m_Buffer;
  148. }
  149. string CPdfObject::GetSeparator(void) const
  150. {
  151.     return m_Separator;
  152. }
  153. CPdfTrailer::CPdfTrailer() : CPdfObject(0)
  154. {
  155. }
  156. CPdfTrailer::~CPdfTrailer()
  157. {
  158. }
  159. void CPdfTrailer::PrintTo(CNcbiOstream& stream) const
  160. {
  161.     stream << "trailer" << endl;
  162.     const_cast<CPdfTrailer*>(this)->x_PrintTo(stream);
  163. }
  164. END_NCBI_SCOPE
  165. /*
  166.  * ===========================================================================
  167.  * $Log: pdf_object.cpp,v $
  168.  * Revision 1000.1  2004/06/01 21:03:45  gouriano
  169.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  170.  *
  171.  * Revision 1.10  2004/05/21 22:27:50  gorelenk
  172.  * Added PCH ncbi_pch.hpp
  173.  *
  174.  * Revision 1.9  2003/07/16 20:04:17  meric
  175.  * Added ASCII-85 encoding of compressed stream data
  176.  *
  177.  * Revision 1.8  2003/07/16 15:42:30  meric
  178.  * Add flag to specify if object may be compressed
  179.  *
  180.  * Revision 1.7  2003/07/15 14:49:51  meric
  181.  * Compress streams longer than 4KB
  182.  *
  183.  * Revision 1.6  2003/06/25 18:02:51  meric
  184.  * Source rearrangement: move "private" headers into the src/ tree
  185.  *
  186.  * Revision 1.5  2003/06/24 15:54:43  meric
  187.  * Fixed: Cast Length value to int before adding to object dictionary
  188.  *
  189.  * Revision 1.4  2003/06/18 17:25:39  meric
  190.  * Final phase of print reorg: remove dependence on gui/opengl and OpenGL
  191.  *
  192.  * Revision 1.3  2003/06/16 19:19:36  meric
  193.  * Fixed: CPdfTrailer c'tor passes 0 instead of -1 to avoid unsigned warning
  194.  *
  195.  * Revision 1.2  2003/06/16 12:44:52  dicuccio
  196.  * Clean-up after initial commit
  197.  *
  198.  * Revision 1.1  2003 / 06 / 13 18:13:56  meric
  199.  * Initial version
  200.  *
  201.  *
  202.  * ===========================================================================
  203.  */