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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: pdf_object_writer.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 21:03:49  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: pdf_object_writer.cpp,v 1000.2 2004/06/01 21:03:49 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.  *   CPdfObjectWriter - write PDF objects to an output stream
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include "pdf_object_writer.hpp"
  41. #include "pdf_object.hpp"
  42. #include <algorithm>
  43. BEGIN_NCBI_SCOPE
  44. CPdfObjectWriter::CPdfObjectWriter(CNcbiOstream* ostream)
  45. : m_Strm(ostream)
  46. {
  47. }
  48. CPdfObjectWriter::~CPdfObjectWriter()
  49. {
  50. }
  51. void CPdfObjectWriter::SetOutputStream(CNcbiOstream* ostream)
  52. {
  53.     m_Strm = ostream;
  54. }
  55. void CPdfObjectWriter::x_SaveObjectOffset(const CRef<CPdfObject>& obj)
  56. {
  57.     ObjOffset off(obj->GetObjNum(), obj->GetGeneration(), 
  58.                   m_Strm->tellp() - CT_POS_TYPE(0));
  59.     m_ObjOffsets.push_back(off);
  60. }
  61. void CPdfObjectWriter::WriteObject(const CRef<CPdfObject>& obj)
  62. {
  63.     x_SaveObjectOffset(obj);
  64.     *m_Strm << *obj;
  65. }
  66. CT_POS_TYPE CPdfObjectWriter::WriteXRef(unsigned int obj_num)
  67. {
  68.     const CT_POS_TYPE xref_start = m_Strm->tellp();
  69.     // write the cross - reference
  70.     *m_Strm << "xref" << pdfeol;
  71.     *m_Strm << "0 " << obj_num << pdfeol;
  72.     *m_Strm << setfill('0');
  73.     *m_Strm << setw(10) << 0 << " 65535 f" << pdfeol;
  74.     sort(m_ObjOffsets.begin(), m_ObjOffsets.end(), ObjOffsetCompare());
  75.     ITERATE(vector<ObjOffset>, it, m_ObjOffsets) {
  76.         const ObjOffset& off = *it;
  77.         *m_Strm << setw(10) << off.m_Offset << ' ';
  78.         *m_Strm << setw(5) << off.m_Generation;
  79.         *m_Strm << " n" << pdfeol;
  80.     }
  81.     return xref_start;
  82. }
  83. END_NCBI_SCOPE
  84. /*
  85.  * ===========================================================================
  86.  * $Log: pdf_object_writer.cpp,v $
  87.  * Revision 1000.2  2004/06/01 21:03:49  gouriano
  88.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  89.  *
  90.  * Revision 1.6  2004/05/21 22:27:50  gorelenk
  91.  * Added PCH ncbi_pch.hpp
  92.  *
  93.  * Revision 1.5  2004/02/20 20:03:27  ucko
  94.  * Fix to compile with stricter implementations of CT_POS_TYPE
  95.  *
  96.  * Revision 1.4  2003/06/25 18:02:51  meric
  97.  * Source rearrangement: move "private" headers into the src/ tree
  98.  *
  99.  * Revision 1.3  2003/06/18 17:25:39  meric
  100.  * Final phase of print reorg: remove dependence on gui/opengl and OpenGL
  101.  *
  102.  * Revision 1.2  2003/06/16 12:44:52  dicuccio
  103.  * Clean-up after initial commit
  104.  *
  105.  * Revision 1.1  2003 / 06 / 13 18:13:56  meric
  106.  * Initial version
  107.  *
  108.  *
  109.  * ===========================================================================
  110.  */