aboutsummaryrefslogtreecommitdiff
path: root/lib/pdf/array.cc
blob: 812ee0355cadef53327b36c3aeaa58d0ea25e121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
//  array.cc -- PDF array objects
//  Copyright (C) 2008  SEIKO EPSON CORPORATION
//
//  This file is part of the 'iscan' program.
//
//  The 'iscan' program is free-ish software.
//  You can redistribute it and/or modify it under the terms of the GNU
//  General Public License as published by the Free Software Foundation;
//  either version 2 of the License or at your option any later version.
//
//  This program is distributed in the hope that it will be useful, but
//  WITHOUT ANY WARRANTY;  without even the implied warranty of FITNESS
//  FOR A PARTICULAR PURPOSE or MERCHANTABILITY.
//  See the GNU General Public License for more details.
//
//  You should have received a verbatim copy of the GNU General Public
//  License along with this program; if not, write to:
//
//      Free Software Foundation, Inc.
//      59 Temple Place, Suite 330
//      Boston, MA  02111-1307  USA
//
//  As a special exception, the copyright holders give permission
//  to link the code of this program with the esmod library and
//  distribute linked combinations including the two.  You must obey
//  the GNU General Public License in all respects for all of the
//  code used other than esmod.


#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include "array.hh"

namespace iscan
{

namespace pdf
{

array::~array ()
{
  store_citer it;

  for (it = _mine.begin (); _mine.end () != it; ++it)
    {
      object* obj = *it;
      delete obj;
      obj = NULL;
    }
}

void
array::insert (object *value)
{
  _store.push_back (value);
}

void
array::insert (primitive value)
{
  primitive *copy = new primitive ();

  *copy = value;
  _mine.push_back (copy);
  insert (copy);
}

void
array::insert (object value)
{
  object *copy = new object ();

  *copy = value;
  _mine.push_back (copy);
  insert (copy);
}

size_t
array::size () const
{
  return _store.size ();
}

const object *
array::operator[] (size_t index) const
{
  return _store[index];
}

void
array::print (FILE* fp) const
{
  store_citer it;

  fprintf (fp, "[ ");
  if (4 < _store.size ())
    {
      fprintf (fp, "\n");
    }
  for (it = _store.begin (); _store.end () != it; ++it)
    {
      (*it)->print (fp);
      fprintf (fp, " ");
      if (4 < _store.size ())
        {
          fprintf (fp, "\n");
        }
    }
  fprintf (fp, "]");
}

}       // namespace pdf
}       // namespace iscan