source: libcfa/src/concurrency/clib/cfathread.cfa @ d0cd933

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since d0cd933 was f03e11d, checked in by Thierry Delisle <tdelisle@…>, 3 years ago

Removed cfathread_suspendFD/cfathread_resumeFD which is not needed and was not supported

  • Property mode set to 100644
File size: 7.1 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// clib/cfathread.cfa --
8//
9// Author           : Thierry Delisle
10// Created On       : Tue Sep 22 15:31:20 2020
11// Last Modified By :
12// Last Modified On :
13// Update Count     :
14//
15
16#include "fstream.hfa"
17#include "locks.hfa"
18#include "kernel.hfa"
19#include "thread.hfa"
20#include "time.hfa"
21
22#include "cfathread.h"
23
24struct cfathread_object {
25        $thread self;
26        void * (*themain)( void * );
27        void * arg;
28        void * ret;
29};
30void main(cfathread_object & this);
31void ^?{}(cfathread_object & mutex this);
32
33static inline $thread * get_thread( cfathread_object & this ) { return &this.self; }
34
35typedef ThreadCancelled(cfathread_object) cfathread_exception;
36typedef ThreadCancelled_vtable(cfathread_object) cfathread_vtable;
37
38void defaultResumptionHandler(ThreadCancelled(cfathread_object) & except) {
39        abort | "A thread was cancelled";
40}
41
42cfathread_vtable _cfathread_vtable_instance;
43
44cfathread_vtable const & get_exception_vtable(cfathread_exception *) {
45        return _cfathread_vtable_instance;
46}
47
48static void ?{}( cfathread_object & this, cluster & cl, void *(*themain)( void * ), void * arg ) {
49        this.themain = themain;
50        this.arg = arg;
51        ((thread&)this){"C-thread", cl};
52        __thrd_start(this, main);
53}
54
55void ^?{}(cfathread_object & mutex this) {
56        ^(this.self){};
57}
58
59void main( cfathread_object & this ) {
60        __attribute__((unused)) void * const thrd_obj = (void*)&this;
61        __attribute__((unused)) void * const thrd_hdl = (void*)active_thread();
62        /* paranoid */ verify( thrd_obj == thrd_hdl );
63
64        this.ret = this.themain( this.arg );
65}
66
67processor * procs = 0p;
68int proc_cnt = 1;
69
70extern "C" {
71        int cfathread_cluster_create(cfathread_cluster_t * cl) __attribute__((nonnull(1))) {
72                *cl = new();
73                return 0;
74        }
75
76        cfathread_cluster_t cfathread_cluster_self(void) {
77                return active_cluster();
78        }
79
80        int cfathread_cluster_add_worker(cfathread_cluster_t cl, pthread_t* tid, void (*init_routine) (void *), void * arg) {
81                // processor * proc = new("C-processor", *cl, init_routine, arg);
82                processor * proc = alloc();
83                (*proc){ "C-processor", *cl, init_routine, arg };
84                if(tid) *tid = proc->kernel_thread;
85                return 0;
86        }
87
88        int cfathread_cluster_pause (cfathread_cluster_t) {
89                abort | "Pausing clusters is not supported";
90                exit(1);
91        }
92
93        int cfathread_cluster_resume(cfathread_cluster_t) {
94                abort | "Resuming clusters is not supported";
95                exit(1);
96        }
97
98        //--------------------
99        // Thread attributes
100        int cfathread_attr_init(cfathread_attr_t *attr) __attribute__((nonnull (1))) {
101                attr->cl = active_cluster();
102                return 0;
103        }
104
105        //--------------------
106        // Thread
107        int cfathread_create( cfathread_t * handle, const cfathread_attr_t * attr, void *(*main)( void * ), void * arg ) __attribute__((nonnull (1))) {
108                cluster * cl = attr ? attr->cl : active_cluster();
109                cfathread_t thrd = alloc();
110                (*thrd){ *cl, main, arg };
111                *handle = thrd;
112                return 0;
113        }
114
115        int cfathread_join( cfathread_t thrd, void ** retval ) {
116                void * ret = join( *thrd ).ret;
117                ^( *thrd ){};
118                free(thrd);
119                if(retval) {
120                        *retval = ret;
121                }
122                return 0;
123        }
124
125        int cfathread_get_errno(void) {
126                return errno;
127        }
128
129        cfathread_t cfathread_self(void) {
130                return (cfathread_t)active_thread();
131        }
132
133        int cfathread_usleep(useconds_t usecs) {
134                sleep(usecs`us);
135                return 0;
136        }
137
138        int cfathread_sleep(unsigned int secs) {
139                sleep(secs`s);
140                return 0;
141        }
142
143        void cfathread_park( void ) {
144                park();
145        }
146
147        void cfathread_unpark( cfathread_t thrd ) {
148                unpark( *thrd );
149        }
150
151        void cfathread_yield( void ) {
152                yield();
153        }
154
155        typedef struct cfathread_mutex * cfathread_mutex_t;
156
157        //--------------------
158        // Mutex
159        struct cfathread_mutex {
160                single_acquisition_lock impl;
161        };
162        int cfathread_mutex_init(cfathread_mutex_t *restrict mut, const cfathread_mutexattr_t *restrict) __attribute__((nonnull (1))) { *mut = new(); return 0; }
163        int cfathread_mutex_destroy(cfathread_mutex_t *mut) __attribute__((nonnull (1))) { delete( *mut ); return 0; }
164        int cfathread_mutex_lock   (cfathread_mutex_t *mut) __attribute__((nonnull (1))) { lock    ( (*mut)->impl ); return 0; }
165        int cfathread_mutex_trylock(cfathread_mutex_t *mut) __attribute__((nonnull (1))) { try_lock( (*mut)->impl ); return 0; }
166        int cfathread_mutex_unlock (cfathread_mutex_t *mut) __attribute__((nonnull (1))) { unlock  ( (*mut)->impl ); return 0; }
167
168        //--------------------
169        // Condition
170        struct cfathread_condition {
171                condition_variable(single_acquisition_lock) impl;
172        };
173        int cfathread_cond_init(cfathread_cond_t *restrict cond, const cfathread_condattr_t *restrict) __attribute__((nonnull (1))) { *cond = new(); return 0; }
174        int cfathread_cond_signal(cfathread_cond_t *cond) __attribute__((nonnull (1)))  { notify_one( (*cond)->impl ); return 0; }
175        int cfathread_cond_wait(cfathread_cond_t *restrict cond, cfathread_mutex_t *restrict mut) __attribute__((nonnull (1,2))) { wait( (*cond)->impl, (*mut)->impl ); return 0; }
176        int cfathread_cond_timedwait(cfathread_cond_t *restrict cond, cfathread_mutex_t *restrict mut, const struct timespec *restrict abstime) __attribute__((nonnull (1,2,3))) {
177                Time t = { *abstime };
178                if( wait( (*cond)->impl, (*mut)->impl, t ) ) {
179                        return 0;
180                }
181                errno = ETIMEDOUT;
182                return ETIMEDOUT;
183        }
184}
185
186#include <iofwd.hfa>
187
188extern "C" {
189        #include <unistd.h>
190        #include <sys/types.h>
191        #include <sys/socket.h>
192
193        //--------------------
194        // IO operations
195        int cfathread_socket(int domain, int type, int protocol) {
196                return socket(domain, type, protocol);
197        }
198        int cfathread_bind(int socket, const struct sockaddr *address, socklen_t address_len) {
199                return bind(socket, address, address_len);
200        }
201
202        int cfathread_listen(int socket, int backlog) {
203                return listen(socket, backlog);
204        }
205
206        int cfathread_accept(int socket, struct sockaddr *restrict address, socklen_t *restrict address_len) {
207                return cfa_accept4(socket, address, address_len, 0, CFA_IO_LAZY);
208        }
209
210        int cfathread_connect(int socket, const struct sockaddr *address, socklen_t address_len) {
211                return cfa_connect(socket, address, address_len, CFA_IO_LAZY);
212        }
213
214        int cfathread_dup(int fildes) {
215                return dup(fildes);
216        }
217
218        int cfathread_close(int fildes) {
219                return cfa_close(fildes, CFA_IO_LAZY);
220        }
221
222        ssize_t cfathread_sendmsg(int socket, const struct msghdr *message, int flags) {
223                return cfa_sendmsg(socket, message, flags, CFA_IO_LAZY);
224        }
225
226        ssize_t cfathread_write(int fildes, const void *buf, size_t nbyte) {
227                return cfa_write(fildes, buf, nbyte, CFA_IO_LAZY);
228        }
229
230        ssize_t cfathread_recvfrom(int socket, void *restrict buffer, size_t length, int flags, struct sockaddr *restrict address, socklen_t *restrict address_len)  {
231                struct iovec iov;
232                iov.iov_base = buffer;
233                iov.iov_len = length;
234
235                struct msghdr msg;
236                msg.msg_name = address;
237                msg.msg_namelen = address_len ? (socklen_t)*address_len : (socklen_t)0;
238                msg.msg_iov = &iov;
239                msg.msg_iovlen = 1;
240                msg.msg_control = 0p;
241                msg.msg_controllen = 0;
242
243                ssize_t ret = cfa_recvmsg(socket, &msg, flags, CFA_IO_LAZY);
244
245                if(address_len) *address_len = msg.msg_namelen;
246                return ret;
247        }
248
249        ssize_t cfathread_read(int fildes, void *buf, size_t nbyte) {
250                return cfa_read(fildes, buf, nbyte, CFA_IO_LAZY);
251        }
252
253}
Note: See TracBrowser for help on using the repository browser.