Skip to content

Commit

Permalink
Cleanup jthread and fix win32 build
Browse files Browse the repository at this point in the history
  • Loading branch information
sapier authored and sapier committed Dec 1, 2013
1 parent f3439c4 commit 04e9a9d
Show file tree
Hide file tree
Showing 29 changed files with 185 additions and 194 deletions.
1 change: 0 additions & 1 deletion src/ban.cpp
Expand Up @@ -31,7 +31,6 @@ BanManager::BanManager(const std::string &banfilepath):
m_banfilepath(banfilepath),
m_modified(false)
{
m_mutex.Init();
try{
load();
}
Expand Down
13 changes: 6 additions & 7 deletions src/client.cpp
Expand Up @@ -82,7 +82,6 @@ QueuedMeshUpdate::~QueuedMeshUpdate()

MeshUpdateQueue::MeshUpdateQueue()
{
m_mutex.Init();
}

MeshUpdateQueue::~MeshUpdateQueue()
Expand Down Expand Up @@ -474,7 +473,7 @@ void Client::step(float dtime)

core::list<v3s16> deleted_blocks;

float delete_unused_sectors_timeout =
float delete_unused_sectors_timeout =
g_settings->getFloat("client_delete_unused_sectors_timeout");

// Delete sector blocks
Expand Down Expand Up @@ -1266,7 +1265,7 @@ void Client::ProcessData(u8 *data, u32 datasize, u16 sender_peer_id)
u32 index = 8 + MapNode::serializedLength(ser_version);
if ((datasize >= index+1) && data[index]){
remove_metadata = false;
}
}

addNode(p, n, remove_metadata);
}
Expand Down Expand Up @@ -2126,7 +2125,7 @@ void Client::ProcessData(u8 *data, u32 datasize, u16 sender_peer_id)
m_client_event_queue.push_back(event);
}
else if(command == TOCLIENT_HUDCHANGE)
{
{
std::string sdata;
v2f v2fdata;
u32 intdata = 0;
Expand Down Expand Up @@ -2155,7 +2154,7 @@ void Client::ProcessData(u8 *data, u32 datasize, u16 sender_peer_id)
m_client_event_queue.push_back(event);
}
else if(command == TOCLIENT_HUD_SET_FLAGS)
{
{
std::string datastring((char *)&data[2], datasize - 2);
std::istringstream is(datastring, std::ios_base::binary);

Expand Down Expand Up @@ -2264,7 +2263,7 @@ void Client::sendNodemetaFields(v3s16 p, const std::string &formname,
Send(0, data, true);
}

void Client::sendInventoryFields(const std::string &formname,
void Client::sendInventoryFields(const std::string &formname,
const std::map<std::string, std::string> &fields)
{
std::ostringstream os(std::ios_base::binary);
Expand Down Expand Up @@ -2468,7 +2467,7 @@ void Client::sendPlayerPos()
writeV3S32(&data[2], position);
writeV3S32(&data[2+12], speed);
writeS32(&data[2+12+12], pitch);
writeS32(&data[2+12+12+4], yaw);
writeS32(&data[2+12+12+4], yaw);
writeU32(&data[2+12+12+4+4], keyPressed);
// Send as unreliable
Send(0, data, false);
Expand Down
3 changes: 0 additions & 3 deletions src/clientmap.cpp
Expand Up @@ -50,9 +50,6 @@ ClientMap::ClientMap(
m_camera_direction(0,0,1),
m_camera_fov(M_PI)
{
m_camera_mutex.Init();
assert(m_camera_mutex.IsInitialized());

m_box = core::aabbox3d<f32>(-BS*1000000,-BS*1000000,-BS*1000000,
BS*1000000,BS*1000000,BS*1000000);
}
Expand Down
1 change: 0 additions & 1 deletion src/debug.cpp
Expand Up @@ -206,7 +206,6 @@ JMutex g_debug_stacks_mutex;

void debug_stacks_init()
{
g_debug_stacks_mutex.Init();
}

void debug_stacks_print_to(std::ostream &os)
Expand Down
14 changes: 7 additions & 7 deletions src/emerge.cpp
Expand Up @@ -23,6 +23,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "server.h"
#include <iostream>
#include <queue>
#include "jthread/jevent.h"
#include "map.h"
#include "environment.h"
#include "util/container.h"
Expand Down Expand Up @@ -106,7 +107,6 @@ EmergeManager::EmergeManager(IGameDef *gamedef) {

mapgen_debug_info = g_settings->getBool("enable_mapgen_debug_info");

queuemutex.Init();

int nthreads;
if (g_settings->get("num_emerge_threads").empty()) {
Expand Down Expand Up @@ -385,7 +385,7 @@ void EmergeManager::registerMapgen(std::string mgname, MapgenFactory *mgfactory)
}


////////////////////////////// Emerge Thread //////////////////////////////////
////////////////////////////// Emerge Thread //////////////////////////////////

bool EmergeThread::popBlockEmerge(v3s16 *pos, u8 *flags) {
std::map<v3s16, BlockEmergeData *>::iterator iter;
Expand All @@ -399,7 +399,7 @@ bool EmergeThread::popBlockEmerge(v3s16 *pos, u8 *flags) {
*pos = p;

iter = emerge->blocks_enqueued.find(p);
if (iter == emerge->blocks_enqueued.end())
if (iter == emerge->blocks_enqueued.end())
return false; //uh oh, queue and map out of sync!!

BlockEmergeData *bedata = iter->second;
Expand All @@ -414,11 +414,11 @@ bool EmergeThread::popBlockEmerge(v3s16 *pos, u8 *flags) {
}


bool EmergeThread::getBlockOrStartGen(v3s16 p, MapBlock **b,
bool EmergeThread::getBlockOrStartGen(v3s16 p, MapBlock **b,
BlockMakeData *data, bool allow_gen) {
v2s16 p2d(p.X, p.Z);
//envlock: usually takes <=1ms, sometimes 90ms or ~400ms to acquire
JMutexAutoLock envlock(m_server->m_env_mutex);
JMutexAutoLock envlock(m_server->m_env_mutex);

// Load sector if it isn't loaded
if (map->getSectorNoGenerateNoEx(p2d) == NULL)
Expand Down Expand Up @@ -496,7 +496,7 @@ void *EmergeThread::Thread() {

{
//envlock: usually 0ms, but can take either 30 or 400ms to acquire
JMutexAutoLock envlock(m_server->m_env_mutex);
JMutexAutoLock envlock(m_server->m_env_mutex);
ScopeProfiler sp(g_profiler, "EmergeThread: after "
"Mapgen::makeChunk (envlock)", SPT_AVG);

Expand All @@ -513,7 +513,7 @@ void *EmergeThread::Thread() {

// Ignore map edit events, they will not need to be sent
// to anybody because the block hasn't been sent to anybody
MapEditEventAreaIgnorer
MapEditEventAreaIgnorer
ign(&m_server->m_ignore_map_edit_events_area,
VoxelArea(minp, maxp));
{ // takes about 90ms with -O1 on an e3-1230v2
Expand Down
2 changes: 2 additions & 0 deletions src/jthread/CMakeLists.txt
Expand Up @@ -3,11 +3,13 @@ if( UNIX )
${CMAKE_CURRENT_SOURCE_DIR}/pthread/jmutex.cpp
${CMAKE_CURRENT_SOURCE_DIR}/pthread/jthread.cpp
${CMAKE_CURRENT_SOURCE_DIR}/pthread/jsemaphore.cpp
${CMAKE_CURRENT_SOURCE_DIR}/pthread/jevent.cpp
PARENT_SCOPE)
else( UNIX )
set(JTHREAD_SRCS
${CMAKE_CURRENT_SOURCE_DIR}/win32/jmutex.cpp
${CMAKE_CURRENT_SOURCE_DIR}/win32/jthread.cpp
${CMAKE_CURRENT_SOURCE_DIR}/win32/jsemaphore.cpp
${CMAKE_CURRENT_SOURCE_DIR}/win32/jevent.cpp
PARENT_SCOPE)
endif( UNIX )
52 changes: 52 additions & 0 deletions src/jthread/jevent.h
@@ -0,0 +1,52 @@
/*
This file is a part of the JThread package, which contains some object-
oriented thread wrappers for different thread implementations.
Copyright (c) 2000-2006 Jori Liesenborgs (jori.liesenborgs@gmail.com)
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/

#ifndef JEVENT_H_
#define JEVENT_H_

#ifdef _WIN32
#include <windows.h>
#else
#include <semaphore.h>
#endif


class Event {
#ifdef _WIN32
HANDLE hEvent;
#else
sem_t sem;
#endif

public:
Event();
~Event();
void wait();
void signal();
};

#endif /* JEVENT_H_ */
53 changes: 0 additions & 53 deletions src/jthread/jmutex.h
Expand Up @@ -53,10 +53,8 @@ class JMutex
public:
JMutex();
~JMutex();
int Init();
int Lock();
int Unlock();
bool IsInitialized() { return initialized; }

private:
#if (defined(WIN32) || defined(_WIN32_WCE))
Expand All @@ -76,57 +74,6 @@ class JMutex
return false;
}
#endif // WIN32
bool initialized;
};

#ifdef _WIN32

class Event {
HANDLE hEvent;

public:
Event() {
hEvent = CreateEvent(NULL, 0, 0, NULL);
}

~Event() {
CloseHandle(hEvent);
}

void wait() {
WaitForSingleObject(hEvent, INFINITE);
}

void signal() {
SetEvent(hEvent);
}
};

#else

#include <semaphore.h>

class Event {
sem_t sem;

public:
Event() {
sem_init(&sem, 0, 0);
}

~Event() {
sem_destroy(&sem);
}

void wait() {
sem_wait(&sem);
}

void signal() {
sem_post(&sem);
}
};

#endif

#endif // JMUTEX_H
1 change: 0 additions & 1 deletion src/jthread/jthread.h
Expand Up @@ -74,7 +74,6 @@ class JThread

JMutex runningmutex;
JMutex continuemutex,continuemutex2;
bool mutexinit;
};

#endif // JTHREAD_H
Expand Down
44 changes: 44 additions & 0 deletions src/jthread/pthread/jevent.cpp
@@ -0,0 +1,44 @@
/*
This file is a part of the JThread package, which contains some object-
oriented thread wrappers for different thread implementations.
Copyright (c) 2000-2006 Jori Liesenborgs (jori.liesenborgs@gmail.com)
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/
#include <assert.h>
#include "jthread/jevent.h"

Event::Event() {
assert(sem_init(&sem, 0, 0) == 0);
}

Event::~Event() {
assert(sem_destroy(&sem) == 0);
}

void Event::wait() {
assert(sem_wait(&sem) == 0);
}

void Event::signal() {
assert(sem_post(&sem) == 0);
}
23 changes: 5 additions & 18 deletions src/jthread/pthread/jmutex.cpp
Expand Up @@ -24,40 +24,27 @@
DEALINGS IN THE SOFTWARE.
*/

#include <assert.h>
#include "jthread/jmutex.h"

JMutex::JMutex()
{
pthread_mutex_init(&mutex,NULL);
initialized = true;
assert(pthread_mutex_init(&mutex,NULL) == 0);
}

JMutex::~JMutex()
{
if (initialized)
pthread_mutex_destroy(&mutex);
}

int JMutex::Init()
{
return 0;
assert(pthread_mutex_destroy(&mutex) == 0);
}

int JMutex::Lock()
{
if (!initialized)
return ERR_JMUTEX_NOTINIT;

pthread_mutex_lock(&mutex);
assert(pthread_mutex_lock(&mutex) == 0);
return 0;
}

int JMutex::Unlock()
{
if (!initialized)
return ERR_JMUTEX_NOTINIT;

pthread_mutex_unlock(&mutex);
assert(pthread_mutex_unlock(&mutex) == 0);
return 0;
}

0 comments on commit 04e9a9d

Please sign in to comment.