]> Creatis software - gdcm.git/blob - src/gdcmJPEGFragmentsInfo.cxx
ENH: Pass 2 at cleaning the JPEG mess. Still some work to do, but things are getting...
[gdcm.git] / src / gdcmJPEGFragmentsInfo.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmJPEGFragmentsInfo.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/31 04:00:04 $
7   Version:   $Revision: 1.15 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #include "gdcmJPEGFragmentsInfo.h"
20 #include "gdcmDebug.h"
21
22 #include <fstream>
23
24 namespace gdcm 
25 {
26
27 JPEGFragmentsInfo::JPEGFragmentsInfo()
28 {
29    StateSuspension = 0;
30 }
31
32 /**
33  * \brief Default destructor
34  */
35 JPEGFragmentsInfo::~JPEGFragmentsInfo()
36 {
37    for(JPEGFragmentsList::iterator it  = Fragments.begin();
38                                    it != Fragments.end();
39                                  ++it )
40    {
41       delete *it;
42    }
43    Fragments.clear();
44 }
45
46 /**
47  * \brief        Print self.
48  * @param os     Stream to print to.
49  * @param indent Indentation string to be prepended during printing.
50  */
51 void JPEGFragmentsInfo::Print( std::ostream &os, std::string const &indent )
52 {
53    os << std::endl;
54    os << indent
55       << "----------------- JPEG fragments --------------------------------"
56       << std::endl << std::endl;
57    os << indent
58       << "Total number of fragments : " << Fragments.size()
59       << std::endl;
60    int fragmentNumber = 0;
61    for(JPEGFragmentsList::iterator it  = Fragments.begin();
62                                    it != Fragments.end();
63                                  ++it)
64    {
65       os << indent
66          << "   fragment number :" << fragmentNumber++;
67       (*it)->Print( os, indent + "   ");
68    }
69    os << std::endl;
70 }
71
72 /**
73  * \brief  Calculate sum of all fragments length and return total
74  * @return Total size of JPEG fragments length
75  */
76 size_t JPEGFragmentsInfo::GetFragmentsLength()
77 {
78    // Loop on the fragment[s] to get total length
79    size_t totalLength = 0;
80    JPEGFragmentsList::const_iterator it;
81    for( it  = Fragments.begin();
82         it != Fragments.end();
83         ++it )
84    {
85       totalLength += (*it)->GetLength();
86    }
87    return totalLength;
88 }
89
90 // to avoid warnings
91 void JPEGFragmentsInfo::DecompressJPEGFramesFromFile(std::ifstream *fp, uint8_t *buffer, int nBits, int , int )
92 {
93    // Pointer to the Raw image
94    uint8_t *localRaw = buffer;
95
96   // Loop on the fragment[s]
97    JPEGFragmentsList::const_iterator it;
98    for( it  = Fragments.begin();
99         it != Fragments.end();
100         ++it )
101    {
102      //(*it)->pimage = localRaw;
103      (*it)->DecompressJPEGFramesFromFile(fp, localRaw, nBits, StateSuspension);
104      // update pointer to image after some scanlines read:
105      localRaw = (*it)->GetImage();
106       // Advance to next free location in Raw 
107       // for next fragment decompression (if any)
108
109       //localRaw += length * numBytes;
110      //std::cerr << "Used to increment by: " << length * numBytes << std::endl;
111    }
112 }
113
114 void JPEGFragmentsInfo::AddFragment(JPEGFragment *fragment)
115 {
116    Fragments.push_back(fragment);
117 }
118
119 JPEGFragment *JPEGFragmentsInfo::GetFirstFragment()
120 {
121    ItFragments = Fragments.begin();
122    if (ItFragments != Fragments.end())
123       return  *ItFragments;
124    return NULL;
125 }
126
127 JPEGFragment *JPEGFragmentsInfo::GetNextFragment()
128 {
129    gdcmAssertMacro (ItFragments != Fragments.end());
130
131    ++ItFragments;
132    if (ItFragments != Fragments.end())
133       return  *ItFragments;
134    return NULL;
135 }
136
137 unsigned int JPEGFragmentsInfo::GetFragmentCount()
138 {
139    return Fragments.size();
140 }
141
142 } // end namespace gdcm
143