mirror of https://gitee.com/bigwinds/arangodb
149 lines
5.2 KiB
C++
149 lines
5.2 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2014-2016 ArangoDB GmbH, Cologne, Germany
|
|
/// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany
|
|
///
|
|
/// Licensed 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.
|
|
///
|
|
/// Copyright holder is ArangoDB GmbH, Cologne, Germany
|
|
///
|
|
/// @author Dr. Frank Celler
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "threads.h"
|
|
|
|
#include "Basics/Logger.h"
|
|
#include "Basics/tri-strings.h"
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief data block for thread starter
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
typedef struct thread_data_s {
|
|
void (*starter)(void*);
|
|
void* _data;
|
|
char* _name;
|
|
} thread_data_t;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief starter function for thread
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
static DWORD __stdcall ThreadStarter(void* data) {
|
|
thread_data_t* d;
|
|
|
|
d = (thread_data_t*)data;
|
|
d->starter(d->_data);
|
|
|
|
TRI_Free(TRI_CORE_MEM_ZONE, d);
|
|
|
|
return 0;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief initializes a thread
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void TRI_InitThread(TRI_thread_t* thread) { *thread = 0; }
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief starts a thread
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool TRI_StartThread(TRI_thread_t* thread, TRI_tid_t* threadId,
|
|
char const* name, void (*starter)(void*), void* data) {
|
|
thread_data_t* d = static_cast<thread_data_t*>(
|
|
TRI_Allocate(TRI_CORE_MEM_ZONE, sizeof(thread_data_t), false));
|
|
|
|
if (d == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
d->starter = starter;
|
|
d->_data = data;
|
|
d->_name = TRI_DuplicateString(name);
|
|
|
|
*thread = CreateThread(0, // default security attributes
|
|
0, // use default stack size
|
|
ThreadStarter, // thread function name
|
|
d, // argument to thread function
|
|
0, // use default creation flags
|
|
threadId); // returns the thread identifier
|
|
|
|
if (*thread == 0) {
|
|
TRI_Free(TRI_CORE_MEM_ZONE, d);
|
|
LOG(ERR) << "could not start thread: " << strerror(errno) << " ";
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief waits for a thread to finish
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
int TRI_JoinThread(TRI_thread_t* thread) {
|
|
DWORD result = WaitForSingleObject(*thread, INFINITE);
|
|
|
|
switch (result) {
|
|
case WAIT_ABANDONED: {
|
|
LOG(FATAL) << "threads-win32.c:TRI_JoinThread:could not join thread --> WAIT_ABANDONED"; FATAL_ERROR_EXIT();
|
|
}
|
|
|
|
case WAIT_OBJECT_0: {
|
|
// everything ok
|
|
break;
|
|
}
|
|
|
|
case WAIT_TIMEOUT: {
|
|
LOG(FATAL) << "threads-win32.c:TRI_JoinThread:could not joint thread --> WAIT_TIMEOUT"; FATAL_ERROR_EXIT();
|
|
}
|
|
|
|
case WAIT_FAILED: {
|
|
result = GetLastError();
|
|
LOG(FATAL) << "threads-win32.c:TRI_JoinThread:could not join thread --> WAIT_FAILED - reason -->" << result; FATAL_ERROR_EXIT();
|
|
}
|
|
}
|
|
|
|
return TRI_ERROR_NO_ERROR;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief checks if this thread is the thread passed as a parameter
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool TRI_IsSelfThread(TRI_thread_t* thread) {
|
|
// ...........................................................................
|
|
// The GetThreadID(...) function is only available in Windows Vista or Higher
|
|
// TODO: Change the TRI_thread_t into a structure which stores the thread id
|
|
// as well as the thread handle. This can then be passed around
|
|
// ...........................................................................
|
|
return (GetCurrentThreadId() == GetThreadId(thread));
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief allow cancelation
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void TRI_AllowCancelation(void) {
|
|
// TODO: No native implementation of this
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief sets the process affinity
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void TRI_SetProcessorAffinity(TRI_thread_t* thread, size_t core) {}
|