Skip to content

Emacs library to facilitate communicating with servers that read and write JSON

License

Notifications You must be signed in to change notification settings

DamienCassou/json-process-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

json-process-client

MELPA Stable MELPA pipeline status

Summary

The package json-process-client is an Emacs library to facilitate communicating with servers that read and write JSON. The library is responsible for starting the server and connecting with TCP. It is also responsible for converting to and from JSON.

The library was written by Nicolas Petton in the context of Indium and later generalized by Damien Cassou who needed something similar to integrate basecamp within Emacs.

Installation

Get json-process-client from melpa or melpa stable. You can also clone the git repository.

Usage

There are two entry points to the API: json-process-client-start and json-process-client-start-with-id. They both launch an executable passed as parameter wait for it to be ready, and connect to it using TCP. They both return an “application” that must be passed as parameter to all other functions of the API.

Because everything is asynchronous, the server can send responses in a different order than the messages the client sent. The server can also send messages which are not responses to a former message. There must be a way to map responses to the initial message when there was one. The two functions json-process-client-start and json-process-client-start-with-id differs in the way they map responses to their corresponding message. The later function is the simplest but requires that the server reads ids from the messages and writes the ids back in its responses. The former function let the API user implement the mapping.

There are three other public methods in the API:

  • json-process-client-stop terminates the TCP connection and the server.
  • json-process-client-process-live-p returns non-nil if the server is still listening.
  • json-process-client-send sends a message to the server and executes a given callback upon reception.

License

See COPYING. Copyright (c) 2019-2023 Nicolas Petton and Damien Cassou.

About

Emacs library to facilitate communicating with servers that read and write JSON

Topics

Resources

License

Stars

Watchers

Forks