Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
tests/blocking/file/FileReadTest.cpp@25:c8ca04ebbb96, 2014-11-27 (annotated)
- Committer:
- dan_ackme
- Date:
- Thu Nov 27 10:26:58 2014 +0000
- Revision:
- 25:c8ca04ebbb96
- Parent:
- 15:a835e28308b6
updated for latest wiconnect
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| dan_ackme | 12:3dd3a1be40c1 | 1 | /** |
| dan_ackme | 12:3dd3a1be40c1 | 2 | * ACKme WiConnect Host Library is licensed under the BSD licence: |
| dan_ackme | 12:3dd3a1be40c1 | 3 | * |
| dan_ackme | 12:3dd3a1be40c1 | 4 | * Copyright (c)2014 ACKme Networks. |
| dan_ackme | 12:3dd3a1be40c1 | 5 | * All rights reserved. |
| dan_ackme | 12:3dd3a1be40c1 | 6 | * |
| dan_ackme | 12:3dd3a1be40c1 | 7 | * Redistribution and use in source and binary forms, with or without modification, |
| dan_ackme | 12:3dd3a1be40c1 | 8 | * are permitted provided that the following conditions are met: |
| dan_ackme | 12:3dd3a1be40c1 | 9 | * |
| dan_ackme | 12:3dd3a1be40c1 | 10 | * 1. Redistributions of source code must retain the above copyright notice, |
| dan_ackme | 12:3dd3a1be40c1 | 11 | * this list of conditions and the following disclaimer. |
| dan_ackme | 12:3dd3a1be40c1 | 12 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
| dan_ackme | 12:3dd3a1be40c1 | 13 | * this list of conditions and the following disclaimer in the documentation |
| dan_ackme | 12:3dd3a1be40c1 | 14 | * and/or other materials provided with the distribution. |
| dan_ackme | 12:3dd3a1be40c1 | 15 | * 3. The name of the author may not be used to endorse or promote products |
| dan_ackme | 12:3dd3a1be40c1 | 16 | * derived from this software without specific prior written permission. |
| dan_ackme | 12:3dd3a1be40c1 | 17 | * |
| dan_ackme | 12:3dd3a1be40c1 | 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS AND ANY EXPRESS OR IMPLIED |
| dan_ackme | 12:3dd3a1be40c1 | 19 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| dan_ackme | 12:3dd3a1be40c1 | 20 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT |
| dan_ackme | 12:3dd3a1be40c1 | 21 | * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| dan_ackme | 12:3dd3a1be40c1 | 22 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT |
| dan_ackme | 12:3dd3a1be40c1 | 23 | * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| dan_ackme | 12:3dd3a1be40c1 | 24 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| dan_ackme | 12:3dd3a1be40c1 | 25 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING |
| dan_ackme | 12:3dd3a1be40c1 | 26 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY |
| dan_ackme | 12:3dd3a1be40c1 | 27 | * OF SUCH DAMAGE. |
| dan_ackme | 0:836c9a6383e0 | 28 | */ |
| dan_ackme | 0:836c9a6383e0 | 29 | |
| dan_ackme | 0:836c9a6383e0 | 30 | |
| dan_ackme | 0:836c9a6383e0 | 31 | #include "tests/Tests.h" |
| dan_ackme | 0:836c9a6383e0 | 32 | #include "Wiconnect.h" |
| dan_ackme | 0:836c9a6383e0 | 33 | |
| dan_ackme | 0:836c9a6383e0 | 34 | |
| dan_ackme | 15:a835e28308b6 | 35 | static WiconnectResult readFile(WiconnectFile &file); |
| dan_ackme | 0:836c9a6383e0 | 36 | |
| dan_ackme | 0:836c9a6383e0 | 37 | |
| dan_ackme | 0:836c9a6383e0 | 38 | |
| dan_ackme | 0:836c9a6383e0 | 39 | /*************************************************************************************************/ |
| dan_ackme | 0:836c9a6383e0 | 40 | WiconnectResult fileReadCommand(int argc, char **argv) |
| dan_ackme | 0:836c9a6383e0 | 41 | { |
| dan_ackme | 0:836c9a6383e0 | 42 | WiconnectResult result; |
| dan_ackme | 15:a835e28308b6 | 43 | WiconnectFile file(TEST_BUFFER_LENGTH, TEST_BUFFER); |
| dan_ackme | 0:836c9a6383e0 | 44 | Wiconnect *wiconnect = Wiconnect::getInstance(); |
| dan_ackme | 0:836c9a6383e0 | 45 | |
| dan_ackme | 0:836c9a6383e0 | 46 | if(argc != 1) |
| dan_ackme | 0:836c9a6383e0 | 47 | { |
| dan_ackme | 0:836c9a6383e0 | 48 | LOG_ERROR("must specify file name to read"); |
| dan_ackme | 0:836c9a6383e0 | 49 | return WICONNECT_BAD_ARG; |
| dan_ackme | 0:836c9a6383e0 | 50 | } |
| dan_ackme | 0:836c9a6383e0 | 51 | |
| dan_ackme | 0:836c9a6383e0 | 52 | |
| dan_ackme | 0:836c9a6383e0 | 53 | if(!WICONNECT_FAILED(result, wiconnect->openFile(file, argv[0]))) |
| dan_ackme | 0:836c9a6383e0 | 54 | { |
| dan_ackme | 0:836c9a6383e0 | 55 | readFile(file); |
| dan_ackme | 0:836c9a6383e0 | 56 | } |
| dan_ackme | 0:836c9a6383e0 | 57 | |
| dan_ackme | 0:836c9a6383e0 | 58 | return result; |
| dan_ackme | 0:836c9a6383e0 | 59 | } |
| dan_ackme | 0:836c9a6383e0 | 60 | |
| dan_ackme | 0:836c9a6383e0 | 61 | /*************************************************************************************************/ |
| dan_ackme | 15:a835e28308b6 | 62 | static WiconnectResult readFile(WiconnectFile &file) |
| dan_ackme | 0:836c9a6383e0 | 63 | { |
| dan_ackme | 0:836c9a6383e0 | 64 | uint8_t *ptr; |
| dan_ackme | 0:836c9a6383e0 | 65 | uint16_t size; |
| dan_ackme | 0:836c9a6383e0 | 66 | |
| dan_ackme | 0:836c9a6383e0 | 67 | while(file.read(&ptr, &size) == WICONNECT_SUCCESS) |
| dan_ackme | 0:836c9a6383e0 | 68 | { |
| dan_ackme | 0:836c9a6383e0 | 69 | LOG_INFO("File data: (%d)\r\n", size); |
| dan_ackme | 0:836c9a6383e0 | 70 | logWrite(ptr, size); |
| dan_ackme | 0:836c9a6383e0 | 71 | } |
| dan_ackme | 0:836c9a6383e0 | 72 | |
| dan_ackme | 0:836c9a6383e0 | 73 | return WICONNECT_SUCCESS; |
| dan_ackme | 0:836c9a6383e0 | 74 | } |