aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/poco/Foundation/include/Poco/Base32Decoder.h
diff options
context:
space:
mode:
authororivej <orivej@yandex-team.ru>2022-02-10 16:44:49 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:44:49 +0300
commit718c552901d703c502ccbefdfc3c9028d608b947 (patch)
tree46534a98bbefcd7b1f3faa5b52c138ab27db75b7 /contrib/libs/poco/Foundation/include/Poco/Base32Decoder.h
parente9656aae26e0358d5378e5b63dcac5c8dbe0e4d0 (diff)
downloadydb-718c552901d703c502ccbefdfc3c9028d608b947.tar.gz
Restoring authorship annotation for <orivej@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/poco/Foundation/include/Poco/Base32Decoder.h')
-rw-r--r--contrib/libs/poco/Foundation/include/Poco/Base32Decoder.h208
1 files changed, 104 insertions, 104 deletions
diff --git a/contrib/libs/poco/Foundation/include/Poco/Base32Decoder.h b/contrib/libs/poco/Foundation/include/Poco/Base32Decoder.h
index 54367c5886..c7e0f60f68 100644
--- a/contrib/libs/poco/Foundation/include/Poco/Base32Decoder.h
+++ b/contrib/libs/poco/Foundation/include/Poco/Base32Decoder.h
@@ -1,104 +1,104 @@
-//
-// Base32Decoder.h
-//
-// Library: Foundation
-// Package: Streams
-// Module: Base32
-//
-// Definition of class Base32Decoder.
-//
-// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
-// and Contributors.
-//
-// SPDX-License-Identifier: BSL-1.0
-//
-
-
-#ifndef Foundation_Base32Decoder_INCLUDED
-#define Foundation_Base32Decoder_INCLUDED
-
-
-#include "Poco/Foundation.h"
-#include "Poco/UnbufferedStreamBuf.h"
-#include <istream>
-
-
-namespace Poco {
-
-
-class Foundation_API Base32DecoderBuf: public UnbufferedStreamBuf
- /// This streambuf base32-decodes all data read
- /// from the istream connected to it.
- ///
- /// Note: For performance reasons, the characters
- /// are read directly from the given istream's
- /// underlying streambuf, so the state
- /// of the istream will not reflect that of
- /// its streambuf.
-{
-public:
- Base32DecoderBuf(std::istream& istr);
- ~Base32DecoderBuf();
-
-private:
- int readFromDevice();
- int readOne();
-
- unsigned char _group[8];
- int _groupLength;
- int _groupIndex;
- std::streambuf& _buf;
-
- static unsigned char IN_ENCODING[256];
- static bool IN_ENCODING_INIT;
-
-private:
- Base32DecoderBuf(const Base32DecoderBuf&);
- Base32DecoderBuf& operator = (const Base32DecoderBuf&);
-};
-
-
-class Foundation_API Base32DecoderIOS: public virtual std::ios
- /// The base class for Base32Decoder.
- ///
- /// This class is needed to ensure the correct initialization
- /// order of the stream buffer and base classes.
-{
-public:
- Base32DecoderIOS(std::istream& istr);
- ~Base32DecoderIOS();
- Base32DecoderBuf* rdbuf();
-
-protected:
- Base32DecoderBuf _buf;
-
-private:
- Base32DecoderIOS(const Base32DecoderIOS&);
- Base32DecoderIOS& operator = (const Base32DecoderIOS&);
-};
-
-
-class Foundation_API Base32Decoder: public Base32DecoderIOS, public std::istream
- /// This istream base32-decodes all data
- /// read from the istream connected to it.
- ///
- /// Note: For performance reasons, the characters
- /// are read directly from the given istream's
- /// underlying streambuf, so the state
- /// of the istream will not reflect that of
- /// its streambuf.
-{
-public:
- Base32Decoder(std::istream& istr);
- ~Base32Decoder();
-
-private:
- Base32Decoder(const Base32Decoder&);
- Base32Decoder& operator = (const Base32Decoder&);
-};
-
-
-} // namespace Poco
-
-
-#endif // Foundation_Base32Decoder_INCLUDED
+//
+// Base32Decoder.h
+//
+// Library: Foundation
+// Package: Streams
+// Module: Base32
+//
+// Definition of class Base32Decoder.
+//
+// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
+// and Contributors.
+//
+// SPDX-License-Identifier: BSL-1.0
+//
+
+
+#ifndef Foundation_Base32Decoder_INCLUDED
+#define Foundation_Base32Decoder_INCLUDED
+
+
+#include "Poco/Foundation.h"
+#include "Poco/UnbufferedStreamBuf.h"
+#include <istream>
+
+
+namespace Poco {
+
+
+class Foundation_API Base32DecoderBuf: public UnbufferedStreamBuf
+ /// This streambuf base32-decodes all data read
+ /// from the istream connected to it.
+ ///
+ /// Note: For performance reasons, the characters
+ /// are read directly from the given istream's
+ /// underlying streambuf, so the state
+ /// of the istream will not reflect that of
+ /// its streambuf.
+{
+public:
+ Base32DecoderBuf(std::istream& istr);
+ ~Base32DecoderBuf();
+
+private:
+ int readFromDevice();
+ int readOne();
+
+ unsigned char _group[8];
+ int _groupLength;
+ int _groupIndex;
+ std::streambuf& _buf;
+
+ static unsigned char IN_ENCODING[256];
+ static bool IN_ENCODING_INIT;
+
+private:
+ Base32DecoderBuf(const Base32DecoderBuf&);
+ Base32DecoderBuf& operator = (const Base32DecoderBuf&);
+};
+
+
+class Foundation_API Base32DecoderIOS: public virtual std::ios
+ /// The base class for Base32Decoder.
+ ///
+ /// This class is needed to ensure the correct initialization
+ /// order of the stream buffer and base classes.
+{
+public:
+ Base32DecoderIOS(std::istream& istr);
+ ~Base32DecoderIOS();
+ Base32DecoderBuf* rdbuf();
+
+protected:
+ Base32DecoderBuf _buf;
+
+private:
+ Base32DecoderIOS(const Base32DecoderIOS&);
+ Base32DecoderIOS& operator = (const Base32DecoderIOS&);
+};
+
+
+class Foundation_API Base32Decoder: public Base32DecoderIOS, public std::istream
+ /// This istream base32-decodes all data
+ /// read from the istream connected to it.
+ ///
+ /// Note: For performance reasons, the characters
+ /// are read directly from the given istream's
+ /// underlying streambuf, so the state
+ /// of the istream will not reflect that of
+ /// its streambuf.
+{
+public:
+ Base32Decoder(std::istream& istr);
+ ~Base32Decoder();
+
+private:
+ Base32Decoder(const Base32Decoder&);
+ Base32Decoder& operator = (const Base32Decoder&);
+};
+
+
+} // namespace Poco
+
+
+#endif // Foundation_Base32Decoder_INCLUDED