Алексей Андреев
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# Telepathy Tank ###### tags: `kde` `telepathy` `matrix` > **TL;DR**: [telepathy-tank](https://github.com/TelepathyIM/telepathy-tank) and Telepathy IM, in general, are here and not forgotten, few enthusiasts are still playing with it and even revived private matrix room as public for the telepathy developers and packagers: [#telepathy-im:matrix.org](https://matrix.to/#/%23telepathy-im:matrix.org). Sailfish OS, KDE, and PostmarketOS developers could be interested (and probably already know about it :D) ## Telepathy IM project ### General overview First about Telepathy in general. [Telepathy IM](https://github.com/TelepathyIM/wiki/wiki) is a client-side specification and a framework for the desktop and mobile Linux real-time communications. It builds their modules as independent programs (Unix processes) and uses [IPC](https://en.wikipedia.org/wiki/Inter-process_communication) for coordination between them ([D-Bus](https://dbus.freedesktop.org/) precisely). The applications called [pidgin/libpurple](https://developer.pidgin.im/wiki/WhatIsLibpurple) and [weechat](https://weechat.org/) and [kopete](https://kde.org/applications/internet/org.kde.kopete) are probably predecessors of the telepathy project, but they're focused on the plugin subsystem approach, not IPC one. The most beautiful and challenging thing about Telepathy is probably a client apps interoperability. For example, if you what to write an application with some new UI that shows contact list or shows and sends messages to some rooms, you don't have to rewrite an application that supports login and manages connections if it's already written for your system. The new applications could be implemented in different languages that could even not support your IM protocol directly, it just has to support dbus system protocol on the library side. ![Freedesktop: Telepathy Architecture Overview](https://telepathy.freedesktop.org/images/TelepathyArchitectureOverview.png) Since pure D-Bus is quite low-level, additional wrappers are already there for convenience, such as [Qt D-Bus](https://doc.qt.io/qt-5/qtdbus-index.html) (Qt is well documented ❤ and also have a nice write-up about dbus), [python dbus](https://www.freedesktop.org/wiki/Software/DBusBindings), [haskell dbus](http://hackage.haskell.org/package/dbus), [lua dbus](https://luarocks.org/modules/dodo/lua-dbus), [npm dbus](https://www.npmjs.com/package/dbus), [dart dbus](https://pub.dev/packages/dbus_client). In other words, the IM protocol client could be implemented in one language, UI applications in another, and they could communicate with each other via dbus following the Telepathy specification that describes IM subject matter. Even [Qt](https://github.com/TelepathyIM/telepathy-qt), [glib](https://github.com/TelepathyIM/telepathy-glib), and [python](https://telepathy.freedesktop.org/doc/book/sect.services.python.html) wrappers for the Telepathy protocol itself were introduced for more convenience (comparing to the dbus wrappers mentioned earlier). ### Matrix point-of-view Matrix developer who is interested in Linux but not familiar with the Linux IPC and dbus could ask: - Why do I need even more abstractions on the client-side, if I could just use bridges on the server-side and focus on the all-in-one application on the client side? There're probably two reasons in my opinion: - It makes an option to not to use bridges if it's not possible for some cases, and work on protocol support directly for the client-side - It makes possible different system-side integrations. For example, not only the chat but also the PIM applications (adress book, calendar), media players, etc -- could share the same connection on the device. You probably have to re-invent Telepathy if you have to build something similar but in the all-in-one application. So, while Matrix specification covers server-server and client-server side, Telepathy IM is more about client applications, while both describe real-time communications subject matter. ### Challenges There's also known challenges with the current implementation: + DBus-specific solution. While dbus is native IPC for the Linux-based systems and [could be shared over the network](https://www.freedesktop.org/wiki/Software/DBusRemote/) or [ported](https://gist.github.com/berkin/b2139360393c93eebc35fa298fc859bc) to the target OS, it's not well-known across the other operating systems. Somebody could say that network connection could be used as IPC instead of some OS-specific mechanism. But the higher-level abstractions are a trick (which will remain the same probably) and should be evolved and maintained anyway. Which leads us to another currently weak side + Contributors flaw. Telepathy project roots are from the [good](https://translate.yandex.ru/translate?url=https%3A%2F%2Fhabr.com%2Fru%2Fpost%2F171325%2F&lang=ru-en)-[old](https://en.wikipedia.org/wiki/Peter_principle)-days of the Nokia N900/N9 Linux devices and [Collabora](https://mail.gnome.org/archives/desktop-devel-list/2017-September/msg00047.html) team development. A lot of contributors are needed to support such a level of standardization. Right now we have [Kaffeine](https://matrix.to/#/@kaffeine:matrix.org) maintainer who has "picked up the flag" and few other project sympathizers. It's the well known [chicken-or-the-egg](https://en.wikipedia.org/wiki/Chicken_or_the_egg) problem that could be solved step-by-step though. ## Matrix connection manager [Telepathy-tank](https://github.com/TelepathyIM/telepathy-tank) is a matrix connection manager for the Telepathy. It uses [libQuotient](https://github.com/quotient-im/libQuotient) and mentioned Qt wrapper library for the Telepathy. The Telepathy framework is the native messaging solution for the [Sailfish OS](https://sailfishos.org/wiki/Telepathy_Framework). There're also chances it could revive in the KDE project due to Plasma Mobile activities. Sailfish OS 3.3.0 Rokua was released recently, where [gcc compiler updated 4.9 -> 8.3](https://together.jolla.com/question/222221/release-notes-330-rokua/#222221-contributions-from-aurora-os) thanks to Aurora OS developers' contribution. > Don't be surprised it's not 9.3 like in your favorite vanilla rolling-release arch desktop distro, embedded devices state is [another story](https://medium.com/@tskho/why-my-phone-will-not-be-updated-to-upcoming-android-version-d6e4e9361287) currently ([PostmarketOS and Archlinux/ManjaroARM](https://nemomobile.net/pages/Packaging_Glacier_for_postmarketOS/) are nice exceptions though). Compiler updates make it possible to drop super-cool [rinigus](https://github.com/rinigus) workaround to use [gcc from opt](https://build.merproject.org/package/show/home:rinigus:toolbox/opt-gcc) for Sailfish OS and compile libQuotient! Patches to support outdated Qt5.6 are [still needed](https://github.com/quotient-im/libQuotient/blob/aa13q-mer-0.6.x/rpm/mer-qt5.6-hacks.patch) though. > Sailfish OS Qt update are still in 5.6 state also due to non-technical challenges about framework LGPL/GPL transition 2 -> 3; It bothers many developers (me too), but it's not something anyone forgot about Recent activity from KDE and Sailfish users and personal interest of Kaffeine (telepathy maintainer, telegram-qt, and telepathy-morse developer) lead him to make [Telepathy IM](https://matrix.to/#/%23telepathy-im:matrix.org) room public. While telepathy-tank is in the very early stage of development, it's already possible for the developers to play with it in KDE and Sailfish OS (thanks to Kaffeine again, since he also [provided a workaround](https://git.sailfishos.org/mer-core/commhistory-daemon/merge_requests/31) for the Sailfish notifications/history subsystem). Here are some screenshots in fancy devices renders from the Sailfish with telepathy-tank. It's the first iteration, already working with the system apps like messages and contacts natively: ![](https://i.imgur.com/UTXhVY3.png) ![](https://i.imgur.com/BZpgSas.png) ![](https://i.imgur.com/2n1z1HX.png) ![](https://i.imgur.com/MqvH3yt.png) ![](https://i.imgur.com/gpVPSYP.png) ![](https://i.imgur.com/B1p6E6a.png) ![](https://i.imgur.com/nSQlCTk.png) ![](https://i.imgur.com/He2TLW2.png) ![](https://i.imgur.com/yV04FdP.png) An infinite source of inspiration and all my wallpapers: [Simon Stålenhag](https://www.simonstalenhag.se/). Alexey Andreyev ([aa13q](https://matrix.to/#/@aa13q:matrix.org)) for the [This Week in Matrix Digest](https://matrix.org/blog/2020/04/24/this-week-in-matrix-2020-04-24) (24.04.2020.)

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully