Skip to content

rmiezenbeek/calibre-ios-reader-applications

 
 

Repository files navigation

##Communication protocol for calibre and iOS reader applications## This document provides details of the communication protocol for the iOS reader applications device driver plugin for calibre. The protocol was developed by Greg Riker and Kristian Guillaumier.

###General overview### Apple’s iOS does not allow a host computer direct access to a connected iDevice’s folder structure. Various solutions are available to overcome this restriction, including jailbreaking the iDevice, or use of additional software, e.g. iFunbox.

The iOS reader applications device driver uses an open source code library libiMobileDevice to access the iOS file system. The libiMobileDevice libraries for Linux, OS X and Windows (built from v1.1.5 source) are bundled with calibre (starting with version 0.9.31), along with glue code (calibre.devices.idevice.libimobiledevice.py). The libiMobileDevice libraries seem to work well with calibre under iOS 5.x and 6.x. Future releases of iOS may require updating the libiMobileDevice libraries.

The initial release of the iOS reader applications device driver supports iBooks, Marvin and GoodReader. iBooks support is implemented by calling calibre’s existing iTunes driver. Marvin support is implemented by loading overlays at runtime, specific to Marvin, discussed in more depth in Device driver overlays. GoodReader support is included as an example of a modeless, calibre-unaware driver.

The device driver is designed to be extensible to support multiple iOS reader applications. Adding support for a new reader application requires two programming efforts:

  • Application implementation in the iOS application (written in Objective C) adds the ‘calibre connection’, polling for and responding to commands initiating in calibre.
  • Device driver overlays contained in a single file (written in python) implementing calibre device driver functionality.

Alternatively, a device driver for a calibre-unaware reader application may be implemented without any application changes. This is suitable only for apps which monitor their sandbox folders for changes. GoodReader is an example of such an application. The GoodReader driver is discussed in detail in the Calibre-unaware reader applications section.


###Communication protocol overview### When calibre senses a connected USB device, it passes the USB fingerprint to each installed device driver, asking if the driver can handle the connected device. If a driver recognizes the USB fingerprint, it responds positively, and calibre connects to that device. After connection, the user can manage books installed on the device from calibre.

For ‘dumb’ devices (Kindle, Nook, Sony), the USB fingerprint is adequate to identify the device. Dumb devices are simply mounted as USB drives, and content is managed on the device by adding and deleting from the device’s document folder.

iDevices are handled as ‘smart’ devices. A user may have multiple reading applications installed on their iDevice. The driver must be able to accommodate multiple reader applications through a single USB fingerprint. The driver presents a Preferred reader application combo box in its configuration dialog. When the driver initializes, it uses the selected reader application to determine which overlay methods to load.

It would also be possible to create individual calibre device drivers for each supported iOS reader application, but this would potentially require the calibre user to juggle multiple drivers all responding the to same USB fingerprints. Additionally, when Apple releases new iDevices, every driver would need to be updated with the new USB fingerprints. A unified driver is a bit more complicated for the programmer, but easier for the user.

The mechanism for sending commands from the driver to the application is implemented with a file-based command system.

  • The command staging folder, in the application’s sandbox, is where the iOS application receives commands and reports status. All commands are written by the driver to the command staging folder. All status responses are written to the command staging folder by the application.

  • The document staging folder, in the application’s sandbox, is where the application receives incoming books to be imported to the application’s library.

  • The locations chosen for the command staging folder and the document staging folder within the application’s sandbox are determined by the implementer.

No commands will be sent by the driver until the application initiates its calibre connection mode and creates connected.xml. This signals the driver that the application is ready to respond to commands.


###Command files### Commands are initiated by the driver. Status is reported by the application. Samples of all command and status files are available in the XML command files section.

delete_books.xml

  • The driver writes a complete delete_books.tmp in the command staging folder, then renames it to delete_books.xml.
  • The application processes the command, updating status.xml with its progress as it deletes the books in the manifest.
  • The driver monitors status.xml for progress.
  • The application deletes delete_books.xml at the completion of the command.
  • The driver deletes status.xml at the completion of the command.

