1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
/* GATE PROJECT LICENSE:
+----------------------------------------------------------------------------+
| Copyright(c) 2018-2025, Stefan Meislinger <sm@opengate.at>                 |
| All rights reserved.                                                       |
|                                                                            |
| Redistribution and use in source and binary forms, with or without         |
| modification, are permitted provided that the following conditions are met:|
|                                                                            |
| 1. Redistributions of source code must retain the above copyright notice,  |
|    this list of conditions and the following disclaimer.                   |
| 2. Redistributions in binary form must reproduce the above copyright       |
|    notice, this list of conditions and the following disclaimer in the     |
|    documentation and/or other materials provided with the distribution.    |
|                                                                            |
| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"|
| AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE  |
| IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| ARE DISCLAIMED.IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE    |
| LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR        |
| CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF       |
| SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS   |
| INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN    |
| CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)    |
| ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF     |
| THE POSSIBILITY OF SUCH DAMAGE.                                            |
+----------------------------------------------------------------------------+
*/
#include "gate/platforms.h"

#if defined(GATE_SYS_BEOS)

#include <kernel/OS.h>
#include "gate/results.h"


static sem_id global_platform_lock_sem;

gate_result_t gate_platform_init(void)
{
    gate_result_t ret = GATE_RESULT_OK;
    global_platform_lock_sem = create_sem(1, "gate_platform_lock");
    /* TODO */
    return ret;
}

void gate_platform_exit(int exit_code)
{
    /* TODO */
    kill_team(0);
}

void gate_platform_atexit(void(*func)(void))
{
    /* TODO */
}

gate_result_t gate_platform_lock()
{
    status_t status;
    while (B_INTERRUPTED == (status = acquire_sem(global_platform_lock_sem)))
    {
    }
    return (status == B_NO_ERROR) ? GATE_RESULT_OK : GATE_RESULT_FAILED;
}
gate_result_t gate_platform_unlock()
{
    status_t status = release_sem(global_platform_lock_sem);
    return (status == B_NO_ERROR) ? GATE_RESULT_OK : GATE_RESULT_FAILED;
}

static gate_int32_t global_last_error = 0;
gate_int32_t gate_platform_get_last_error()
{
    /* TODO */
    return global_last_error;
}
gate_result_t gate_platform_set_last_error(gate_int32_t platform_error_code)
{
    /* TODO */
    global_last_error = platform_error_code;
    return GATE_RESULT_OK;
}
gate_result_t gate_platform_print_error(gate_int32_t platform_error_code, char* buffer, gate_size_t buffer_len)
{
    /* TODO */
    return GATE_RESULT_FAILED;
}
gate_result_t gate_platform_print_last_error(char* buffer, gate_size_t buffer_len)
{
    return gate_platform_print_error(gate_platform_get_last_error(), buffer, buffer_len);
}


gate_bool_t gate_platform_stream_valid(gate_platform_stream_t strm)
{
    /* TODO */
    return false;
}
void gate_platform_stream_set_invalid(gate_platform_stream_t* ptr_strm)
{
    *ptr_strm = NULL;
}
gate_result_t gate_platform_stream_open(char const* path, int open_flags, int native_flags, gate_platform_stream_t* strm)
{
    gate_result_t ret = GATE_RESULT_FAILED;
    /* TODO */
    return ret;
}
gate_result_t gate_platform_stream_read(gate_platform_stream_t strm, char* buffer, gate_size_t bufferlength, gate_size_t* returned)
{
    gate_result_t ret = GATE_RESULT_FAILED;
    /* TODO */
    return ret;
}
gate_result_t gate_platform_stream_write(gate_platform_stream_t strm, char const* buffer, gate_size_t bufferlength, gate_size_t* written)
{
    gate_result_t ret = GATE_RESULT_FAILED;
    /* TODO */
    return ret;
}
gate_result_t gate_platform_stream_seek(gate_platform_stream_t strm, gate_int64_t position, gate_enumint_t origin, gate_int64_t* final_position)
{
    gate_result_t ret = GATE_RESULT_FAILED;
    /* TODO */
    return ret;
}
gate_result_t gate_platform_stream_close(gate_platform_stream_t* strm)
{
    gate_result_t ret = GATE_RESULT_FAILED;
    /* TODO */
    return ret;
}

gate_result_t gate_platform_set_signal_handler(int sig,
    gate_platform_signal_handler_t new_handler,
    gate_platform_signal_handler_t* ptr_old_handler)
{
    gate_result_t ret = GATE_RESULT_FAILED;
    /* TODO */
    return ret;
}

gate_result_t gate_platform_raise_signal(int sig)
{
    gate_result_t ret = GATE_RESULT_FAILED;
    /* TODO */
    return ret;
}

int gate_platform_convert_gate_signal(int gate_platform_signal)
{
    /* TODO */
    return 0;
}

int gate_platform_convert_native_signal(int native_signal)
{
    /* TODO */
    return 0;
}

gate_result_t gate_platform_semaphore_create(gate_platform_semaphore_t* ptr_sem, unsigned int count)
{
    sem_id s;
    if (!ptr_sem || (count == 0))
    {
        return GATE_RESULT_INVALIDARG;
    }

    s = create_sem((uint32)count, "gate_semaphore");
    if (s < B_OK)
    {
        return GATE_RESULT_FAILED;
    }
    *ptr_sem = (gate_platform_semaphore_t)s;
}
gate_result_t gate_platform_semaphore_acquire(gate_platform_semaphore_t* ptr_sem, gate_uint32_t const* ptr_timeout_ms)
{
    sem_id s;
    status_t status;
    if (!ptr_sem)
    {
        return GATE_RESULT_INVALIDARG;
    }

    do
    {
        s = (sem_id)(*ptr_sem);
        if (ptr_timeout_ms)
        {
            status = acquire_sem_etc(s, 1, B_RELATIVE_TIMEOUT, (uint32)(*ptr_timeout_ms));
            if ((status == B_WOULD_BLOCK) && (*ptr_timeout_ms == 0))
            {
                status = B_TIMED_OUT;
            }
        }
        else
        {
            status = acquire_sem(s);
        }
    } while (status == B_INTERRUPTED);
    switch (status)
    {
    case B_NO_ERROR:	return GATE_RESULT_OK;
    case B_TIMED_OUT:	return GATE_RESULT_TIMEOUT;
    default:			break;
    }
    return GATE_RESULT_FAILED;
}
gate_result_t gate_platform_semaphore_release(gate_platform_semaphore_t* ptr_sem)
{
    sem_id s;
    status_t status;
    if (!ptr_sem)
    {
        return GATE_RESULT_INVALIDARG;
    }

    s = (sem_id)(*ptr_sem);
    status = release_sem(s);
    return (status == B_NO_ERROR) ? GATE_RESULT_OK : GATE_RESULT_FAILED;
}
gate_result_t gate_platform_semaphore_destroy(gate_platform_semaphore_t* ptr_sem)
{
    sem_id s = (sem_id)(*ptr_sem);<--- Null pointer dereference
    status_t status;
    if (!ptr_sem)<--- Assuming that condition '!ptr_sem' is not redundant
    {
        return GATE_RESULT_INVALIDARG;
    }
    status = delete_sem(s);
    return (status == B_NO_ERROR) ? GATE_RESULT_OK : GATE_RESULT_FAILED;
}

gate_bool_t gate_platform_yield()
{
    /* TODO */
    return false;
}

#endif	/* GATE_SYS_BEOS */