aboutsummaryrefslogtreecommitdiffstats
path: root/util/memory/blob.cpp
diff options
context:
space:
mode:
authorVlad Yaroslavlev <vladon@vladon.com>2022-02-10 16:46:23 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:23 +0300
commit706b83ed7de5a473436620367af31fc0ceecde07 (patch)
tree103305d30dec77e8f6367753367f59b3cd68f9f1 /util/memory/blob.cpp
parent918e8a1574070d0ec733f0b76cfad8f8892ad2e5 (diff)
downloadydb-706b83ed7de5a473436620367af31fc0ceecde07.tar.gz
Restoring authorship annotation for Vlad Yaroslavlev <vladon@vladon.com>. Commit 1 of 2.
Diffstat (limited to 'util/memory/blob.cpp')
-rw-r--r--util/memory/blob.cpp42
1 files changed, 21 insertions, 21 deletions
diff --git a/util/memory/blob.cpp b/util/memory/blob.cpp
index 91da5cadca..40b0cab8f4 100644
--- a/util/memory/blob.cpp
+++ b/util/memory/blob.cpp
@@ -6,7 +6,7 @@
#include <util/system/mlock.h>
#include <util/stream/buffer.h>
#include <util/generic/ptr.h>
-#include <util/generic/string.h>
+#include <util/generic/string.h>
#include <util/generic/buffer.h>
#include <util/generic/ylimits.h>
#include <util/generic/singleton.h>
@@ -23,19 +23,19 @@ public:
~TDynamicBlobBase() override = default;
- void Ref() noexcept override {
+ void Ref() noexcept override {
TRefBase::Ref();
}
- void UnRef() noexcept override {
+ void UnRef() noexcept override {
TRefBase::UnRef();
}
- inline void* Data() const noexcept {
+ inline void* Data() const noexcept {
return this->AdditionalData();
}
- inline size_t Length() const noexcept {
+ inline size_t Length() const noexcept {
return this->AdditionalDataLength();
}
};
@@ -51,15 +51,15 @@ public:
~TBufferBlobBase() override = default;
- void Ref() noexcept override {
+ void Ref() noexcept override {
TRefBase::Ref();
}
- void UnRef() noexcept override {
+ void UnRef() noexcept override {
TRefBase::UnRef();
}
- inline const TBuffer& Buffer() const noexcept {
+ inline const TBuffer& Buffer() const noexcept {
return Buf_;
}
@@ -72,7 +72,7 @@ class TStringBlobBase: public TBlob::TBase, public TRefCounted<TStringBlobBase<T
using TRefBase = TRefCounted<TStringBlobBase, TCounter>;
public:
- inline TStringBlobBase(const TString& s)
+ inline TStringBlobBase(const TString& s)
: S_(s)
{
}
@@ -84,20 +84,20 @@ public:
~TStringBlobBase() override = default;
- void Ref() noexcept override {
+ void Ref() noexcept override {
TRefBase::Ref();
}
- void UnRef() noexcept override {
+ void UnRef() noexcept override {
TRefBase::UnRef();
}
- inline const TString& String() const noexcept {
+ inline const TString& String() const noexcept {
return S_;
}
private:
- const TString S_;
+ const TString S_;
};
template <class TCounter>
@@ -128,19 +128,19 @@ public:
}
}
- void Ref() noexcept override {
+ void Ref() noexcept override {
TRefBase::Ref();
}
- void UnRef() noexcept override {
+ void UnRef() noexcept override {
TRefBase::UnRef();
}
- inline const void* Data() const noexcept {
+ inline const void* Data() const noexcept {
return Map_.Ptr();
}
- inline size_t Length() const noexcept {
+ inline size_t Length() const noexcept {
return Map_.MappedSize();
}
@@ -324,12 +324,12 @@ static inline TBlob ConstructFromFileContent(const TFile& file, ui64 offset, ui6
return ReadFromFile<TCounter>(file, offset, static_cast<size_t>(length));
}
-TBlob TBlob::FromFileContentSingleThreaded(const TString& path) {
+TBlob TBlob::FromFileContentSingleThreaded(const TString& path) {
TFile file(path, RdOnly);
return ConstructFromFileContent<TSimpleCounter>(file, 0, file.GetLength());
}
-TBlob TBlob::FromFileContent(const TString& path) {
+TBlob TBlob::FromFileContent(const TString& path) {
TFile file(path, RdOnly);
return ConstructFromFileContent<TAtomicCounter>(file, 0, file.GetLength());
}
@@ -401,7 +401,7 @@ TBlob ConstructFromString(S&& s) {
return ret;
}
-TBlob TBlob::FromStringSingleThreaded(const TString& s) {
+TBlob TBlob::FromStringSingleThreaded(const TString& s) {
return ConstructFromString<TSimpleCounter>(s);
}
@@ -409,7 +409,7 @@ TBlob TBlob::FromStringSingleThreaded(TString&& s) {
return ConstructFromString<TSimpleCounter>(std::move(s));
}
-TBlob TBlob::FromString(const TString& s) {
+TBlob TBlob::FromString(const TString& s) {
return ConstructFromString<TAtomicCounter>(s);
}