adafruit-circuitpython-ble-file-transfer


Nameadafruit-circuitpython-ble-file-transfer JSON
Version 4.0.7 PyPI version JSON
download
home_page
SummarySimple BLE Service for reading and writing files over BLE
upload_time2023-12-09 17:43:07
maintainer
docs_urlNone
author
requires_python
licenseMIT
keywords adafruit blinka circuitpython micropython ble_file_transfer ble file transfer
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Introduction
============


.. image:: https://readthedocs.org/projects/adafruit-circuitpython-ble_file_transfer/badge/?version=latest
    :target: https://docs.circuitpython.org/projects/ble_file_transfer/en/latest/
    :alt: Documentation Status


.. image:: https://github.com/adafruit/Adafruit_CircuitPython_Bundle/blob/main/badges/adafruit_discord.svg
    :target: https://adafru.it/discord
    :alt: Discord


.. image:: https://github.com/adafruit/Adafruit_CircuitPython_BLE_File_Transfer/workflows/Build%20CI/badge.svg
    :target: https://github.com/adafruit/Adafruit_CircuitPython_BLE_File_Transfer/actions
    :alt: Build Status


.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black
    :alt: Code Style: Black

Simple BLE Service for reading and writing files over BLE. This BLE service is geared towards file
transfer to and from a device running the service. A core part of the protocol is free space
responses so that the server can be a memory limited device. The free space responses allow for
small buffer sizes that won't be overwhelmed by the client.


Dependencies
=============
This driver depends on:

* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_

Please ensure all dependencies are available on the CircuitPython filesystem.
This is easily achieved by downloading
`the Adafruit library and driver bundle <https://circuitpython.org/libraries>`_
or individual libraries can be installed using
`circup <https://github.com/adafruit/circup>`_.


Installing from PyPI
=====================

On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
PyPI <https://pypi.org/project/adafruit-circuitpython-ble_file_transfer/>`_.
To install for current user:

.. code-block:: shell

    pip3 install adafruit-circuitpython-ble-file-transfer

To install system-wide (this may be required in some cases):

.. code-block:: shell

    sudo pip3 install adafruit-circuitpython-ble-file-transfer

To install in a virtual environment in your current project:

.. code-block:: shell

    mkdir project-name && cd project-name
    python3 -m venv .venv
    source .venv/bin/activate
    pip3 install adafruit-circuitpython-ble-file-transfer



Usage Examples
==============

See `examples/ble_file_transfer_simpletest.py <examples/ble_file_transfer_simpletest.py>`_ for a client example. A stub server implementation is in `examples/ble_file_transfer_stub_server.py <examples/ble_file_transfer_stub_server.py>`_.

Protocol
=========

The file transfer protocol is meant to be simple and easy to implement. It uses free space counts as a way to rate limit file content data transfer. All multi-byte numbers are encoded with the least significant byte first ("<" in CPython's struct module).

GATT Service
--------------

The UUID of the service is ``0xfebb``, Adafruit's 16-bit service UUID.

The base UUID used in characteristics is ``ADAFxxxx-4669-6C65-5472-616E73666572``. The 16-bit numbers below are substituted into the ``xxxx`` portion.

The service has two characteristics:

* version (``0x0100``) - Simple unsigned 32-bit integer version number. May be 1 - 4.
* raw transfer (``0x0200``) - Bidirectional link with a custom protocol. The client does WRITE_NO_RESPONSE to the characteristic and then server replies via NOTIFY. (This is similar to the Nordic UART Service but on a single characteristic rather than two.) The commands over the transfer characteristic are idempotent and stateless. A disconnect during a command will reset the state.

Time resolution
---------------

Time resolution varies based filesystem type. FATFS can only get down to the 2 second bound after 1980. Littlefs can do 64-bit nanoseconds after January 1st, 1970.

To account for this, the protocol has time in 64-bit nanoseconds after January 1st, 1970. However, the server will respond with a potentially truncated version that is the value stored.

Also note that devices serving the file transfer protocol may not have it's own clock so do not rely on time ordering. Any internal writes may set the time incorrectly. So, we only recommend using the value as a cache key.

Commands
---------

Commands always start with a fixed header. The first entry is always the command number itself encoded in a single byte. The number of subsequent entries in the header will vary by command. The entire header must be sent as a unit so set the characteristic with the full header packet. You can combine multiple commands into a single write as long as the complete header is in the packet.

Paths use ``/`` as a separator and full paths must start with ``/``.

All numbers are unsigned.

All values are aligned with respect to the start of the packet.

Status bytes are ``0x01`` for OK and ``0x02`` for error. Values other than ``0x01`` are errors. ``0x00`` should not be used for a specific error but still considered an error. ``0x05`` is an error for trying to modify a read-only filesystem.

``0x10`` - Read a file
++++++++++++++++++++++

Given a full path, returns the full contents of the file.

The header is four fixed entries and a variable length path:

* Command: Single byte. Always ``0x10``.
* 1 Byte reserved for padding.
* Path length: 16-bit number encoding the encoded length of the path string.
* Chunk offset: 32-bit number encoding the offset into the file to start the first chunk.
* Chunk size: 32-bit number encoding the amount of data that the client can handle in the first reply.
* Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.)

