• This repository has been archived on 05/Mar/2024
  • Stars
    star
    253
  • Rank 154,900 (Top 4 %)
  • Language
    C#
  • License
    Apache License 2.0
  • Created over 6 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Plexus Interop open source project hosted by the Fintech Open Source Foundation

Plexus Interop FINOS - Incubating AppVeyor Plexus Interop CI status Plexus Interop MyGet Build Status

Overview

The Plexus Interop project aims to define an open standard for desktop application interoperability and provides reference implementation of this standard. It formalizes connections between applications within a single user session on client desktop through a central broker.

The main goal is to enable development of extensible workflows connecting independent apps developed by different organizations in different technologies (.NET, Web, Java, Python, etc.) by passing relevant context (structured data objects) between those apps.

Although the industry is moving towards containerized desktop applications, Plexus Interop recognizes that much of the application landscape is not yet tied to containers and is architecturally agnostic of container implementation. Separating interoperability from the container provides notable advantages: different containers can be leveraged in the same workflow, and launched applications residing outside of containers can participate in interop activities.

Technically speaking, Plexus Interop is a metadata-centric language-agnostic desktop app-to-app interoperability framework with an extensible model for launching new instances of desktop applications on demand. Its extensibility is based on open standards which are essential parts of the project. The architecture is based around central broker providing hub-and-spoke connectivity between apps and brokering strongly-typed RPC-style calls between them. The broker has a connection to an Application Lifecycle Manager (or Launcher) which is capable of creating new instances of apps based on the their runtime-metadata (e.g. container type, launch command, command line parameters) defined in a registry.

Key components and high level architecture

Raising an Issue

  • Please raise issues to the project mailing list [email protected] (Web Archive). Some people from project teams currently can't access build-in github issue tracker from corporate network.
  • Please also tag the new issue with either "Bug" or "Enhancement".

Repository Overview

Plexus Interop repository consist of the following main sections:

  • desktop - Interop Broker, .NET Interop Client and sample apps implemented in C# using .NET Core 2.0.
  • web - Web Interop Client and sample apps implemented in TypeScript.
  • dsl - Protobuf and Plexus Interop grammar parsers, validators and code-generators implemented using Xtext framework.
  • docs - documentation implemented in AsciiDoc format using Asciidoctor processor.
  • protocol - definitions of Plexus Interop protocol messages in Protobuf format.
  • samples - sample interop metadata.

Build and samples are currently tested on Windows environments; building and running on Linux/OSX environments is still experimental (see below).

Build/Install

General

Make sure that Java SDK is installed and JAVA_HOME variable is set.

All Plexus Interop components can be built using Gradle tool using the following single command:

./gradlew build --console plain

Build produces artifacts into folder "bin"; the first run can take 10 minutes or more, depending on your Internet connection speed.

Build in restricted environment

Build configuration should work fine on standard setup, with access to Internet. However it is quite often to have Dev setup behind corporate proxy. To run build successfully you'll need to adjust few configuration items shown below:

Gradle Proxy Settings

To adjust Gradle Proxy settings please update following lines in %USERPROFILE%\.gradle\gradle.properties, using your Corporate Proxy's host and port instead of example values:

systemProp.proxySet="true"
systemProp.http.proxyHost=proxy.host.acme.com
systemProp.http.proxyPort=8080
systemProp.https.proxyHost=proxy.host.acme.com
systemProp.https.proxyPort=8080
systemProp.http.nonProxyHosts=*.acme.com|localhost

Environment variables

Please adjust following Environment variables:

Name Value/Example Description
HTTP_PROXY http://userproxy.acme.com:8080 Your corporate proxy host:port.
HTTPS_PROXY http://userproxy.acme.com:8080 Your corporate proxy host:port.
NO_PROXY 127.0.0.1,localhost,.acme.com List of Intranet hosts to exclude from accessing through proxy.
ELECTRON_MIRROR https://github.com/electron/electron/releases/ Host to download Electron binaries from, if different from default Github releases site.
SASS_BINARY_SITE https://github.com/sass/node-sass/releases/ Host to download Saas binaries from, if different from default Github releases site.

There are also few recommended/optional variables to improve your build/development experience:

Name Value/Example Description
PLEXUS_BUILD_SKIP_DOTNET_TESTS true Disable integration tests for .Net components to decrease build time.
PLEXUS_BUILD_SKIP_WEB_TESTS true Disable integration tests for Javascript components to decrease build time.
GRADLE_USER_HOME C:\Home\Gradle Gradle stores cached packages in %USERPROFILE%\.gradle by default, often pointing to Roaming Profile. So it worth to use some local folder instead. Please also copy existing Gradle settings to new folder.
NUGET_PACKAGES C:\Home\NuGetGlobalPackages Nuget stores cached binaries in %USERPROFILE%\.nuget by default, often pointing to Roaming Profile. So it worth to use some local folder instead.
NPM_REGISTRY_INSTALL https://npm.registry.acme.com Can be used to replace default https://registry.npmjs.org with another registry/mirror to download NPM dependencies from.