rebuild_collections.xml

  • Implementation of this command is optional, and only required if the application supports collections.
  • The driver writes a complete rebuild_collections.tmp in the command staging folder, then renames it to rebuild_collections.xml.
  • The application processes the command, updating status.xml with its progress as it rebuilds the collection assignments.
  • The driver monitors status.xml for progress.
  • The application deletes rebuild_collections.xml at the completion of the command.
  • The driver deletes status.xml at the completion of the command.

update_metadata.xml

  • The driver writes a complete update_metadata.tmp in the command staging folder, then renames it to update_metadata.xml.
  • The application processes the command, updating status.xml with its progress as it updates the metadata for books in the manifest.
  • The driver monitors status.xml for progress.
  • The application deletes update_metadata.xml at the completion of the command.
  • The driver deletes status.xml at the completion of the command.

upload_books.xml

  • The driver copies the selected book(s) from calibre’s library to the document staging folder.
  • The driver writes a complete upload_books.tmp in the command staging folder, then renames it to upload_books.xml.
  • The application processes the command, updating status.xml with its progress as it imports the books listed in the manifest from the document staging folder.
  • The driver monitors status.xml for progress.
  • The application deletes upload_books.xml at the completion of the command.
  • The driver deletes status.xml at the completion of the command.

###XML command files### All XML command files are UTF8 encoded with a BOM header.

####connected.xml#### [offline|online]

  • timestamp: a Unix timestamp representing the current time, as a float number of seconds, since the Unix Epoch of January 1st, 1970 00:00:00 UTC.
  • state: online when the application is actively polling the command staging folder.
  • state: offline when the application is in calibre connection mode, but has been backgrounded or the device is about to sleep.
  • created by: application when initiating calibre connection
  • updated by: application when app is being sent to background, or device is about to sleep
  • deleted by: application when exiting calibre connection

####delete_books.xml#### ... ...

  • timestamp: a Unix timestamp representing the current time, as a float number of seconds, since the Unix Epoch of January 1st, 1970 00:00:00 UTC.
  • book is repeated once for each book to delete, with the following attributes:
    • author: author metadata
    • filename: the filename of the epub to delete
    • title: title metadata
    • uuid: uuid metadata
  • created by: driver
  • deleted by: application

####rebuild_collections.xml#### some collection name ... ... ...

  • timestamp: a Unix timestamp representing the current time, as a float number of seconds, since the Unix Epoch of January 1st, 1970 00:00:00 UTC.
  • book is repeated once for each book to rebuild, with the following attributes:
    • author: author metadata
    • filename: the filename of the epub to delete
    • title: title metadata
    • uuid: uuid metadata
    • collection: A collection to which the book is to be added
  • created by: driver
  • deleted by: application

####status.xml#### <status timestamp=timestamp='1364148473.0' code='0'> 1.0 A warning or error description

  • timestamp: a Unix timestamp representing the current time, as a float number of seconds, since the Unix Epoch of January 1st, 1970 00:00:00 UTC.
  • code:
    • -1: in progress
    • 0: successful completion
    • 1: success with warnings
    • 2: failure
  • progress: a float between 0.0 to 1.0 indicating overall progress of command execution as a percentage. This percentage is meaningful while code is -1, i.e. the command is being executed. When code is 0, 1 or 2, i.e. the command has been completed, progress shall be 1.0. If the application is processing 5 items, progress should be 0.20 after completion of the first item, 0.40 after the second, then finally 1.0 after completion of the final item when all application-side processing of the command has been completed.
  • message: A text message from the application with warnings or errors to be reported the user. No messages are expected or required for successful command completion.
  • created by: application
  • updated by: application
  • deleted by: driver

