Fix bug for invalid access variable.
[platform/upstream/iotivity.git] / service / notification / src / consumer / NSThread.c
1 //******************************************************************
2 //
3 // Copyright 2016 Samsung Electronics All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 #include "NSThread.h"
22
23 #include "NSConstants.h"
24 #include "NSConsumerCommon.h"
25
26 #include <memory.h>
27 #include "oic_malloc.h"
28
29 static pthread_mutex_t g_create_mutex;
30
31 NSConsumerThread * NSThreadInit(NSThreadFunc func, void * data)
32 {
33     NS_VERIFY_NOT_NULL(func, NULL);
34
35     pthread_mutex_init(&g_create_mutex, NULL);
36
37     NSConsumerThread * handle = (NSConsumerThread *)OICMalloc(sizeof(NSConsumerThread));
38     NS_VERIFY_NOT_NULL(handle, NULL);
39
40     memset(handle, 0, sizeof(NSConsumerThread));
41
42     pthread_mutexattr_init(&(handle->mutex_attr));
43
44     int pthreadResult = pthread_mutexattr_settype(&(handle->mutex_attr), PTHREAD_MUTEX_RECURSIVE);
45     NS_VERIFY_NOT_NULL_WITH_POST_CLEANING(pthreadResult == 0 ? (void *)1 : NULL,
46             NULL, NSDestroyThreadHandle(handle));
47
48     pthreadResult = pthread_mutex_init(&(handle->mutex), &(handle->mutex_attr));
49     NS_VERIFY_NOT_NULL_WITH_POST_CLEANING(pthreadResult == 0 ? (void *)1 : NULL,
50             NULL, NSDestroyThreadHandle(handle));
51
52     pthread_mutex_lock(&g_create_mutex);
53
54     handle->isStarted = true;
55
56     pthreadResult = pthread_create(&(handle->thread_id), NULL, func,
57                            (data == NULL) ? (void *) handle : (void *)data);
58     NS_VERIFY_NOT_NULL_WITH_POST_CLEANING(pthreadResult == 0 ? (void *)1 : NULL,
59             NULL, NSDestroyThreadHandle(handle));
60
61     pthread_mutex_unlock(&g_create_mutex);
62
63     return handle;
64 }
65
66 void NSThreadLock(NSConsumerThread * handle)
67 {
68     NS_VERIFY_NOT_NULL_V(handle);
69
70     pthread_mutex_lock(&(handle->mutex));
71 }
72
73 void NSThreadUnlock(NSConsumerThread * handle)
74 {
75     NS_VERIFY_NOT_NULL_V(handle);
76
77     pthread_mutex_unlock(&(handle->mutex));
78 }
79
80 void NSThreadStop(NSConsumerThread * handle)
81 {
82     NS_VERIFY_NOT_NULL_V(handle);
83
84     handle->isStarted = false;
85     NSThreadJoin(handle);
86
87     NSDestroyThreadHandle(handle);
88 }
89
90 void NSThreadJoin(NSConsumerThread * handle)
91 {
92     NS_VERIFY_NOT_NULL_V(handle);
93
94     if (handle->thread_id)
95     {
96         pthread_join(handle->thread_id, NULL);
97     }
98 }
99
100 void NSDestroyThreadHandle(NSConsumerThread * handle)
101 {
102     NS_VERIFY_NOT_NULL_V(handle);
103
104     pthread_mutex_destroy(&(handle->mutex));
105     pthread_mutexattr_destroy(&(handle->mutex_attr));
106
107     NSOICFree(handle);
108
109     pthread_mutex_unlock(&g_create_mutex);
110 }
111
112 void NSThreadDetach()
113 {
114     pthread_detach(pthread_self());
115 }