Go to file
Dan Ballard 7a65efaa78
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is pending Details
change to use new go-cross-compile container
2024-03-05 09:38:14 -08:00
constants Use Constant from Cwtch 2023-09-13 11:52:11 -07:00
experiments/server_hosting Expose Search and new ServerList Functions 2023-07-25 14:46:09 -07:00
features Expose Search and new ServerList Functions 2023-07-25 14:46:09 -07:00
generate Expose new Enhanced Permission APIs 2024-01-15 10:14:52 -08:00
templates Add Reload Field to CwtchStarted event 2024-02-26 18:01:46 -08:00
utils Load Correct Profile Image when ProfileImageExperiment is Disabled 2024-02-23 15:22:12 -08:00
.drone.yml change to use new go-cross-compile container 2024-03-05 09:38:14 -08:00
.gitignore Upgrade Cwtch 2023-04-20 14:15:24 -07:00
LICENSE Add 'LICENSE' 2023-06-16 21:26:36 +00:00
MEMORY.md Add Memory Notes to README 2023-02-23 10:16:59 -08:00
Makefile change to use new go-cross-compile container 2024-03-05 09:38:14 -08:00
README.md give makefile a concept of cross compiling, use conditionals to determin what it is, and if it can 2023-07-24 07:59:07 -07:00
go.mod Upgrade Cwtch 2024-02-26 09:28:36 -08:00
go.sum Upgrade Cwtch 2024-02-26 09:28:36 -08:00
quality.sh Expose new Enhanced Permission APIs 2024-01-15 10:14:52 -08:00
spec Expose new Enhanced Permission APIs 2024-01-15 10:14:52 -08:00
switch-ffi.sh Initial Commit 2023-02-21 15:51:34 -08:00
switch-gomobile.sh Initial Commit 2023-02-21 15:51:34 -08:00

README.md

Cwtch Autobindings

Automatically generate Cwtch C-Bindings from a high-level specification.

Note for the Flutter-based Cwtch UI Application see: https://git.openprivacy.ca/cwtch.im/cwtch-ui

Building

go mod download
go run generate/generate_bindings.go
make linux  // alternatively windows, android, macos

Experiments

Autobindings allow for comile time selection of experiments. Default selections for each target platform are supplied in Makefile but can be overridden with:

env EXPERIMENTS="serverExperiment otherExperiment" make android

Spec File Format

The current Cwtch Bindings Specification is defined in spec

Supported function prototypes:

  • app <Function Name> <Args> - an application-level function, called on global Application
  • profile <Function Name> <Args> - a profile-level function, takes profile as an implicit first argument
  • json(profile) <Function Name> <Args> - a profile-level function, takes profile as an implicit first argument and returns a json blob that must be freed by the calling library (see MEMORY)
  • @profile-experiment <Function Name> <Experiment> <Args>- an experimental profile-level function, takes profile as an implicit first argument, experiment must implement cwtch Functionality interface
  • @(json)profile-experiment <Function Name> <Experiment> <Args> - am experimental profile-level function, takes profile as an implicit first argument and returns a json blob that must be freed by the calling (see MEMORY) library, , experiment must implement cwtch Functionality interface

Supported argument prototypes:

  • profile - a cwtch profile identifier
  • conversation - a cwtch conversation identifier
  • message - a cwtch message identifier
  • int:<name> - a generic integer argument (with optional name)
  • bool:<name> - a generic boolean argument (with optional name)
  • string:<name> - a generic string argument (with optional name)

All arguments must be defined in the order they are specified by the underlying Cwtch library function.

Other directives:

  • import <go pkg> - includes an additional go importin the compiled lib.go (needed for experiments)
  • Functions that start with Enhanced are automatically stripped of that prefix for their binding names e.g. EnhancedGetMessage generated a binding c_GetMessage - for certain functions Cwtch has two potential calling options <Function> and Enhanced<Function>. "Enhanced" in this case means that the response is optimised for calling by a user-facing application by e.g. directly making a number of calls under the hood and returning a json blob of the results.

Using

General Environment Variables

  • LOG_FILE if defined will mean all go logging will go to a file instead of stdout
  • LOG_LEVEL if set to debug will cause debug logging to be included in log output
  • CWTCH_PROFILE if set to 1 will cause a memory profile to be written to mem.prof and all active goroutines written to stdout when DebugInfo() is called.
  • CWTCH_TAILS if set to true will override the Tor configuration to allow Cwtch to work in a Tail-like environment.

Linux Desktop:

  • LD_LIBRARY_PATH set to point to libCwtch.so
  • or drop a symlink into /usr/lib

Cross compile arm 64

Needs sudo apt install gcc-aarch64-linux-gnu

Android

  • copy cwtch.aar into flutter_app/android/cwtch

Windows

  • copy libCwtch.dll into the directory of the .exe using it

MacOS

  • copy libCwtch.x64.dylib and libCwtch.arm.dylib into the directory you are executing from

Support Cwtch Development

We couldn't do what we do without all the wonderful community support we get, from one-off donations to recurring support via Patreon.

If you want to see us move faster on some of these goals and are in a position to, please donate. If you happen to be at a company that wants to do more for the community and this aligns, please consider donating or sponsoring a developer.

Donations of $5 or more can opt to receive stickers as a thank-you gift!

For more information about donating to Open Privacy and claiming a thank you gift please visit the Open Privacy Donate page.