summaryrefslogtreecommitdiff
path: root/glib/poppler-cached-file-loader.cc
blob: 2b4ed316e06ac4345563490d87cc49734816131d (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
/* poppler-cached-file-loader.h: glib interface to poppler
 *
 * Copyright (C) 2012 Carlos Garcia Campos <carlosgc@gnome.org>
 *
 * This program is free 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, 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
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
 */

#include "config.h"
#include "poppler-cached-file-loader.h"

PopplerCachedFileLoader::PopplerCachedFileLoader(GInputStream *inputStreamA, GCancellable *cancellableA, goffset lengthA)
{
  inputStream = (GInputStream *)g_object_ref(inputStreamA);
  cancellable = cancellableA ? (GCancellable *)g_object_ref(cancellableA) : nullptr;
  length = lengthA;
  url = nullptr;
  cachedFile = nullptr;
}

PopplerCachedFileLoader::~PopplerCachedFileLoader()
{
  g_object_unref(inputStream);
  if (cancellable)
    g_object_unref(cancellable);
}

size_t PopplerCachedFileLoader::init(GooString *urlA, CachedFile *cachedFileA)
{
  size_t size;
  gssize bytesRead;
  char buf[CachedFileChunkSize];

  url = urlA;
  cachedFile = cachedFileA;

  if (length != (goffset)-1)
    return length;

  if (G_IS_FILE_INPUT_STREAM(inputStream)) {
    GFileInfo *info;

    info = g_file_input_stream_query_info(G_FILE_INPUT_STREAM (inputStream), G_FILE_ATTRIBUTE_STANDARD_SIZE, cancellable, nullptr);
    if (!info) {
      error(errInternal, -1, "Failed to get size of '{0:t}'.", urlA);
      return (size_t)-1;
    }

    length = g_file_info_get_size(info);
    g_object_unref(info);

    return length;
  }

  // Unknown stream length, read the whole stream and return the size.
  CachedFileWriter writer = CachedFileWriter(cachedFile, nullptr);
  size = 0;
  do {
    bytesRead = g_input_stream_read(inputStream, buf, CachedFileChunkSize, cancellable, nullptr);
    if (bytesRead == -1)
      break;

    writer.write(buf, bytesRead);
    size += bytesRead;
  } while (bytesRead > 0);

  return size;
}

int PopplerCachedFileLoader::load(const std::vector<ByteRange> &ranges, CachedFileWriter *writer)
{
  char buf[CachedFileChunkSize];
  gssize bytesRead;
  size_t rangeBytesRead, bytesToRead, size;

  if (length == (goffset)-1)
    return 0;

  size = 0;
  for (size_t i = 0; i < ranges.size(); i++) {
    bytesToRead = MIN(CachedFileChunkSize, ranges[i].length);
    rangeBytesRead = 0;
    g_seekable_seek(G_SEEKABLE(inputStream), ranges[i].offset, G_SEEK_SET, cancellable, nullptr);
    do {
      bytesRead = g_input_stream_read(inputStream, buf, bytesToRead, cancellable, nullptr);
      if (bytesRead == -1)
        return -1;

      writer->write(buf, bytesRead);
      size += bytesRead;
      rangeBytesRead += bytesRead;
      bytesToRead = ranges[i].length - rangeBytesRead;
    } while (bytesRead > 0 && bytesToRead > 0);
  }

  return 0;
}