2016-05-20 01:40:54 +02:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2016-05-20 01:40:54 +02:00
|
|
|
//
|
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
|
|
|
|
#include <rocksdb/env.h>
|
|
|
|
#include "port/win/env_win.h"
|
2018-06-04 21:04:52 +02:00
|
|
|
#include "util/compression_context_cache.h"
|
2019-05-30 20:21:38 +02:00
|
|
|
#include "test_util/sync_point.h"
|
2018-06-04 21:04:52 +02:00
|
|
|
#include "util/thread_local.h"
|
2016-05-20 01:40:54 +02:00
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
namespace port {
|
|
|
|
|
2018-06-04 21:04:52 +02:00
|
|
|
// We choose not to destroy the env because joining the threads from the
|
2016-05-20 01:40:54 +02:00
|
|
|
// system loader
|
|
|
|
// which destroys the statics (same as from DLLMain) creates a system loader
|
|
|
|
// dead-lock.
|
|
|
|
// in this manner any remaining threads are terminated OK.
|
|
|
|
namespace {
|
|
|
|
std::once_flag winenv_once_flag;
|
|
|
|
Env* envptr;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
Env* Env::Default() {
|
|
|
|
using namespace port;
|
2018-06-04 21:04:52 +02:00
|
|
|
ThreadLocalPtr::InitSingletons();
|
|
|
|
CompressionContextCache::InitSingleton();
|
2018-06-05 21:51:05 +02:00
|
|
|
INIT_SYNC_POINT_SINGLETONS();
|
2016-05-20 01:40:54 +02:00
|
|
|
std::call_once(winenv_once_flag, []() { envptr = new WinEnv(); });
|
|
|
|
return envptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|