####update_metadata.xml#### <updatemetadata timestamp=timestamp='1364148473.0' cleanupcollections='[yes|no]'> (escaped HTML) some collection name ... some tag ... (base64 encoded cover bytes) ... ...

  • timestamp: a Unix timestamp representing the current time, as a float number of seconds, since the Unix Epoch of January 1st, 1970 00:00:00 UTC.
  • cleanupcollections: yes if the application should overwrite existing epubs of the same identity, no if existing epubs of the same identity should be protected from overwrite.
  • book is repeated once for each book to update, with the following attributes:
    • author: author metadata
    • authorsort: author sort metadata
    • filename: the filename of the epub whose metadata is being updated
    • pubdate: publication date metadata in 'YYYY-MM-DD' format
    • publisher: publisher metadata
    • series: series metadata
    • seriesindex: seriesindex metadata
    • title: title metadata
    • titlesort: title sort metadata
    • uuid: uuid
    • description: An escaped HTML description of the book
    • collection: A collection to which the book is to be added
    • subject: A genre describing the book
    • hash: an md5 hash of the included cover bytes. If the cover has not changed, there is no need to send the cover during an update.
  • created by: driver
  • deleted by: application

####upload_books.xml#### <uploadbooks timestamp=timestamp='1364148473.0' overwrite='[yes|no]'> some collection name ... ...

  • timestamp: a Unix timestamp representing the current time, as a float number of seconds, since the Unix Epoch of January 1st, 1970 00:00:00 UTC.
  • overwrite: yes if the application should overwrite existing epubs of the same identity, no if existing epubs of the same identity should be protected from overwrite.
  • book is repeated once for each book to upload, with the following attributes:
    • filename: the filename of the epub to import, as stored to the documents staging folder
    • coverhash: an MD5 hash of the cover in calibre’s metadata
    • collection: A collection to which the book is to be added
  • created by: driver
  • deleted by: application

###Application implementation### Implementation of the calibre connection may be modal or modeless, but the application must manage connected.xml to accurately report the current ability of the application to poll for and respond to commands.

When the application reports its status as online, calibre will add the application’s icon to the main toolbar. The user may click on the icon to see a list of books installed in the application, and perform I/O tasks from the calibre GUI.

When the application reports its status as offline, calibre will remove the application’s icon from the main toolbar.


###Device driver overlays### A calibre device driver subclasses the DevicePlugin class from calibre.devices.interface. The device driver constructs a shell DevicePlugin class, then merges in the following methods from the overlays:

  • add_books_to_metadata()
  • books()
  • can_handle()
  • can_handle_windows()
  • delete_books()
  • eject()
  • get_file()
  • is_usb_connected()
  • is_usb_connected_windows()
  • post_yank_cleanup()
  • prepare_addable_books()
  • remove_books_from_metadata()
  • sync_booklists()
  • upload_books()

An additional overlay method _initialize_overlay() is called after the overlays are loaded to do any class initialization that would normally be included in the __init__() method.

Overlays may include local helper methods. These methods should be prefixed with an underscore to differentiate them from DevicePlugin class methods.

Calibre expects the device driver to return a list of books with metadata from books(). To fetch the metadata, the driver interrogates the application’s database, typically a sqlite store. The driver may fetch other information from the database as well, but the expectation is that the driver does not modify the contents of the database. Instead, the application updates its database as part of executing commands.

Caching will improve driver performance, and is encouraged. Refer to the Marvin driver implementation for examples, and where to store caches on the user’s machine.

Developers implementing support for a new application should refer to the Marvin overlays for examples.

In addition to the overlay file, you will also need to provide a Qt Creator .ui file for the Options dialog, and a Help file.

####Debugging device driver overlays#### The simplest calibre development environment is a text editor and a command shell. By enabling the debug logging options in the configuration dialog, you will see an informative stream of driver diagnostics when running in calibre debug mode. To launch calibre in debug mode:

calibre-debug -g

plugins/iOS reader applications.json, stored in the user’s configuration directory, contains a variable development_mode. Setting development_mode to true will print the content of all commands to the debug stream when when Marvin is the selected reader application.


###Calibre-unaware reader applications### Some reader applications allow modeless interaction with their Documents folder through iTunes. For these reader applications, it may be possible to implement a driver with basic IO functionality without implementing the ‘smart’ protocol described above.

