ooxml_crypt 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +58 -0
- data/Rakefile +12 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/ext/ooxml_crypt/extconf.rb +18 -0
- data/ext/ooxml_crypt/ooxml_crypt.c +27 -0
- data/ext/ooxml_crypt/ooxml_crypt.h +7 -0
- data/lib/ooxml_crypt/version.rb +5 -0
- data/lib/ooxml_crypt.rb +75 -0
- data/vendor/cybozulib/.github/workflows/main.yml +12 -0
- data/vendor/cybozulib/.gitignore +5 -0
- data/vendor/cybozulib/CMakeLists.txt +6 -0
- data/vendor/cybozulib/COPYRIGHT +27 -0
- data/vendor/cybozulib/Makefile +26 -0
- data/vendor/cybozulib/bin/libeay32.dll +0 -0
- data/vendor/cybozulib/bin/libmecab.dll +0 -0
- data/vendor/cybozulib/bin/ssleay32.dll +0 -0
- data/vendor/cybozulib/common.mk +116 -0
- data/vendor/cybozulib/common.props +25 -0
- data/vendor/cybozulib/cybozulib.sln +286 -0
- data/vendor/cybozulib/debug.props +14 -0
- data/vendor/cybozulib/include/cybozu/array.hpp +197 -0
- data/vendor/cybozulib/include/cybozu/atoi.hpp +238 -0
- data/vendor/cybozulib/include/cybozu/atomic.hpp +146 -0
- data/vendor/cybozulib/include/cybozu/base64.hpp +210 -0
- data/vendor/cybozulib/include/cybozu/benchmark.hpp +212 -0
- data/vendor/cybozulib/include/cybozu/bfd.hpp +105 -0
- data/vendor/cybozulib/include/cybozu/bit_operation.hpp +139 -0
- data/vendor/cybozulib/include/cybozu/bitvector.hpp +358 -0
- data/vendor/cybozulib/include/cybozu/condition_variable.hpp +113 -0
- data/vendor/cybozulib/include/cybozu/condition_variable_cs.hpp +74 -0
- data/vendor/cybozulib/include/cybozu/config.hpp +392 -0
- data/vendor/cybozulib/include/cybozu/critical_section.hpp +60 -0
- data/vendor/cybozulib/include/cybozu/crypto.hpp +321 -0
- data/vendor/cybozulib/include/cybozu/csucvector.hpp +624 -0
- data/vendor/cybozulib/include/cybozu/csv.hpp +294 -0
- data/vendor/cybozulib/include/cybozu/data_type.hpp +27 -0
- data/vendor/cybozulib/include/cybozu/endian.hpp +224 -0
- data/vendor/cybozulib/include/cybozu/env.hpp +63 -0
- data/vendor/cybozulib/include/cybozu/event.hpp +122 -0
- data/vendor/cybozulib/include/cybozu/exception.hpp +253 -0
- data/vendor/cybozulib/include/cybozu/file.hpp +626 -0
- data/vendor/cybozulib/include/cybozu/fmindex.hpp +291 -0
- data/vendor/cybozulib/include/cybozu/format.hpp +93 -0
- data/vendor/cybozulib/include/cybozu/frequency.hpp +264 -0
- data/vendor/cybozulib/include/cybozu/hash.hpp +67 -0
- data/vendor/cybozulib/include/cybozu/inttype.hpp +174 -0
- data/vendor/cybozulib/include/cybozu/itoa.hpp +336 -0
- data/vendor/cybozulib/include/cybozu/json.hpp +120 -0
- data/vendor/cybozulib/include/cybozu/line_stream.hpp +149 -0
- data/vendor/cybozulib/include/cybozu/link_libeay32.hpp +21 -0
- data/vendor/cybozulib/include/cybozu/link_mpir.hpp +18 -0
- data/vendor/cybozulib/include/cybozu/link_ssleay32.hpp +19 -0
- data/vendor/cybozulib/include/cybozu/log.hpp +237 -0
- data/vendor/cybozulib/include/cybozu/minixml.hpp +452 -0
- data/vendor/cybozulib/include/cybozu/mmap.hpp +143 -0
- data/vendor/cybozulib/include/cybozu/mutex.hpp +144 -0
- data/vendor/cybozulib/include/cybozu/nlp/mecab.hpp +96 -0
- data/vendor/cybozulib/include/cybozu/nlp/plsi.hpp +315 -0
- data/vendor/cybozulib/include/cybozu/nlp/random.hpp +74 -0
- data/vendor/cybozulib/include/cybozu/nlp/sparse.hpp +529 -0
- data/vendor/cybozulib/include/cybozu/nlp/svd.hpp +486 -0
- data/vendor/cybozulib/include/cybozu/nlp/tfidf.hpp +226 -0
- data/vendor/cybozulib/include/cybozu/nlp/top_score.hpp +75 -0
- data/vendor/cybozulib/include/cybozu/option.hpp +743 -0
- data/vendor/cybozulib/include/cybozu/parallel.hpp +88 -0
- data/vendor/cybozulib/include/cybozu/pcg.hpp +72 -0
- data/vendor/cybozulib/include/cybozu/process.hpp +324 -0
- data/vendor/cybozulib/include/cybozu/quit_signal_handler.hpp +66 -0
- data/vendor/cybozulib/include/cybozu/random_generator.hpp +144 -0
- data/vendor/cybozulib/include/cybozu/regex.hpp +463 -0
- data/vendor/cybozulib/include/cybozu/select8.hpp +279 -0
- data/vendor/cybozulib/include/cybozu/serializer.hpp +363 -0
- data/vendor/cybozulib/include/cybozu/sha1.hpp +209 -0
- data/vendor/cybozulib/include/cybozu/sha2.hpp +506 -0
- data/vendor/cybozulib/include/cybozu/siphash.hpp +105 -0
- data/vendor/cybozulib/include/cybozu/socket.hpp +785 -0
- data/vendor/cybozulib/include/cybozu/ssl.hpp +203 -0
- data/vendor/cybozulib/include/cybozu/stacktrace.hpp +291 -0
- data/vendor/cybozulib/include/cybozu/stream.hpp +269 -0
- data/vendor/cybozulib/include/cybozu/string.hpp +1746 -0
- data/vendor/cybozulib/include/cybozu/string_operation.hpp +365 -0
- data/vendor/cybozulib/include/cybozu/sucvector.hpp +378 -0
- data/vendor/cybozulib/include/cybozu/test.hpp +373 -0
- data/vendor/cybozulib/include/cybozu/thread.hpp +229 -0
- data/vendor/cybozulib/include/cybozu/time.hpp +281 -0
- data/vendor/cybozulib/include/cybozu/tls.hpp +115 -0
- data/vendor/cybozulib/include/cybozu/unordered_map.hpp +13 -0
- data/vendor/cybozulib/include/cybozu/unordered_set.hpp +13 -0
- data/vendor/cybozulib/include/cybozu/v128.hpp +376 -0
- data/vendor/cybozulib/include/cybozu/wavelet_matrix.hpp +345 -0
- data/vendor/cybozulib/include/cybozu/xorshift.hpp +189 -0
- data/vendor/cybozulib/include/cybozu/zlib.hpp +325 -0
- data/vendor/cybozulib/include/sais.hxx +364 -0
- data/vendor/cybozulib/misc/make_select8tbl.cpp +26 -0
- data/vendor/cybozulib/mk.bat +37 -0
- data/vendor/cybozulib/readme.md +29 -0
- data/vendor/cybozulib/release.props +12 -0
- data/vendor/cybozulib/sample/Makefile +30 -0
- data/vendor/cybozulib/sample/csucvector_smpl.cpp +42 -0
- data/vendor/cybozulib/sample/data/svd/org/test1.S +4 -0
- data/vendor/cybozulib/sample/data/svd/org/test1.U +4 -0
- data/vendor/cybozulib/sample/data/svd/org/test1.V +6 -0
- data/vendor/cybozulib/sample/data/svd/test1 +4 -0
- data/vendor/cybozulib/sample/data/svd/test2 +4 -0
- data/vendor/cybozulib/sample/desymbol.cpp +127 -0
- data/vendor/cybozulib/sample/exception_smpl.cpp +46 -0
- data/vendor/cybozulib/sample/fmindex_smpl.cpp +231 -0
- data/vendor/cybozulib/sample/log_smpl.cpp +19 -0
- data/vendor/cybozulib/sample/mecab_smpl.cpp +37 -0
- data/vendor/cybozulib/sample/option2_smpl.cpp +68 -0
- data/vendor/cybozulib/sample/option_smpl.cpp +42 -0
- data/vendor/cybozulib/sample/plsi_smpl.cpp +207 -0
- data/vendor/cybozulib/sample/proj/exception_smpl.vcproj +184 -0
- data/vendor/cybozulib/sample/proj/mecab_smpl.vcproj +184 -0
- data/vendor/cybozulib/sample/proj/ssl_smpl/ssl_smpl.vcxproj +85 -0
- data/vendor/cybozulib/sample/proj/ssl_smpl.vcproj +347 -0
- data/vendor/cybozulib/sample/proj/stacktrace_smpl/stacktrace_smpl.vcxproj +85 -0
- data/vendor/cybozulib/sample/proj/svd_smpl.vcproj +184 -0
- data/vendor/cybozulib/sample/quit_signal_handler.cpp +30 -0
- data/vendor/cybozulib/sample/serializer_smpl.cpp +196 -0
- data/vendor/cybozulib/sample/socket_smpl.cpp +82 -0
- data/vendor/cybozulib/sample/ssl_smpl.cpp +39 -0
- data/vendor/cybozulib/sample/stacktrace_smpl.cpp +52 -0
- data/vendor/cybozulib/sample/svd_bench_smpl.cpp +143 -0
- data/vendor/cybozulib/sample/svd_smpl.cpp +94 -0
- data/vendor/cybozulib/sample/wm_bench_smpl.cpp +182 -0
- data/vendor/cybozulib/sample/zlib_smpl.cpp +41 -0
- data/vendor/cybozulib/src/Makefile +8 -0
- data/vendor/cybozulib/src/base/Makefile +19 -0
- data/vendor/cybozulib/test/Makefile +12 -0
- data/vendor/cybozulib/test/base/Makefile +37 -0
- data/vendor/cybozulib/test/base/array_test.cpp +173 -0
- data/vendor/cybozulib/test/base/atoi_test.cpp +774 -0
- data/vendor/cybozulib/test/base/atomic_test.cpp +49 -0
- data/vendor/cybozulib/test/base/base64_test.cpp +113 -0
- data/vendor/cybozulib/test/base/bit_operation_test.cpp +134 -0
- data/vendor/cybozulib/test/base/bitvector_test.cpp +204 -0
- data/vendor/cybozulib/test/base/condition_variable_cs_test.cpp +92 -0
- data/vendor/cybozulib/test/base/condition_variable_test.cpp +88 -0
- data/vendor/cybozulib/test/base/config_test.cpp +236 -0
- data/vendor/cybozulib/test/base/crypto_test.cpp +122 -0
- data/vendor/cybozulib/test/base/csucvector_test.cpp +63 -0
- data/vendor/cybozulib/test/base/csv_test.cpp +182 -0
- data/vendor/cybozulib/test/base/data/a.xml +26 -0
- data/vendor/cybozulib/test/base/endian_test.cpp +56 -0
- data/vendor/cybozulib/test/base/env_test.cpp +22 -0
- data/vendor/cybozulib/test/base/event_test.cpp +41 -0
- data/vendor/cybozulib/test/base/file_test.cpp +233 -0
- data/vendor/cybozulib/test/base/fmindex_test.cpp +118 -0
- data/vendor/cybozulib/test/base/format_test.cpp +12 -0
- data/vendor/cybozulib/test/base/frequency_test.cpp +104 -0
- data/vendor/cybozulib/test/base/itoa_test.cpp +522 -0
- data/vendor/cybozulib/test/base/line_stream_test.cpp +208 -0
- data/vendor/cybozulib/test/base/mecab_test.cpp +41 -0
- data/vendor/cybozulib/test/base/minixml_test.cpp +103 -0
- data/vendor/cybozulib/test/base/mmap_test.cpp +15 -0
- data/vendor/cybozulib/test/base/option_test.cpp +487 -0
- data/vendor/cybozulib/test/base/parallel_test.cpp +48 -0
- data/vendor/cybozulib/test/base/proj/array_test/array_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/atoi_test/atoi_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/atomic_test/atomic_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/base64_test/base64_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/condition_variable_cs_test/condition_variable_cs_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/condition_variable_test/condition_variable_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/config_test/config_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/csv_test/csv_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/endian_test/endian_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/env_test/env_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/event_test/event_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/file_test/file_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/itoa_test/itoa_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/mecab_test/mecab_test.vcxproj +88 -0
- data/vendor/cybozulib/test/base/proj/minixml_test/minixml_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/mmap_test/mmap_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/serializer_test/serializer_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/sha1_test/sha1_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/stream_test/stream_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/string_operation_test/string_operation_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/string_test/string_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/thread_test/thread_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/time_test/time_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/tls_test/tls_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/zlib_test/zlib_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/random_generator_test.cpp +28 -0
- data/vendor/cybozulib/test/base/regex_test.cpp +74 -0
- data/vendor/cybozulib/test/base/serializer_test.cpp +483 -0
- data/vendor/cybozulib/test/base/sha1_test.cpp +61 -0
- data/vendor/cybozulib/test/base/sha2_test.cpp +191 -0
- data/vendor/cybozulib/test/base/siphash_test.cpp +33 -0
- data/vendor/cybozulib/test/base/socket_test.cpp +76 -0
- data/vendor/cybozulib/test/base/stream_test.cpp +101 -0
- data/vendor/cybozulib/test/base/string_operation_test.cpp +340 -0
- data/vendor/cybozulib/test/base/string_test.cpp +1705 -0
- data/vendor/cybozulib/test/base/sucvector_test.cpp +312 -0
- data/vendor/cybozulib/test/base/thread_test.cpp +62 -0
- data/vendor/cybozulib/test/base/time_test.cpp +164 -0
- data/vendor/cybozulib/test/base/tls_test.cpp +50 -0
- data/vendor/cybozulib/test/base/wavelet_matrix_test.cpp +145 -0
- data/vendor/cybozulib/test/base/zlib_test.cpp +371 -0
- data/vendor/cybozulib/test/nlp/Makefile +27 -0
- data/vendor/cybozulib/test/nlp/proj/random_test.vcproj +184 -0
- data/vendor/cybozulib/test/nlp/proj/sparse_test.vcproj +184 -0
- data/vendor/cybozulib/test/nlp/proj/svd_test.vcproj +184 -0
- data/vendor/cybozulib/test/nlp/random_test.cpp +62 -0
- data/vendor/cybozulib/test/nlp/sparse_test.cpp +347 -0
- data/vendor/cybozulib/test/nlp/svd_test.cpp +234 -0
- data/vendor/cybozulib/test/nlp/top_score_test.cpp +40 -0
- data/vendor/cybozulib/tool/create_vcproj.py +186 -0
- data/vendor/cybozulib/tool/vcproj_tmpl.py +185 -0
- data/vendor/msoffice/COPYRIGHT +27 -0
- data/vendor/msoffice/Makefile +29 -0
- data/vendor/msoffice/bin/64/msoc.dll +0 -0
- data/vendor/msoffice/bin/64/msocsample.exe +0 -0
- data/vendor/msoffice/bin/64/msoffice-crypt.exe +0 -0
- data/vendor/msoffice/bin/msoc.dll +0 -0
- data/vendor/msoffice/bin/msocsample.exe +0 -0
- data/vendor/msoffice/bin/msoffice-crypt.exe +0 -0
- data/vendor/msoffice/common.mk +71 -0
- data/vendor/msoffice/common.props +26 -0
- data/vendor/msoffice/debug.props +14 -0
- data/vendor/msoffice/include/attack.hpp +211 -0
- data/vendor/msoffice/include/cfb.hpp +777 -0
- data/vendor/msoffice/include/crypto_util.hpp +450 -0
- data/vendor/msoffice/include/custom_sha1.hpp +342 -0
- data/vendor/msoffice/include/decode.hpp +240 -0
- data/vendor/msoffice/include/encode.hpp +221 -0
- data/vendor/msoffice/include/make_dataspace.hpp +316 -0
- data/vendor/msoffice/include/msoc.h +129 -0
- data/vendor/msoffice/include/resource.hpp +7 -0
- data/vendor/msoffice/include/standard_encryption.hpp +145 -0
- data/vendor/msoffice/include/uint32vec.hpp +179 -0
- data/vendor/msoffice/include/util.hpp +212 -0
- data/vendor/msoffice/lib/.emptydir +0 -0
- data/vendor/msoffice/misc/decrypt-xls.vbs +46 -0
- data/vendor/msoffice/mk.bat +1 -0
- data/vendor/msoffice/mkdll.bat +3 -0
- data/vendor/msoffice/msoc.def +13 -0
- data/vendor/msoffice/msocsample.py +178 -0
- data/vendor/msoffice/msoffice12.sln +31 -0
- data/vendor/msoffice/readme.md +110 -0
- data/vendor/msoffice/release.props +28 -0
- data/vendor/msoffice/src/Makefile +19 -0
- data/vendor/msoffice/src/attack.cpp +124 -0
- data/vendor/msoffice/src/cfb_test.cpp +77 -0
- data/vendor/msoffice/src/minisample.c +54 -0
- data/vendor/msoffice/src/msocdll.cpp +276 -0
- data/vendor/msoffice/src/msocsample.c +136 -0
- data/vendor/msoffice/src/msoffice-crypt.cpp +219 -0
- data/vendor/msoffice/src/proj/attack/attack.vcxproj +88 -0
- data/vendor/msoffice/src/proj/main/msoffice-crypt.vcxproj +88 -0
- data/vendor/msoffice/src/sha1.cpp +234 -0
- data/vendor/msoffice/test/Makefile +20 -0
- data/vendor/msoffice/test/cfb_test.cpp +74 -0
- data/vendor/msoffice/test/hash_test.cpp +59 -0
- data/vendor/msoffice/test/proj/cfb/cfb_test.vcxproj +90 -0
- data/vendor/msoffice/test/proj/hash/hash_test.vcxproj +90 -0
- data/vendor/msoffice/test/sampl.bat +8 -0
- data/vendor/msoffice/test_all.py +46 -0
- data/vendor/update +4 -0
- metadata +351 -0
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
#pragma once
|
|
2
|
+
/**
|
|
3
|
+
@file
|
|
4
|
+
@brief stream and line stream class
|
|
5
|
+
|
|
6
|
+
@author MITSUNARI Shigeo(@herumi)
|
|
7
|
+
*/
|
|
8
|
+
#ifndef CYBOZU_DONT_USE_STRING
|
|
9
|
+
#include <string>
|
|
10
|
+
#include <iosfwd>
|
|
11
|
+
#endif
|
|
12
|
+
#ifndef CYBOZU_DONT_USE_EXCEPTION
|
|
13
|
+
#include <cybozu/exception.hpp>
|
|
14
|
+
#endif
|
|
15
|
+
#include <memory.h>
|
|
16
|
+
|
|
17
|
+
namespace cybozu {
|
|
18
|
+
|
|
19
|
+
namespace stream_local {
|
|
20
|
+
|
|
21
|
+
template <typename From, typename To>
|
|
22
|
+
struct is_convertible {
|
|
23
|
+
typedef char yes;
|
|
24
|
+
typedef int no;
|
|
25
|
+
|
|
26
|
+
static no test(...);
|
|
27
|
+
static yes test(const To*);
|
|
28
|
+
static const bool value = sizeof(test(static_cast<const From*>(0))) == sizeof(yes);
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
template <bool b, class T = void>
|
|
32
|
+
struct enable_if { typedef T type; };
|
|
33
|
+
|
|
34
|
+
template <class T>
|
|
35
|
+
struct enable_if<false, T> {};
|
|
36
|
+
|
|
37
|
+
#ifndef CYBOZU_DONT_USE_STRING
|
|
38
|
+
/* specialization for istream */
|
|
39
|
+
template<class InputStream>
|
|
40
|
+
size_t readSome_inner(void *buf, size_t size, InputStream& is, typename enable_if<is_convertible<InputStream, std::istream>::value>::type* = 0)
|
|
41
|
+
{
|
|
42
|
+
if (size > 0x7fffffff) size = 0x7fffffff;
|
|
43
|
+
is.read(static_cast<char *>(buf), size);
|
|
44
|
+
const int64_t readSize = is.gcount();
|
|
45
|
+
if (readSize < 0) return 0;
|
|
46
|
+
if (size == 1 && readSize == 0) is.clear();
|
|
47
|
+
return static_cast<size_t>(readSize);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/* generic version for size_t readSome(void *, size_t) */
|
|
51
|
+
template<class InputStream>
|
|
52
|
+
size_t readSome_inner(void *buf, size_t size, InputStream& is, typename enable_if<!is_convertible<InputStream, std::istream>::value>::type* = 0)
|
|
53
|
+
{
|
|
54
|
+
return is.readSome(buf, size);
|
|
55
|
+
}
|
|
56
|
+
#else
|
|
57
|
+
template<class InputStream>
|
|
58
|
+
size_t readSome_inner(void *buf, size_t size, InputStream& is)
|
|
59
|
+
{
|
|
60
|
+
return is.readSome(buf, size);
|
|
61
|
+
}
|
|
62
|
+
#endif
|
|
63
|
+
|
|
64
|
+
#ifndef CYBOZU_DONT_USE_EXCEPTION
|
|
65
|
+
/* specialization for ostream */
|
|
66
|
+
template<class OutputStream>
|
|
67
|
+
void writeSub(OutputStream& os, const void *buf, size_t size, typename enable_if<is_convertible<OutputStream, std::ostream>::value>::type* = 0)
|
|
68
|
+
{
|
|
69
|
+
if (!os.write(static_cast<const char *>(buf), size)) throw cybozu::Exception("stream:writeSub") << size;
|
|
70
|
+
}
|
|
71
|
+
#endif
|
|
72
|
+
|
|
73
|
+
#ifndef CYBOZU_DONT_USE_STRING
|
|
74
|
+
/* generic version for void write(const void*, size_t), which writes all data */
|
|
75
|
+
template<class OutputStream>
|
|
76
|
+
void writeSub(OutputStream& os, const void *buf, size_t size, typename enable_if<!is_convertible<OutputStream, std::ostream>::value>::type* = 0)
|
|
77
|
+
{
|
|
78
|
+
os.write(buf, size);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
template<class OutputStream>
|
|
82
|
+
void writeSub(bool *pb, OutputStream& os, const void *buf, size_t size, typename enable_if<is_convertible<OutputStream, std::ostream>::value>::type* = 0)
|
|
83
|
+
{
|
|
84
|
+
*pb = !!os.write(static_cast<const char *>(buf), size);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/* generic version for void write(const void*, size_t), which writes all data */
|
|
88
|
+
template<class OutputStream>
|
|
89
|
+
void writeSub(bool *pb, OutputStream& os, const void *buf, size_t size, typename enable_if<!is_convertible<OutputStream, std::ostream>::value>::type* = 0)
|
|
90
|
+
{
|
|
91
|
+
os.write(pb, buf, size);
|
|
92
|
+
}
|
|
93
|
+
#else
|
|
94
|
+
template<class OutputStream>
|
|
95
|
+
void writeSub(bool *pb, OutputStream& os, const void *buf, size_t size)
|
|
96
|
+
{
|
|
97
|
+
os.write(pb, buf, size);
|
|
98
|
+
}
|
|
99
|
+
#endif
|
|
100
|
+
|
|
101
|
+
} // stream_local
|
|
102
|
+
|
|
103
|
+
/*
|
|
104
|
+
make a specializaiton of class to use new InputStream, OutputStream
|
|
105
|
+
*/
|
|
106
|
+
template<class InputStream>
|
|
107
|
+
struct InputStreamTag {
|
|
108
|
+
static size_t readSome(void *buf, size_t size, InputStream& is)
|
|
109
|
+
{
|
|
110
|
+
return stream_local::readSome_inner<InputStream>(buf, size, is);
|
|
111
|
+
}
|
|
112
|
+
static bool readChar(char *c, InputStream& is)
|
|
113
|
+
{
|
|
114
|
+
return readSome(c, 1, is) == 1;
|
|
115
|
+
}
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
template<class OutputStream>
|
|
119
|
+
struct OutputStreamTag {
|
|
120
|
+
static void write(OutputStream& os, const void *buf, size_t size)
|
|
121
|
+
{
|
|
122
|
+
stream_local::writeSub<OutputStream>(os, buf, size);
|
|
123
|
+
}
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
class MemoryInputStream {
|
|
127
|
+
const char *p_;
|
|
128
|
+
size_t size_;
|
|
129
|
+
size_t pos;
|
|
130
|
+
public:
|
|
131
|
+
MemoryInputStream(const void *p, size_t size) : p_(static_cast<const char *>(p)), size_(size), pos(0) {}
|
|
132
|
+
size_t readSome(void *buf, size_t size)
|
|
133
|
+
{
|
|
134
|
+
if (size > size_ - pos) size = size_ - pos;
|
|
135
|
+
memcpy(buf, p_ + pos, size);
|
|
136
|
+
pos += size;
|
|
137
|
+
return size;
|
|
138
|
+
}
|
|
139
|
+
size_t getPos() const { return pos; }
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
class MemoryOutputStream {
|
|
143
|
+
char *p_;
|
|
144
|
+
size_t size_;
|
|
145
|
+
size_t pos;
|
|
146
|
+
public:
|
|
147
|
+
MemoryOutputStream(void *p, size_t size) : p_(static_cast<char *>(p)), size_(size), pos(0) {}
|
|
148
|
+
void write(bool *pb, const void *buf, size_t size)
|
|
149
|
+
{
|
|
150
|
+
if (size > size_ - pos) {
|
|
151
|
+
*pb = false;
|
|
152
|
+
return;
|
|
153
|
+
}
|
|
154
|
+
memcpy(p_ + pos, buf, size);
|
|
155
|
+
pos += size;
|
|
156
|
+
*pb = true;
|
|
157
|
+
}
|
|
158
|
+
#ifndef CYBOZU_DONT_USE_EXCEPTION
|
|
159
|
+
void write(const void *buf, size_t size)
|
|
160
|
+
{
|
|
161
|
+
bool b;
|
|
162
|
+
write(&b, buf, size);
|
|
163
|
+
if (!b) throw cybozu::Exception("MemoryOutputStream:write") << size << size_ << pos;
|
|
164
|
+
}
|
|
165
|
+
#endif
|
|
166
|
+
size_t getPos() const { return pos; }
|
|
167
|
+
};
|
|
168
|
+
|
|
169
|
+
#ifndef CYBOZU_DONT_USE_STRING
|
|
170
|
+
class StringInputStream {
|
|
171
|
+
const std::string& str_;
|
|
172
|
+
size_t pos;
|
|
173
|
+
StringInputStream(const StringInputStream&);
|
|
174
|
+
void operator=(const StringInputStream&);
|
|
175
|
+
public:
|
|
176
|
+
explicit StringInputStream(const std::string& str) : str_(str), pos(0) {}
|
|
177
|
+
size_t readSome(void *buf, size_t size)
|
|
178
|
+
{
|
|
179
|
+
const size_t remainSize = str_.size() - pos;
|
|
180
|
+
if (size > remainSize) size = remainSize;
|
|
181
|
+
memcpy(buf, &str_[pos], size);
|
|
182
|
+
pos += size;
|
|
183
|
+
return size;
|
|
184
|
+
}
|
|
185
|
+
size_t getPos() const { return pos; }
|
|
186
|
+
};
|
|
187
|
+
|
|
188
|
+
class StringOutputStream {
|
|
189
|
+
std::string& str_;
|
|
190
|
+
StringOutputStream(const StringOutputStream&);
|
|
191
|
+
void operator=(const StringOutputStream&);
|
|
192
|
+
public:
|
|
193
|
+
explicit StringOutputStream(std::string& str) : str_(str) {}
|
|
194
|
+
void write(bool *pb, const void *buf, size_t size)
|
|
195
|
+
{
|
|
196
|
+
str_.append(static_cast<const char *>(buf), size);
|
|
197
|
+
*pb = true;
|
|
198
|
+
}
|
|
199
|
+
void write(const void *buf, size_t size)
|
|
200
|
+
{
|
|
201
|
+
str_.append(static_cast<const char *>(buf), size);
|
|
202
|
+
}
|
|
203
|
+
size_t getPos() const { return str_.size(); }
|
|
204
|
+
};
|
|
205
|
+
#endif
|
|
206
|
+
|
|
207
|
+
template<class InputStream>
|
|
208
|
+
size_t readSome(void *buf, size_t size, InputStream& is)
|
|
209
|
+
{
|
|
210
|
+
return stream_local::readSome_inner(buf, size, is);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
template<class OutputStream>
|
|
214
|
+
void write(OutputStream& os, const void *buf, size_t size)
|
|
215
|
+
{
|
|
216
|
+
stream_local::writeSub(os, buf, size);
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
template<class OutputStream>
|
|
220
|
+
void write(bool *pb, OutputStream& os, const void *buf, size_t size)
|
|
221
|
+
{
|
|
222
|
+
stream_local::writeSub(pb, os, buf, size);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
template<typename InputStream>
|
|
226
|
+
void read(bool *pb, void *buf, size_t size, InputStream& is)
|
|
227
|
+
{
|
|
228
|
+
char *p = static_cast<char*>(buf);
|
|
229
|
+
while (size > 0) {
|
|
230
|
+
size_t readSize = cybozu::readSome(p, size, is);
|
|
231
|
+
if (readSize == 0) {
|
|
232
|
+
*pb = false;
|
|
233
|
+
return;
|
|
234
|
+
}
|
|
235
|
+
p += readSize;
|
|
236
|
+
size -= readSize;
|
|
237
|
+
}
|
|
238
|
+
*pb = true;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
#ifndef CYBOZU_DONT_USE_EXCEPTION
|
|
242
|
+
template<typename InputStream>
|
|
243
|
+
void read(void *buf, size_t size, InputStream& is)
|
|
244
|
+
{
|
|
245
|
+
bool b;
|
|
246
|
+
read(&b, buf, size, is);
|
|
247
|
+
if (!b) throw cybozu::Exception("stream:read");
|
|
248
|
+
}
|
|
249
|
+
#endif
|
|
250
|
+
|
|
251
|
+
template<class InputStream>
|
|
252
|
+
bool readChar(char *c, InputStream& is)
|
|
253
|
+
{
|
|
254
|
+
return readSome(c, 1, is) == 1;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
template<class OutputStream>
|
|
258
|
+
void writeChar(OutputStream& os, char c)
|
|
259
|
+
{
|
|
260
|
+
cybozu::write(os, &c, 1);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
template<class OutputStream>
|
|
264
|
+
void writeChar(bool *pb, OutputStream& os, char c)
|
|
265
|
+
{
|
|
266
|
+
cybozu::write(pb, os, &c, 1);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
} // cybozu
|