Using OSX

If running on OSX, please update desktop/src/Plexus.Interop.sln file and remove any code block that starts with ProjectSection(ProjectDependencies) and ends with EndSection; if you have already executed the gradlew build once, you must cleanup your local checkout using git clean -d -f -X (add -n for a dry run).

Running Samples

After successful build samples binaries will be located in bin directory.

Run .Net to Web interop example on Windows:

  • Go to bin/win-x86/samples/greeting (or bin/osx-x64/samples/greeting for OSX/Linux)

  • Launch Broker โ€“ LaunchBroker.cmd (or LaunchBroker.sh for OSX/Linux)

  • Launch (from a different terminal) Greeting Client โ€“ LaunchGreetingClient.cmd

    • Choose โ€œDiscoveryโ€ option (5) and โ€œGreeting from Electron Web appโ€ from discovery response

    Sample-1

    • Enter name, e.g. โ€œJohnโ€ and hit enter โ€“ Web Greeting Server app will be launched by Broker, print Greeting Request:

    Sample-2

    • And send response back to .Net Greeting Client

    Sample-3

    • Then choose Discovery (5) and โ€œGreeting from .Net appโ€ from discovery response
    • Enter another name, e.g. โ€œMikeโ€ and hit enter - .Net Greeting Server app will be launched and print greeting request:

    Sample-4

Documentation

To check out docs, visit https://plexus.finos.org.

Documentation project is located in folder 'docs'. We build documentation using AsciiDoc.

To render diagrams during the build you need to have graphviz installed on the machine.

Invoke the following command to run the documentation build:

gradlew -p docs --console plain

After successful build documentation is available via:

bin/docs/html5/index.html