The server will respond with:

* Command: Single byte. Always ``0x11``.
* Status: Single byte.
* 2 Bytes reserved for padding.
* Chunk offset: 32-bit number encoding the offset into the file of this chunk.
* Total length: 32-bit number encoding the total file length.
* Chunk length: 32-bit number encoding the length of the read data up to the chunk size provided in the header.
* Chunk-length contents of the file starting from the current position.

If the chunk length is smaller than the total length, then the client will request more data by sending:

* Command: Single byte. Always ``0x12``.
* Status: Single byte. Always OK for now.
* 2 Bytes reserved for padding.
* Chunk offset: 32-bit number encoding the offset into the file to start the next chunk.
* Chunk size: 32-bit number encoding the number of bytes to read. May be different than the original size. Does not need to be limited by the total size.

The transaction is complete after the server has replied with all data. (No acknowledgement needed from the client.)

``0x20`` - Write a file
+++++++++++++++++++++++

Writes the content to the given full path. If the file exists, it will be overwritten. Content may be written as received so an interrupted transfer may lead to a truncated file.

Offset larger than the existing file size will introduce zeros into the gap.

The header is four fixed entries and a variable length path:

* Command: Single byte. Always ``0x20``.
* 1 Byte reserved for padding.
* Path length: 16-bit number encoding the encoded length of the path string.
* Offset: 32-bit number encoding the starting offset to write.
* Current time: 64-bit number encoding nanoseconds since January 1st, 1970. Used as the file modification time. Not all system will support the full resolution. Use the truncated time response value for caching.
* Total size: 32-bit number encoding the total length of the file contents.
* Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.)

The server will repeatedly respond until the total length has been transferred with:

* Command: Single byte. Always ``0x21``.
* Status: Single byte. ``0x01`` if OK. ``0x05`` if the filesystem is read-only. ``0x02`` if any parent directory is missing or a file.
* 2 Bytes reserved for padding.
* Offset: 32-bit number encoding the starting offset to write. (Should match the offset from the previous 0x20 or 0x22 message)
* Truncated time: 64-bit number encoding nanoseconds since January 1st, 1970 as stored by the file system. The resolution may be less that the protocol. It is sent back for use in caching on the host side.
* Free space: 32-bit number encoding the amount of data the client can send.

The client will repeatedly respond until the total length has been transferred with:

* Command: Single byte. Always ``0x22``.
* Status: Single byte. Always ``0x01`` for OK.
* 2 Bytes reserved for padding.
* Offset: 32-bit number encoding the offset to write.
* Data size: 32-bit number encoding the amount of data the client is sending.
* Data

The transaction is complete after the server has received all data and replied with a status with 0 free space and offset set to the content length.

**NOTE**: Current time was added in version 3. The rest of the packets remained the same.


``0x30`` - Delete a file or directory
+++++++++++++++++++++++++++++++++++++

Deletes the file or directory at the given full path. Non-empty directories will have their contents deleted as well.

The header is two fixed entries and a variable length path:

* Command: Single byte. Always ``0x30``.
* 1 Byte reserved for padding.
* Path length: 16-bit number encoding the encoded length of the path string.
* Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.)

The server will reply with:

* Command: Single byte. Always ``0x31``.
* Status: Single byte. ``0x01`` if the file or directory was deleted, ``0x05`` if the filesystem is read-only or ``0x02`` if the path is non-existent.

**NOTE**: In version 2, this command now deletes contents of a directory as well. It won't error.

``0x40`` - Make a directory
+++++++++++++++++++++++++++

Creates a new directory at the given full path. If a parent directory does not exist, then it will also be created. If any name conflicts with an existing file, an error will be returned.

The header is two fixed entries and a variable length path:

* Command: Single byte. Always ``0x40``.
* 1 Byte reserved for padding.
* Path length: 16-bit number encoding the encoded length of the path string.
* 4 Bytes reserved for padding.
* Current time: 64-bit number encoding nanoseconds since January 1st, 1970. Used as the file modification time. Not all system will support the full resolution. Use the truncated time response value for caching.
* Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.)

The server will reply with:

* Command: Single byte. Always ``0x41``.
* Status: Single byte. ``0x01`` if the directory(s) were created, ``0x05`` if the filesystem is read-only or ``0x02`` if any parent of the path is an existing file.
* 6 Bytes reserved for padding.
* Truncated time: 64-bit number encoding nanoseconds since January 1st, 1970 as stored by the file system. The resolution may be less that the protocol. It is sent back for use in caching on the host side.

``0x50`` - List a directory
+++++++++++++++++++++++++++

Lists all of the contents in a directory given a full path. Returned paths are *relative* to the given path to reduce duplication.

The header is two fixed entries and a variable length path:

* Command: Single byte. Always ``0x50``.
* 1 Byte reserved for padding.
* Path length: 16-bit number encoding the encoded length of the path string.
* Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.)

The server will reply with n+1 entries for a directory with n files:

* Command: Single byte. Always ``0x51``.
* Status: Single byte. ``0x01`` if the directory exists or ``0x02`` if it doesn't.
* Path length: 16-bit number encoding the encoded length of the path string.
* Entry number: 32-bit number encoding the entry number.
* Total entries: 32-bit number encoding the total number of entries.
* Flags: 32-bit number encoding data about the entries.

  - Bit 0: Set when the entry is a directory
  - Bits 1-7: Reserved

* Modification time: 64-bit number of nanoseconds since January 1st, 1970. *However*, files modifiers may not have an accurate clock so do *not* assume it is correct. Instead, only use it to determine cacheability vs a local copy.
* File size: 32-bit number encoding the size of the file. Ignore for directories. Value may change.
* Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.) These paths are relative so they won't contain ``/`` at all.

The transaction is complete when the final entry is sent from the server. It will have entry number == total entries and zeros for flags, file size and path length.

``0x60`` - Move a file or directory
+++++++++++++++++++++++++++++++++++

Moves a file or directory at a given path to a different path. Can be used to
rename as well. The two paths are sent separated by a byte so that the server
may null-terminate the string itself. The client may send anything there.

The header is two fixed entries and a variable length path:

* Command: Single byte. Always ``0x60``.
* 1 Byte reserved for padding.
* Old Path length: 16-bit number encoding the encoded length of the path string.
* New Path length: 16-bit number encoding the encoded length of the path string.
* Old Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.)
* One padding byte. This can be used to null terminate the old path string.
* New Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.)

The server will reply with:

* Command: Single byte. Always ``0x61``.
* Status: Single byte. ``0x01`` on success, ``0x05`` if read-only, or ``0x02`` on other error.

**NOTE**: This is added in version 4.

Versions
=========

Version 2
---------
* Changes delete to delete contents of non-empty directories automatically.

Version 3
---------
* Adds modification time.
  * Adds current time to file write command.
  * Adds current time to make directory command.
  * Adds modification time to directory listing entries.

Version 4
---------
* Adds move command.
* Adds 0x05 error for read-only filesystems. This is commonly that USB is editing the same filesystem.
* Removes requirement that directory paths end with /.

Contributing
============

Contributions are welcome! Please read our `Code of Conduct
<https://github.com/adafruit/Adafruit_CircuitPython_BLE_File_Transfer/blob/main/CODE_OF_CONDUCT.md>`_
before contributing to help this project stay welcoming.