The GoodReader driver code is a good starting point for such a driver.

  • GoodReader monitors its Documents folder in realtime, displaying content changes as they occur.
  • GoodReader does not present any metadata to the user other than the cover, and uses the folder structure of Documents as its database.
  • There is no 'GoodReader Options' tab in the config dialog, and thus no options, switches, or help file. The functionality for this driver is very similar to the driver for a Kindle or Sony hardware reader - it simply adds and deletes files.

The driver parses the Documents folder for installed books, building its own sqlite database by passing the PDFs to calibre to extract metadata. The first time the driver sees a book, it takes some time to parse it for metadata, but subsequent references to the same book in the same folder location are retrieved from the driver's cached metadata. The database is stored in the reader app's sandbox, and updated after every operation.

There are some inconsistencies between calibre's Device view and GoodReader's My Documents view. GoodReader supports nested folders, calibre does not. Calibre's device view shows all discovered PDFs in GoodReader in a flat list. Any books added to GoodReader are added to the top level of the My Documents folder. Moving them to a subfolder must be done within the GoodReader application.


###Developing a new driver### Development of new driver code can be done without rebuilding the plugin. iOS reader applications.json, located in calibre's configuration directory can be modified to signal the driver of the presence of a driver overlay file under development. To find calibre's configuration directory on your machine, go to Preferences | Advanced | Miscellaneous, then click Open calibre configuration directory.

Edit iOS reader applications.json to include the following lines:

"development_mode": true,
"development_app_id": "com.somecompany.readerappname",
"development_overlay": "\\path\\to\\development_overlay.py",

development_app_id is the app id of the reader you're working with. For example, iBooks is com.apple.iBooks.

development_overlay is the full path to your overlay source file on your machine. Note that JSON data fields require escaped slashes.

During initialization, if these three fields exist in the JSON file, the specified overlay file will be loaded with the specified app_id. You can add switches to the JSON file to control the behavior of your driver. Switches should be prefaced with a unique name representing the reader app, as all reader app preferences are stored in the JSON file.

To run the driver after editing your code, restart calibre.

To see diagnostic messages, run calibre in debug mode:

calibre-debug -g

###JSON switches### The plugin’s prefs file is a JSON file, stored in the plugins folder of calibre’s configuration directory.

Individual switches may be set from a terminal window:

calibre-debug -c "from calibre.utils.config import JSONConfig; JSONConfig('plugins/iOS reader applications').set('{switch}', {value})"

where {switch} is from the table below, and {value} is the new value.

For example:

calibre-debug -c "from calibre.utils.config import JSONConfig; JSONConfig('plugins/iOS reader applications').set('development_mode', True)"

calibre-debug -c "from calibre.utils.config import JSONConfig; JSONConfig('plugins/iOS reader applications').set('upload_batch_size', 50)"
switchdescription
booklist_cachingEnables overall booklist caching in Marvin
cc_mappingsPer-library custom column settings
debug_can_handleEnables additional diagnostic output in can_handle()
debug_libimobiledeviceEnables diagnostic output for libiMobiledevice library
debug_pluginEnables diagnostic output when running calibre in debug mode
development_modeEnables additional diagnostic detail in debug mode
development_app_idSee 'Developing a new driver'
development_overlaySee 'Developing a new driver'
device_booklist_cache_limitFactor used (as a percent) to limit amount of space used by device caches
device_booklist_cachingEnables booklist caching to device
goodreader_caching_disabledDevelopment switch
ibooks_overrideAllows plugin to connect to iBooks under OS X 10.9+
kindle_caching_disabledDevelopment switch
kindle_enabled_formatsList of formats supported by Kindle for iOS reader application
plugin_diagnosticsEnables metrics logging
plugin_versionPlugin version when initially installed or schema upgraded
preferred_reader_appUser-selected iOS reader application
upload_batch_sizeMaximum number of books sent to Marvin in one upload command

Last update 2014-05-05 4:24:00 AM MDT

About

A calibre device driver plugin supporting multiple iOS reader applications

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 95.8%
  • HTML 4.2%