Contributing

  1. Fork it (https://github.com/finos/plexus-interop/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Read our contribution guidelines and Community Code of Conduct
  4. Commit your changes (git commit -am 'Add some fooBar')
  5. Push to the branch (git push origin feature/fooBar)
  6. Create a new Pull Request

NOTE: Commits and pull requests to FINOS repositories will only be accepted from those contributors with an active, executed Individual Contributor License Agreement (ICLA) with FINOS OR who are covered under an existing and active Corporate Contribution License Agreement (CCLA) executed with FINOS. Commits from individuals not covered under an ICLA or CCLA will be flagged and blocked by the FINOS Clabot tool. Please note that some CCLAs require individuals/employees to be explicitly named on the CCLA.

Need an ICLA? Unsure if you are covered under an existing CCLA? Email [email protected]

Troubleshooting

Problem: Gradle fails to download dependencies, how to setup proxy configuration?

Solution: Pass proxy settings into Gradle via command-line parameters - e.g. gradlew.bat -Dhttp.proxyHost=myproxy.com -Dhttp.proxyPort=8888 -Dhttps.proxyHost=myproxy.com -D https.proxyPort=4444 ...

Updating public documentation

As described above, public documentation is served using GitHub Pages and stored in gh-pages branch. So to update it, you simply need to push updated documentation to this branch. gh-pages branch structure is different from master, so manual update requires few steps:

  • Clone (if haven't cloned it yet) repository to plexus-interop folder
  • Clone another copy of repository to separate plexus-interop-docs folder, checkout gh-pages branch there
  • Create branch for documentation update, e.g. git checkout -b feature/gh-pages-update
  • Return back to folder with main line branch, build documentation gradlew build -p docs --console plain
  • Copy documentation sources - plexus-interop/docs to plexus-interop-docs/docs
  • Copy generated documentation - plexus-interop/bin/html5 to plexus-interop-docs (project root)
  • Go to plexus-interop-docs, push the changes and raise PR against gh-pages branch

License

The code in this repository is distributed under the Apache License, Version 2.0.

Copyright 2017-2019 Plexus Interop Deutsche Bank AG

More Repositories

1

perspective

A data visualization and analytics component, especially well-suited for large and/or streaming datasets.
C++
7,372
star
2

legend

The Legend project
Shell
797
star
3

jupyterlab_templates

Support for jupyter notebook templates in jupyterlab
Python
367
star
4

regular-table

A regular <table> library, for async and virtual data models.
JavaScript
318
star
5

FDC3

An open standard for the financial desktop.
HTML
176
star
6

waltz

Enterprise Information Service
Java
164
star
7

datahelix

The DataHelix generator allows you to quickly create data, based on a JSON profile that defines fields and the relationships between them, for the purpose of testing and validation
Java
139
star
8

OpenMAMA

OpenMAMA is an open source project that provides a high performance middleware agnostic messaging API that interfaces with a variety of proprietary and open source message oriented middleware systems.
C++
135
star
9

OSLC-handbook

A data store and handbook of practical information about complying with the most common open source licenses.
HTML
124
star
10

morphir

A universal language for business and technology
TypeScript
123
star
11

compliant-financial-infrastructure

Compliant Financial Infrastructure accelerates the development, deployment and adoption of services provided for AWS, Azure and Google in a way that meets existing regulatory and internal security controls.
122
star
12

TimeBase-CE

High performance time series database
Java
107
star
13

ipyregulartable

High performance, editable, stylable datagrids in jupyter and jupyterlab
JavaScript
99
star
14

common-domain-model

The CDM is a model for financial products, trades in those products, and the lifecycle events of those trades. It is an open source standard that aligns data, systems and processes and is available as code in multiple languages for easy implementation across technologies.
Java
93
star
15

datahub

DataHub - Synthetic data library
Python
80
star
16

legend-studio

Legend Studio
TypeScript
78
star
17

SymphonyElectron

A desktop client for the Symphony Collaboration Platform built using Electron
TypeScript
77
star
18

legend-engine

Legend Engine module
Java
69
star
19

git-proxy

Deploy custom push protections and policies on top of Git
JavaScript
67
star
20

legend-pure

Legend Pure module
Java
63
star
21

community

FINOS Community, Project and SIG wide collaboration space
JavaScript
58
star
22

spring-bot

Spring Boot + Java Integration for Symphony/Teams Chat Platform Bots and Apps
Java
54
star
23

SymphonyMediaBridge

The Symphony Media Bridge (SMB) is a media server application that handles audio, video and screen sharing media streams in an RTC conference system.
C++
51
star
24

CatchIT

Source code secret scanner
Python
50
star
25

devops-automation

Provide a continuous compliance and assurance approach to DevOps that mutually benefits banks, auditors and regulators whilst accelerating DevOps adoption in engineering and fintech IT departments.
JavaScript
50
star
26

open-developer-platform

Delivering open source software development best practices while enforcing security and legal compliance for the financial services industry .
Shell
49
star
27

cla-bot

cla-bot is a GitHub bot for automation of Contributor Licence Agreements (CLAs).
JavaScript
45
star
28

kdb

kdb+ Working Group from FINOS Data Technologies program
q
41
star
29

morphir-elm

Tools to work with the Morphir IR in Elm.
Elm
40
star
30

financial-objects

FINOS Financial Objects Program Documentation
JavaScript
38
star
31

legend-sdlc

Legend SDLC module
Java
34
star
32

tracdap

A next-generation data and analytics platform for use in highly regulated environments
Java
33
star
33

symphony-bdk-python

Symphony Python Bot Development Kit (BDK)
Python
31
star
34

greenkey-asrtoolkit

A collection of useful tools for handling speech recognition data
Python
30
star
35

FDC3-Sail

Open implementation of the FDC3 standard using Electron and an integrated App Directory.
TypeScript
29
star
36

open-regtech-sig

The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services.
28
star
37

open-source-readiness

Accelerate financial services firmsโ€™ journeys toward open source readiness, by advancing the readiness of participantsโ€™ firms and informing guidance for the broader industry in the form of white papers, presentations, and blog posts.
JavaScript
28
star
38

vuu

Vuu - an open source view server and html 5 based UI system
TypeScript
27
star
39

morphir-examples

Elm
26
star
40

traderX

TypeScript
26
star
41

software-project-blueprint

Project blueprint for Fintech Open Source Foundation hosted projects.
JavaScript
26
star
42

InnerSource

The FINOS InnerSource SIG is a community of people implementing, or interested in implementing, InnerSource within their financial services organization.
JavaScript
26
star
43

finos-landscape

FINOS Project Landscape
Shell
25
star
44

voice-metadata-standard

This is a project from FINOS Voice program to define a standard for call metadata.
25
star
45

JCurl

JSON-aware curl (1) in Java
Java
24
star
46

secref-data

Security Reference Data project
JavaScript
24
star
47

fdc3-desktop-agent

Chrome Extension implementation of an FDC3 Desktop Agent
TypeScript
22
star
48

morphir-jvm

Tools to work with the Morphir IR on/using the JVM.
Scala
22
star
49

zenith

Create a space where expertise can be identified and implemented to help the fintech ecosystem understand and adopt new technologies through the exploration and creation of common understanding.
HTML
22
star
50

symphony-bdk-java

The Symphony BDK (Bot Developer Kit) for Java helps you to create production-grade Chat Bots and Extension Applications on top of the Symphony REST APIs.
Java
21
star
51

legend-shared

Legend Shared module
Java
21
star
52

a11y-theme-builder

DesignOps toolchain theme builder for accessibility inclusion using Atomic Design.
TypeScript
21
star
53

glue

Glue is an enterprise data model for the buy side, tailored for Wealth and Asset Managers and covering key entities such as Party, Business Relationship, Investment Strategy, Instruments, Portfolios and more.
JavaScript
21
star
54

exodus

Migration tools for Tabular Data to Oracle JSON/Tabular Data
Scheme
19
star
55

common-cloud-controls

FINOS Common Cloud Controls
Gherkin
17
star
56

symphony-api-spec

Swagger definitions for Symphony LLC public REST API
Shell
16
star
57

greenkey-discovery-sdk

Speed up business workflows through custom 'voice skills' and text (NLP) interpreters
Python
14
star
58

reference-foss-policy

Reference FOSS Policy for Financial Services Institutions
13
star
59

branding

FINOS (Fintech Open Source Foundation) official branding resources
12
star
60

morphir-dotnet

F#
12
star
61

morphir-scala

Scala
11
star
62

FDC3-conformance-framework

A framework for testing whether desktop containers implement the FDC3 standard
TypeScript
11
star
63

metadata-tool

A command line tool for performing various tasks with Fintech Open Source Foundation (FINOS) metadata.
Clojure
11
star
64

secure-electron-adapter

JavaScript
11
star
65

messageml-utils

MessageML is a markup language used by the Symphony Agent API for representing messages, including formatting (bold, italic, numbered and unnumbered lists etc.) and entity data representing structured objects.
Java
11
star
66

generator-symphony

Yeoman based generator for Symphony Bots and Applications
JavaScript
10
star
67

finos.github.io

The source for the FINOS Project catalog
JavaScript
10
star
68

open-reg-tech-us-lcr

Open Reg Tech: US LCR
Elm
10
star
69

DEI-SIG

JavaScript
10
star
70

bot-github-chatops

A Symphony bot that uses ChatOps techniques to allow a firm employee to interact in a compliant manner with GitHub issues and PRs
Clojure
10
star
71

fdc3-dotnet

.NET Standard FDC3 declarations to implement concrete FDC3 compatible .NET desktop agents
C#
9
star
72

legend-depot

Legend Depot component
Java
9
star
73

finos-parent-pom

A Maven Parent POM that provide common build and release features using the Symphony Software Foundation Infrastructure
9
star
74

code-scanning

How to protect FINOS hosted projects from security threats and license compliance issues
Python
8
star
75

legend-community-delta

Combining best of open data standards with open source technologies
Jupyter Notebook
8
star
76

openfin-python-adapter

Hadouken python language adapter.
Python
7
star
77

osr-checklists

Checklists for key components and processes of open source programs
6
star
78

backplane

FDC3 Desktop Agent Bridge
C#
5
star
79

morphir-service

HTML
5
star
80

SwiftSearch

SwiftSearch is a plugin for SymphonyElectron
TypeScript
5
star
81

ScreenSnippet

Screen snippet utility for Windows.
C#
4
star
82

pylegend

pylegend
Python
4
star
83

certificate-toolbox

A collection of command-line tools to generate PKI Signing Certificates and X.509 Identity Certificates
Shell
4
star
84

technical-oversight-committee

๐Ÿ“‹ FINOS Technical Oversight Committee
4
star
85

cdm-object-builder

Object Builder
TypeScript
4
star
86

OpenMAMA-testdata

OpenMAMA Test Data
Batchfile
3
star
87

FDC3-Archive

3
star
88

curref-data

3
star
89

greenkey-intercom-sdk

Voice-enable your front-end apps with instant intercoms
JavaScript
3
star
90

calendar

FINOS Calendar
JavaScript
3
star
91

legend-engine-ide-lsp

Java
3
star
92

sea-quick-start

Quick start demo project for the Secure Electron Adapter
JavaScript
3
star
93

legend-juju-bundle

Juju bundle for all the FINOS Legend Charmed K8s Operators
Python
2
star
94

symphony-object

Structured Object Schemas
2
star
95

clabot-config

Organization-wide configuration for cla-bot
2
star
96

finos-deg

Repository for FINOS Decentralized Growth Program Documentation Site
JavaScript
2
star
97

morphir-bosque

2
star
98

symphony-wdk

Symphony Workflow Developer Kit (WDK), a bot capable of running workflows
Java
2
star
99

a11y-theme-builder-sdk

Collection of atomic design services for computing WCAG compliant code artifacts.
TypeScript
2
star
100

legend-integration-morphir

HTML
2
star