Documentation
=============

For information on building library documentation, please check out
`this guide <https://learn.adafruit.com/creating-and-sharing-a-circuitpython-library/sharing-our-docs-on-readthedocs#sphinx-5-1>`_.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "adafruit-circuitpython-ble-file-transfer",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "adafruit,blinka,circuitpython,micropython,ble_file_transfer,ble,file,transfer",
    "author": "",
    "author_email": "Adafruit Industries <circuitpython@adafruit.com>",
    "download_url": "https://files.pythonhosted.org/packages/0d/f1/e8479f9d7ceced4b5734677299d6cf19d0df303436e74931d5ccbaf69045/adafruit-circuitpython-ble-file-transfer-4.0.7.tar.gz",
    "platform": null,
    "description": "Introduction\n============\n\n\n.. image:: https://readthedocs.org/projects/adafruit-circuitpython-ble_file_transfer/badge/?version=latest\n    :target: https://docs.circuitpython.org/projects/ble_file_transfer/en/latest/\n    :alt: Documentation Status\n\n\n.. image:: https://github.com/adafruit/Adafruit_CircuitPython_Bundle/blob/main/badges/adafruit_discord.svg\n    :target: https://adafru.it/discord\n    :alt: Discord\n\n\n.. image:: https://github.com/adafruit/Adafruit_CircuitPython_BLE_File_Transfer/workflows/Build%20CI/badge.svg\n    :target: https://github.com/adafruit/Adafruit_CircuitPython_BLE_File_Transfer/actions\n    :alt: Build Status\n\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n    :target: https://github.com/psf/black\n    :alt: Code Style: Black\n\nSimple BLE Service for reading and writing files over BLE. This BLE service is geared towards file\ntransfer to and from a device running the service. A core part of the protocol is free space\nresponses so that the server can be a memory limited device. The free space responses allow for\nsmall buffer sizes that won't be overwhelmed by the client.\n\n\nDependencies\n=============\nThis driver depends on:\n\n* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_\n\nPlease ensure all dependencies are available on the CircuitPython filesystem.\nThis is easily achieved by downloading\n`the Adafruit library and driver bundle <https://circuitpython.org/libraries>`_\nor individual libraries can be installed using\n`circup <https://github.com/adafruit/circup>`_.\n\n\nInstalling from PyPI\n=====================\n\nOn supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from\nPyPI <https://pypi.org/project/adafruit-circuitpython-ble_file_transfer/>`_.\nTo install for current user:\n\n.. code-block:: shell\n\n    pip3 install adafruit-circuitpython-ble-file-transfer\n\nTo install system-wide (this may be required in some cases):\n\n.. code-block:: shell\n\n    sudo pip3 install adafruit-circuitpython-ble-file-transfer\n\nTo install in a virtual environment in your current project:\n\n.. code-block:: shell\n\n    mkdir project-name && cd project-name\n    python3 -m venv .venv\n    source .venv/bin/activate\n    pip3 install adafruit-circuitpython-ble-file-transfer\n\n\n\nUsage Examples\n==============\n\nSee `examples/ble_file_transfer_simpletest.py <examples/ble_file_transfer_simpletest.py>`_ for a client example. A stub server implementation is in `examples/ble_file_transfer_stub_server.py <examples/ble_file_transfer_stub_server.py>`_.\n\nProtocol\n=========\n\nThe file transfer protocol is meant to be simple and easy to implement. It uses free space counts as a way to rate limit file content data transfer. All multi-byte numbers are encoded with the least significant byte first (\"<\" in CPython's struct module).\n\nGATT Service\n--------------\n\nThe UUID of the service is ``0xfebb``, Adafruit's 16-bit service UUID.\n\nThe base UUID used in characteristics is ``ADAFxxxx-4669-6C65-5472-616E73666572``. The 16-bit numbers below are substituted into the ``xxxx`` portion.\n\nThe service has two characteristics:\n\n* version (``0x0100``) - Simple unsigned 32-bit integer version number. May be 1 - 4.\n* raw transfer (``0x0200``) - Bidirectional link with a custom protocol. The client does WRITE_NO_RESPONSE to the characteristic and then server replies via NOTIFY. (This is similar to the Nordic UART Service but on a single characteristic rather than two.) The commands over the transfer characteristic are idempotent and stateless. A disconnect during a command will reset the state.\n\nTime resolution\n---------------\n\nTime resolution varies based filesystem type. FATFS can only get down to the 2 second bound after 1980. Littlefs can do 64-bit nanoseconds after January 1st, 1970.\n\nTo account for this, the protocol has time in 64-bit nanoseconds after January 1st, 1970. However, the server will respond with a potentially truncated version that is the value stored.\n\nAlso note that devices serving the file transfer protocol may not have it's own clock so do not rely on time ordering. Any internal writes may set the time incorrectly. So, we only recommend using the value as a cache key.\n\nCommands\n---------\n\nCommands always start with a fixed header. The first entry is always the command number itself encoded in a single byte. The number of subsequent entries in the header will vary by command. The entire header must be sent as a unit so set the characteristic with the full header packet. You can combine multiple commands into a single write as long as the complete header is in the packet.\n\nPaths use ``/`` as a separator and full paths must start with ``/``.\n\nAll numbers are unsigned.\n\nAll values are aligned with respect to the start of the packet.\n\nStatus bytes are ``0x01`` for OK and ``0x02`` for error. Values other than ``0x01`` are errors. ``0x00`` should not be used for a specific error but still considered an error. ``0x05`` is an error for trying to modify a read-only filesystem.\n\n``0x10`` - Read a file\n++++++++++++++++++++++\n\nGiven a full path, returns the full contents of the file.\n\nThe header is four fixed entries and a variable length path:\n\n* Command: Single byte. Always ``0x10``.\n* 1 Byte reserved for padding.\n* Path length: 16-bit number encoding the encoded length of the path string.\n* Chunk offset: 32-bit number encoding the offset into the file to start the first chunk.\n* Chunk size: 32-bit number encoding the amount of data that the client can handle in the first reply.\n* Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.)\n\nThe server will respond with:\n\n* Command: Single byte. Always ``0x11``.\n* Status: Single byte.\n* 2 Bytes reserved for padding.\n* Chunk offset: 32-bit number encoding the offset into the file of this chunk.\n* Total length: 32-bit number encoding the total file length.\n* Chunk length: 32-bit number encoding the length of the read data up to the chunk size provided in the header.\n* Chunk-length contents of the file starting from the current position.\n\nIf the chunk length is smaller than the total length, then the client will request more data by sending:\n\n* Command: Single byte. Always ``0x12``.\n* Status: Single byte. Always OK for now.\n* 2 Bytes reserved for padding.\n* Chunk offset: 32-bit number encoding the offset into the file to start the next chunk.\n* Chunk size: 32-bit number encoding the number of bytes to read. May be different than the original size. Does not need to be limited by the total size.\n\nThe transaction is complete after the server has replied with all data. (No acknowledgement needed from the client.)\n\n``0x20`` - Write a file\n+++++++++++++++++++++++\n\nWrites the content to the given full path. If the file exists, it will be overwritten. Content may be written as received so an interrupted transfer may lead to a truncated file.\n\nOffset larger than the existing file size will introduce zeros into the gap.\n\nThe header is four fixed entries and a variable length path:\n\n* Command: Single byte. Always ``0x20``.\n* 1 Byte reserved for padding.\n* Path length: 16-bit number encoding the encoded length of the path string.\n* Offset: 32-bit number encoding the starting offset to write.\n* Current time: 64-bit number encoding nanoseconds since January 1st, 1970. Used as the file modification time. Not all system will support the full resolution. Use the truncated time response value for caching.\n* Total size: 32-bit number encoding the total length of the file contents.\n* Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.)\n\nThe server will repeatedly respond until the total length has been transferred with:\n\n* Command: Single byte. Always ``0x21``.\n* Status: Single byte. ``0x01`` if OK. ``0x05`` if the filesystem is read-only. ``0x02`` if any parent directory is missing or a file.\n* 2 Bytes reserved for padding.\n* Offset: 32-bit number encoding the starting offset to write. (Should match the offset from the previous 0x20 or 0x22 message)\n* Truncated time: 64-bit number encoding nanoseconds since January 1st, 1970 as stored by the file system. The resolution may be less that the protocol. It is sent back for use in caching on the host side.\n* Free space: 32-bit number encoding the amount of data the client can send.\n\nThe client will repeatedly respond until the total length has been transferred with:\n\n* Command: Single byte. Always ``0x22``.\n* Status: Single byte. Always ``0x01`` for OK.\n* 2 Bytes reserved for padding.\n* Offset: 32-bit number encoding the offset to write.\n* Data size: 32-bit number encoding the amount of data the client is sending.\n* Data\n\nThe transaction is complete after the server has received all data and replied with a status with 0 free space and offset set to the content length.\n\n**NOTE**: Current time was added in version 3. The rest of the packets remained the same.\n\n\n``0x30`` - Delete a file or directory\n+++++++++++++++++++++++++++++++++++++\n\nDeletes the file or directory at the given full path. Non-empty directories will have their contents deleted as well.\n\nThe header is two fixed entries and a variable length path:\n\n* Command: Single byte. Always ``0x30``.\n* 1 Byte reserved for padding.\n* Path length: 16-bit number encoding the encoded length of the path string.\n* Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.)\n\nThe server will reply with:\n\n* Command: Single byte. Always ``0x31``.\n* Status: Single byte. ``0x01`` if the file or directory was deleted, ``0x05`` if the filesystem is read-only or ``0x02`` if the path is non-existent.\n\n**NOTE**: In version 2, this command now deletes contents of a directory as well. It won't error.\n\n``0x40`` - Make a directory\n+++++++++++++++++++++++++++\n\nCreates a new directory at the given full path. If a parent directory does not exist, then it will also be created. If any name conflicts with an existing file, an error will be returned.\n\nThe header is two fixed entries and a variable length path:\n\n* Command: Single byte. Always ``0x40``.\n* 1 Byte reserved for padding.\n* Path length: 16-bit number encoding the encoded length of the path string.\n* 4 Bytes reserved for padding.\n* Current time: 64-bit number encoding nanoseconds since January 1st, 1970. Used as the file modification time. Not all system will support the full resolution. Use the truncated time response value for caching.\n* Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.)\n\nThe server will reply with:\n\n* Command: Single byte. Always ``0x41``.\n* Status: Single byte. ``0x01`` if the directory(s) were created, ``0x05`` if the filesystem is read-only or ``0x02`` if any parent of the path is an existing file.\n* 6 Bytes reserved for padding.\n* Truncated time: 64-bit number encoding nanoseconds since January 1st, 1970 as stored by the file system. The resolution may be less that the protocol. It is sent back for use in caching on the host side.\n\n``0x50`` - List a directory\n+++++++++++++++++++++++++++\n\nLists all of the contents in a directory given a full path. Returned paths are *relative* to the given path to reduce duplication.\n\nThe header is two fixed entries and a variable length path:\n\n* Command: Single byte. Always ``0x50``.\n* 1 Byte reserved for padding.\n* Path length: 16-bit number encoding the encoded length of the path string.\n* Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.)\n\nThe server will reply with n+1 entries for a directory with n files:\n\n* Command: Single byte. Always ``0x51``.\n* Status: Single byte. ``0x01`` if the directory exists or ``0x02`` if it doesn't.\n* Path length: 16-bit number encoding the encoded length of the path string.\n* Entry number: 32-bit number encoding the entry number.\n* Total entries: 32-bit number encoding the total number of entries.\n* Flags: 32-bit number encoding data about the entries.\n\n  - Bit 0: Set when the entry is a directory\n  - Bits 1-7: Reserved\n\n* Modification time: 64-bit number of nanoseconds since January 1st, 1970. *However*, files modifiers may not have an accurate clock so do *not* assume it is correct. Instead, only use it to determine cacheability vs a local copy.\n* File size: 32-bit number encoding the size of the file. Ignore for directories. Value may change.\n* Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.) These paths are relative so they won't contain ``/`` at all.\n\nThe transaction is complete when the final entry is sent from the server. It will have entry number == total entries and zeros for flags, file size and path length.\n\n``0x60`` - Move a file or directory\n+++++++++++++++++++++++++++++++++++\n\nMoves a file or directory at a given path to a different path. Can be used to\nrename as well. The two paths are sent separated by a byte so that the server\nmay null-terminate the string itself. The client may send anything there.\n\nThe header is two fixed entries and a variable length path:\n\n* Command: Single byte. Always ``0x60``.\n* 1 Byte reserved for padding.\n* Old Path length: 16-bit number encoding the encoded length of the path string.\n* New Path length: 16-bit number encoding the encoded length of the path string.\n* Old Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.)\n* One padding byte. This can be used to null terminate the old path string.\n* New Path: UTF-8 encoded string that is *not* null terminated. (We send the length instead.)\n\nThe server will reply with:\n\n* Command: Single byte. Always ``0x61``.\n* Status: Single byte. ``0x01`` on success, ``0x05`` if read-only, or ``0x02`` on other error.\n\n**NOTE**: This is added in version 4.\n\nVersions\n=========\n\nVersion 2\n---------\n* Changes delete to delete contents of non-empty directories automatically.\n\nVersion 3\n---------\n* Adds modification time.\n  * Adds current time to file write command.\n  * Adds current time to make directory command.\n  * Adds modification time to directory listing entries.\n\nVersion 4\n---------\n* Adds move command.\n* Adds 0x05 error for read-only filesystems. This is commonly that USB is editing the same filesystem.\n* Removes requirement that directory paths end with /.\n\nContributing\n============\n\nContributions are welcome! Please read our `Code of Conduct\n<https://github.com/adafruit/Adafruit_CircuitPython_BLE_File_Transfer/blob/main/CODE_OF_CONDUCT.md>`_\nbefore contributing to help this project stay welcoming.\n\nDocumentation\n=============\n\nFor information on building library documentation, please check out\n`this guide <https://learn.adafruit.com/creating-and-sharing-a-circuitpython-library/sharing-our-docs-on-readthedocs#sphinx-5-1>`_.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Simple BLE Service for reading and writing files over BLE",
    "version": "4.0.7",
    "project_urls": {
        "Homepage": "https://github.com/adafruit/Adafruit_CircuitPython_BLE_File_Transfer.git"
    },
    "split_keywords": [
        "adafruit",
        "blinka",
        "circuitpython",
        "micropython",
        "ble_file_transfer",
        "ble",
        "file",
        "transfer"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "565d4fb91d0b38eadca916e0275b9726cff05baee48ae027bacbdf62ff3707d9",
                "md5": "c0bf4ff40c177dcf52244b0d14c7450c",
                "sha256": "46bfcf6a7b2057ec982c223c70c91f77ef48c2d931819657785f10db89e1f310"
            },
            "downloads": -1,
            "filename": "adafruit_circuitpython_ble_file_transfer-4.0.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c0bf4ff40c177dcf52244b0d14c7450c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 10453,
            "upload_time": "2023-12-09T17:43:06",
            "upload_time_iso_8601": "2023-12-09T17:43:06.431084Z",
            "url": "https://files.pythonhosted.org/packages/56/5d/4fb91d0b38eadca916e0275b9726cff05baee48ae027bacbdf62ff3707d9/adafruit_circuitpython_ble_file_transfer-4.0.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0df1e8479f9d7ceced4b5734677299d6cf19d0df303436e74931d5ccbaf69045",
                "md5": "ef8d1ee7a735eaa92659a851318b7177",
                "sha256": "c2de567c4fb439a8766d98146507c8d8f127a5617fdb5671da6f94009d345737"
            },
            "downloads": -1,
            "filename": "adafruit-circuitpython-ble-file-transfer-4.0.7.tar.gz",
            "has_sig": false,
            "md5_digest": "ef8d1ee7a735eaa92659a851318b7177",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 39352,
            "upload_time": "2023-12-09T17:43:07",
            "upload_time_iso_8601": "2023-12-09T17:43:07.574017Z",
            "url": "https://files.pythonhosted.org/packages/0d/f1/e8479f9d7ceced4b5734677299d6cf19d0df303436e74931d5ccbaf69045/adafruit-circuitpython-ble-file-transfer-4.0.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-09 17:43:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "adafruit",
    "github_project": "Adafruit_CircuitPython_BLE_File_Transfer",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "adafruit-circuitpython-ble-file-transfer"
}
        
Elapsed time: 0.15473s