summaryrefslogtreecommitdiff
path: root/Build/source/libs/poppler/poppler-0.26.5/poppler/StdinCachedFile.cc
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/poppler/poppler-0.26.5/poppler/StdinCachedFile.cc')
-rw-r--r--Build/source/libs/poppler/poppler-0.26.5/poppler/StdinCachedFile.cc47
1 files changed, 47 insertions, 0 deletions
diff --git a/Build/source/libs/poppler/poppler-0.26.5/poppler/StdinCachedFile.cc b/Build/source/libs/poppler/poppler-0.26.5/poppler/StdinCachedFile.cc
new file mode 100644
index 00000000000..db966377bb0
--- /dev/null
+++ b/Build/source/libs/poppler/poppler-0.26.5/poppler/StdinCachedFile.cc
@@ -0,0 +1,47 @@
+//========================================================================
+//
+// StdinCachedFile.cc
+//
+// This file is licensed under the GPLv2 or later
+//
+// Copyright 2010 Hib Eris <hib@hiberis.nl>
+// Copyright 2010 Albert Astals Cid <aacid@kde.org>
+// Copyright 2010 Jonathan Liu <net147@gmail.com>
+//
+//========================================================================
+
+#include <config.h>
+
+#include "StdinCachedFile.h"
+
+#ifdef _WIN32
+#include <fcntl.h> // for O_BINARY
+#include <io.h> // for setmode
+#endif
+#include <stdio.h>
+
+size_t StdinCacheLoader::init(GooString *dummy, CachedFile *cachedFile)
+{
+ size_t read, size = 0;
+ char buf[CachedFileChunkSize];
+
+#ifdef _WIN32
+ setmode(fileno(stdin), O_BINARY);
+#endif
+
+ CachedFileWriter writer = CachedFileWriter (cachedFile, NULL);
+ do {
+ read = fread(buf, 1, CachedFileChunkSize, stdin);
+ (writer.write) (buf, CachedFileChunkSize);
+ size += read;
+ }
+ while (read == CachedFileChunkSize);
+
+ return size;
+}
+
+int StdinCacheLoader::load(const std::vector<ByteRange> &ranges, CachedFileWriter *writer)
+{
+ return 0;
+}
+