Commit Graph

149 Commits

Author SHA1 Message Date
edbea382bd Utils
- Added a FIXME
2023-09-26 14:41:06 +02:00
e01081c59a Utils
- Documented method
2023-09-25 22:19:44 +02:00
a8e9debbb3 Utils
- Documented method
2023-09-25 22:18:51 +02:00
9fb143dfc9 Utils
- Added a unittest for `findNextFree!(T)(T[] values)`
2023-09-25 22:18:07 +02:00
1986202309 Utils
- Added a unittest for `isPresent!(T)(T[] values, T value)`
2023-09-25 22:16:38 +02:00
1408a5c202 CoapClient
- Tested
2023-09-25 22:11:20 +02:00
c2b5b64cda CoapClient
- Start the stopwatch
2023-09-25 22:02:50 +02:00
aadd9c320f CoapClient
- Set time to 10 milliseconds (for now)
2023-09-25 22:02:21 +02:00
3bb0b17353 CoapClient
- Switched to using `newMid2()` in `doRequest(CoapRequestBuilder)`
2023-09-25 21:57:16 +02:00
dd9f5c994f CoapClient
- Fixed bug whereby we didn't register the new found message id
2023-09-25 21:55:51 +02:00
f56210732b CoapClient
- Documented
- `newMid2()` now uses `findNextFree()`
2023-09-25 21:54:07 +02:00
5cd4cc9a2d Utils
- Added `fineNextFree`() and `isPresent()`
2023-09-25 21:53:57 +02:00
b160ce9e00 Merge branch 'master' into feature/exchange_lifetime 2023-09-25 21:43:48 +02:00
288b8eed92 - Moved utils module 2023-09-25 21:42:12 +02:00
41ef2a39cf CoapClient
- Added `EXCHANGE_LIFETIME` and made it very high for starters
2023-09-25 21:41:32 +02:00
ae97035035 CoapClient
- Made `newMid()` private and final
- Added documentation for `newMid()`
2023-09-25 21:19:56 +02:00
b985ad04d9
Merge pull request #7 from deavmi/bugfix/match_with_mid
Match on message ID
2023-09-25 20:13:54 +02:00
9578ad029f CoapClient (unit tests)
- Added a test for the message IDs
2023-09-25 20:12:41 +02:00
6c20adfe11 CoapRequest
- Added `getMid()`
2023-09-25 20:06:37 +02:00
1bc4664e33 UDPMessaging
- `handlePacket(CoapPacket)` now calls `yankRequest()` with the received and decoded `CoapPacket`
2023-09-25 20:05:20 +02:00
8dad7795ad CoapClient
- `yankRequest(ubyte[])` updated to now be `yankRequestCoapPacket)`
2023-09-25 20:04:48 +02:00
5b67894b32 CoapClient
- Made the `rollingMid` a `ushort` and fixed the `newMid()` method to return that
2023-09-25 20:00:54 +02:00
23260860f5 CoapClient
- `doRequest(CoapRequestBuilder)` now sets the message id to the result from `newMid()`
2023-09-25 20:00:11 +02:00
d6eefb3a9b CoapClient
- Implemented `newMid()`  to provide a unique new mid
2023-09-25 19:43:23 +02:00
4c788b91c3 CoapClient
- Added rolling counter and a lock for it
- Count starts at 0
2023-09-25 19:41:29 +02:00
1136e384f8 CoapRequest
- Added missing documentation
2023-09-25 17:51:13 +02:00
f2f1f8fece
Merge pull request #6 from deavmi/bugfix/yanked_free
Remove request when matched by messaging layer
2023-09-25 17:23:48 +02:00
3b7be4073f CoapClient
- Cleaned up
2023-09-25 17:22:52 +02:00
95673cf21f CoapClient
- `yankRequest(ubyte[] token)` now will also remove the matched `CoapRequest` from the `outgoingRequests` queue
- Fixes #6
2023-09-25 17:15:40 +02:00
ce5418a9bd CoapClient
- Added a TODO
2023-09-25 17:11:00 +02:00
c438c6c78c - Refactored packaging
- Removed now-completed TODO
2023-09-25 15:18:57 +02:00
42471e21d1
Update README.md 2023-09-25 14:52:50 +02:00
4af4c00dc1
Merge pull request #4 from deavmi/feature/timeoutable_gets
Timeout-able get()'s
2023-09-25 14:51:14 +02:00
1d4cce19ca CoapClient (unit test)
- Re-enabled previously disabled normal non-timeout-based test
2023-09-25 14:49:56 +02:00
ecd85e195e CoapRequestFuture
- Fixed documentation
2023-09-25 14:48:48 +02:00
7e475579df CoapRequestFuture
- `getDUration)` does not set the completed state for us, receiveWake(), does
- Check why we woke up and handle accordingly
2023-09-25 14:48:07 +02:00
45ef86fff9 CoapClient (unit tests)
- Added a high-enough test to make sure we complete a timeout-based test
2023-09-25 14:45:35 +02:00
0bbabfdb74 CoapClient (unit test)
- Removed `writeln()`'s
2023-09-25 14:43:15 +02:00
e64cf824e6 CoapRequestFuture
- Ensure that we set the request's state to `RequestState.COMPLETED` when `get(Duration)` completes successfully
2023-09-25 14:42:37 +02:00
deaebdaaed CoapClient
- Removed `writeln`'s

CoapCLient (unittest)

- Test the state of the `CoapFutureRequest` when it times out
2023-09-25 14:41:55 +02:00
19722746f4 CoapRequestFuture
- When the `wait(Duration)` returns `false` (i.e. times out) then also set the state to `RequestState.TIMEDOUT`
2023-09-25 14:39:20 +02:00
9b779b4c9b RequestState
- Added new enum member `TIMEDOUT` for when the future times out
2023-09-25 14:38:36 +02:00
237cde4169 CoapRequestFuture
- Removed now-completed TODO
2023-09-25 14:37:38 +02:00
f58f3cdb5c CoapClient
- Disabled normal `get()`-based tests for now (whilst I test the timeout-based ones)
- Added unit test to test timeout-based `get(Duration)`

CoapRequestFuture

- Added documentation for `get(Duration)`
- Fixed bug whereby the `Mutex` was NOT unlock after a failed `wait(Duration)` (a timedout one)
2023-09-25 14:36:38 +02:00
89cc55f266 Merge branch 'master' into feature/timeoutable_gets 2023-09-25 14:17:11 +02:00
33648d5e44 Package (server)
- Added module stub

Package (general)

- Documented
- Added `doap.server` import
2023-09-25 14:16:54 +02:00
4d13968a2f RequestTimeoutException
- Added doc

Package (client)

- Publically import the required exceptions
2023-09-25 14:14:32 +02:00
b240250611 RequestTimeoutException
- Added method `getFuture()` and `getTimeout()`
2023-09-25 14:13:01 +02:00
f78993ad22 RequestTimeoutException
- Made publically accessible
- Made constructor package-level accessible
2023-09-25 14:08:37 +02:00
82ba08b472 CoapClientExcpeiton
- Added new base class for any client-based errors

RequestTimeoutException

- Added new exception type
2023-09-25 14:08:00 +02:00