blob: c0a79b15c27a2a99b37f5640b735eda1cc9e38f4 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#include <ostream>
#include <vector>
#include <glog/logging.h>
#include <gtest/gtest.h>
#include "kudu/gutil/ref_counted.h"
#include "kudu/gutil/strings/substitute.h"
#include "kudu/util/once.h"
#include "kudu/util/status.h"
#include "kudu/util/test_macros.h"
#include "kudu/util/thread.h"
using std::vector;
using strings::Substitute;
namespace kudu {
namespace {
struct Thing {
explicit Thing(bool should_fail)
: should_fail_(should_fail),
value_(0) {
}
Status Init() {
return once_.Init(&Thing::InitOnce, this);
}
Status InitOnce() {
if (should_fail_) {
return Status::IllegalState("Whoops!");
}
value_ = 1;
return Status::OK();
}
const bool should_fail_;
int value_;
KuduOnceDynamic once_;
};
} // anonymous namespace
TEST(TestOnce, KuduOnceDynamicTest) {
{
Thing t(false);
ASSERT_EQ(0, t.value_);
ASSERT_FALSE(t.once_.init_succeeded());
for (int i = 0; i < 2; i++) {
ASSERT_OK(t.Init());
ASSERT_EQ(1, t.value_);
ASSERT_TRUE(t.once_.init_succeeded());
}
}
{
Thing t(true);
for (int i = 0; i < 2; i++) {
ASSERT_TRUE(t.Init().IsIllegalState());
ASSERT_EQ(0, t.value_);
ASSERT_FALSE(t.once_.init_succeeded());
}
}
}
static void InitOrGetInitted(Thing* t, int i) {
if (i % 2 == 0) {
LOG(INFO) << "Thread " << i << " initting";
t->Init();
} else {
LOG(INFO) << "Thread " << i << " value: " << t->once_.init_succeeded();
}
}
TEST(TestOnce, KuduOnceDynamicThreadSafeTest) {
Thing thing(false);
// The threads will read and write to thing.once_.initted. If access to
// it is not synchronized, TSAN will flag the access as data races.
vector<scoped_refptr<Thread> > threads;
for (int i = 0; i < 10; i++) {
scoped_refptr<Thread> t;
ASSERT_OK(Thread::Create("test", Substitute("thread $0", i),
&InitOrGetInitted, &thing, i, &t));
threads.push_back(t);
}
for (const scoped_refptr<Thread>& t : threads) {
t->Join();
}
}
} // namespace kudu