Coder Social home page Coder Social logo

osswangxining / iotplatform Goto Github PK

View Code? Open in Web Editor NEW
122.0 12.0 62.0 1.75 MB

An open-source IoT platform that enables rapid development, management and scaling of IoT projects. With this IoT platform, you are able to: 1) Provision and control devices, 2) Collect and visualize data from devices, 3) Analyze device data and trigger alarms, 4) Deliver device data to other systems, 5) Enable use-case specific features using customizable rules and plugins.

Home Page: https://osswangxining.github.io/

License: Apache License 2.0

Java 44.38% JavaScript 41.91% HTML 10.98% CSS 2.61% TSQL 0.12%
iot iot-platform device-gateway device-registry sdk rule-engine analytics iot-framework iot-gateway iothub

iotplatform's Introduction

IoT Platform

An open-source IoT platform that enables rapid development, management and scaling of IoT projects. With this IoT platform, you are able to:

    1. Provision and control devices,
    1. Collect and visualize data from devices,
    1. Analyze device data and trigger alarms,
    1. Deliver device data to other systems,
    1. Enable use-case specific features using customizable rules and plugins.

Archicteture

IoT Device SDK

This IoT Platform provides an SDK to help you easily and quickly connect your hardware device or your mobile application. This IoT Device SDK enables your devices to connect, authenticate, and exchange messages with this IoT Platform using the MQTT, HTTP, or WebSockets protocols. The Device SDK supports Java/JavaScript, and includes the client libraries, the developer guide, and the porting guide for manufacturers. You can also use an open source alternative or write your own SDK.

Device Gateway

IoT Device Gateway enables devices to securely and efficiently communicate with this IoT Platofrm. The Device Gateway can exchange messages using a publication/subscription model, which enables one-to-one and one-to-many communications. With this one-to-many communication pattern, IoT Platform makes it possible for a connected device to broadcast data to multiple subscribers for a given topic. The Device Gateway supports MQTT, WebSockets, and HTTP 1.1 protocols. The Device Gateway scales automatically to support over a billion devices without provisioning infrastructure.

Authentication and Authorization

This provides mutual authentication and encryption at all points of connection, so that data is never exchanged between devices and IoT Platform without proven identity. X.509 certificate based authentication is supported.

Device Registry

The Device Registry establishes an identity for devices and tracks metadata such as the devices’ attributes and capabilities. The Registry assigns a unique identity to each device that is consistently formatted regardless of the type of device or how it connects. It also supports metadata that describes the capabilities of a device, for example whether a sensor reports temperature, and if the data are Fahrenheit or Celsius.

Device Shadow

Through this Device Shadow, you can create a persistent, virtual version, or “shadow,” of each device that includes the device’s latest state so that applications or other devices can read messages and interact with the device. The Device Shadows persist the last reported state and desired future state of each device even when the device is offline. You can retrieve the last reported state of a device or set a desired future state through the API or using the rules engine.

Device Shadows make it easier to build applications that interact with your devices by providing always available REST APIs. In addition, applications can set the desired future state of a device without accounting for the devices current state. Then it will compare the difference between the desired and last reported state, and command the device to make up the difference.

The IoT Device SDK makes it easy for your device to synchronize its state with its shadow, and to respond to desired future states set via the shadow.

IoT Analytics (Rule Engine and Advanced Analytics)

The Rules Engine makes it possible to build IoT applications that gather, process, analyze and act on data generated by connected devices at global scale without having to manage any infrastructure. The Rules Engine evaluates inbound messages published into IoT Platform and transforms and delivers them to another device or a cloud service, based on business rules you define. A rule can apply to data from one or many devices, and it can take one or many actions in parallel.

The Rules Engine can also route messages to external 3rd party cloud services, such as Amazon AWS cloud services, IBM or Azure cloud services, Aliyun cloud services,etc.

Besides these rule based analytics, this IoT Platform also provides the Advanced Analytics including complex and compound computation, Spark streaming based timewindow rules, Spark Machine Learning enabled analytics, etc.

  • Frequency Oftentimes, an application wants to control the frequency that continuously generated analytic results are made available to other parts of the application or published to other applications or an event hub.

High Performance

Actor model enables high performant concurrent processing of messages from devices as long as server-side API calls. Akka is used as an actor system implementation with following actor hierarchies.

Brief description of each actors functionality is listed below:

  • App Actor - responsible for management of tenant, system rules & plugins actors. Instance of this actor is always present in memory.
  • Tenant Actor - responsible for management of tenant device, rules & plugins actors. Instance of this actor is always present in memory.
  • Device Actor - maintain state of the device: active sessions, subscriptions, pending RPC commands, etc. Caches current device attributes in memory for performance reasons. Actor is created when first message from device is processed. Actor is stopped when there is no messages from devices for a certain time.
  • Rule Actor - filter and process incoming messages, converts them to actions and forward this actions to plugin actors. Instance of this actor is always present in memory.
  • Plugin Actor - process incoming messages, and report results back to rule actor. Also handles server side requests. Instance of this actor is always present in memory.
  • Device Session Manager Actor - responsible for management of device session actors. Creates session actors on first message with corresponding session id. Closes session actors when corresponding session is closed.
  • Session Actor - represents communication session between device and Thingsboard server. Session may be synchronous (HTTP, CoAP) and asynchronous (MQTT, CoAP with Observe option).
  • RPC Session Manager Actor - responsible for management of cluster RPC session actors. Creates session actor when new server is up. Closes session actor when server is down.
  • RPC Session Actor - represents communication session between two Thingsboard servers in the cluster mode. Communication is done using HTTP/2 based on gRPC.

High Availability

Service Discovery

This IoT Platform uses Zookeeper for service discovery, where all the nodes are identical and registered as ephemeral in Zookeeper. Apache Curator path cache receipt is used to keep track of all available sibling nodes.

Consistent Hashing

This IoT Platform adopts consistent hashing to ensure scalability and availability. Message from Device A that is received on particular node may be forwarded to the other node based on the hash of the device ID. Although this introduce certain networking overhead, it allows to process all messages from particular device using corresponding device actor on a determined server, which introduce following advantages:

  • improve cache hit rate. Device attributes and other device related data are fetched by device actor on a specific server.
  • avoid race conditions. All messages for particular device are processed on a determined server.
  • allows to target server-side api calls based on device id.

Setup

maven clean

maven install

INFO] Reactor Summary:
[INFO] 
[INFO] Whole IoT Platform ................................. SUCCESS [  0.650 s]
[INFO] IoT Information Management ......................... SUCCESS [  0.203 s]
[INFO] IoT Information Management - Data .................. SUCCESS [  0.730 s]
[INFO] IoT Information Management - DAO ................... SUCCESS [  0.734 s]
[INFO] Rule based IoT Analytics ........................... SUCCESS [  0.006 s]
[INFO] Rule Engine Common Messages ........................ SUCCESS [  0.125 s]
[INFO] Rule Engine API .................................... SUCCESS [  0.272 s]
[INFO] Rule Engine Core Extensions ........................ SUCCESS [  0.342 s]
[INFO] Action Plugins ..................................... SUCCESS [  0.006 s]
[INFO] Kafka Plugin ....................................... SUCCESS [  2.126 s]
[INFO] MQTT Plugin ........................................ SUCCESS [  0.132 s]
[INFO] Webhook Plugin ..................................... SUCCESS [  0.476 s]
[INFO] IoT Hub ............................................ SUCCESS [  0.553 s]
[INFO] IoT Platform UI .................................... SUCCESS [02:14 min]
[INFO] IoT Platform Server ................................ SUCCESS [  0.730 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 02:22 min
[INFO] Finished at: 2017-10-22T21:16:41+08:00
[INFO] Final Memory: 42M/625M
[INFO] -----------------------------------------------------------

Keep Kafka and Cassandra running

xis-macbook-pro:~ xiningwang$ docker ps
CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                                                                                                      NAMES
8b0def0e1594        cassandra           "/docker-entrypoin..."   3 months ago        Up 7 seconds        0.0.0.0:7000-7001->7000-7001/tcp, 0.0.0.0:7199->7199/tcp, 0.0.0.0:9042->9042/tcp, 0.0.0.0:9160->9160/tcp   mycassandra
a6975c6bf0c2        spotify/kafka       "supervisord -n"         3 months ago        Up 14 seconds       0.0.0.0:2181->2181/tcp, 0.0.0.0:9092->9092/tcp

Licenses

This project is released under Apache 2.0 License. This open source project is based on several other open source projects or libraries, and free for experiments (no any commercial support) with Apache License, Version 2.0. Notice: ThingsBoard project (https://github.com/thingsboard/thingsboard) is the original idea for this project.

iotplatform's People

Contributors

osswangxining avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

iotplatform's Issues

Dependency org.apache.httpcomponents:httpclient, leading to CVE problem

Hi, In iotplatform/iot-action-plugins/plugin-webhook,there is a dependency org.apache.httpcomponents:httpclient:4.5.3 that calls the risk method.

CVE-2020-13956

The scope of this CVE affected version is [,4.5.13)

After further analysis, in this project, the main Api called is <org.apache.http.client.utils.URIUtils: org.apache.http.HttpHost extractHost(java.net.URI)>

Risk method repair link : GitHub

CVE Bug Invocation Path--

Path Length : 7

<org.apache.http.client.utils.URIUtils: org.apache.http.HttpHost extractHost(java.net.URI)>
at <org.apache.http.impl.client.CloseableHttpClient: org.apache.http.HttpHost determineTarget(org.apache.http.client.methods.HttpUriRequest)> (org.apache.http.impl.client.CloseableHttpClient.java:[93]) in /.m2/repository/org/apache/httpcomponents/httpclient/4.5.3/httpclient-4.5.3.jar
at <org.apache.http.impl.client.CloseableHttpClient: org.apache.http.client.methods.CloseableHttpResponse execute(org.apache.http.client.methods.HttpUriRequest,org.apache.http.protocol.HttpContext)> (org.apache.http.impl.client.CloseableHttpClient.java:[83]) in /.m2/repository/org/apache/httpcomponents/httpclient/4.5.3/httpclient-4.5.3.jar
at <org.apache.http.impl.client.CloseableHttpClient: org.apache.http.client.methods.CloseableHttpResponse execute(org.apache.http.client.methods.HttpUriRequest)> (org.apache.http.impl.client.CloseableHttpClient.java:[108]) in /.m2/repository/org/apache/httpcomponents/httpclient/4.5.3/httpclient-4.5.3.jar
at <org.apache.http.impl.client.CloseableHttpClient: org.apache.http.HttpResponse execute(org.apache.http.client.methods.HttpUriRequest)> (org.apache.http.impl.client.CloseableHttpClient.java:[56]) in /.m2/repository/org/apache/httpcomponents/httpclient/4.5.3/httpclient-4.5.3.jar
at <org.iotp.analytics.ruleengine.action.plugins.webhook.plugin.WebhookMsgHandler: org.springframework.http.ResponseEntity put(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)> (org.iotp.analytics.ruleengine.action.plugins.webhook.plugin.WebhookMsgHandler.java:[271]) in /detect/unzip/iotplatform-master/iot-action-plugins/plugin-webhook/target/classes
at <org.iotp.analytics.ruleengine.action.plugins.webhook.plugin.WebhookMsgHandler: void process(org.iotp.analytics.ruleengine.api.plugins.PluginContext,org.iotp.infomgt.data.id.TenantId,org.iotp.infomgt.data.id.RuleId,org.iotp.analytics.ruleengine.plugins.msg.RuleToPluginMsg)> (org.iotp.analytics.ruleengine.action.plugins.webhook.plugin.WebhookMsgHandler.java:[95]) in /detect/unzip/iotplatform-master/iot-action-plugins/plugin-webhook/target/classes

Dependency tree--

[INFO] org.iotp.action.plugins:plugin-webhook:jar:1.0.0
[INFO] +- ch.qos.logback:logback-core:jar:1.2.3:provided
[INFO] +- ch.qos.logback:logback-classic:jar:1.2.3:provided
[INFO] |  \- org.slf4j:slf4j-api:jar:1.7.7:provided
[INFO] +- org.springframework:spring-web:jar:4.3.4.RELEASE:provided
[INFO] |  +- org.springframework:spring-aop:jar:4.3.4.RELEASE:provided
[INFO] |  +- org.springframework:spring-beans:jar:4.3.4.RELEASE:provided
[INFO] |  +- org.springframework:spring-context:jar:4.3.4.RELEASE:provided
[INFO] |  |  \- org.springframework:spring-expression:jar:4.3.4.RELEASE:provided
[INFO] |  \- org.springframework:spring-core:jar:4.3.4.RELEASE:provided
[INFO] +- org.iotp.analytics.ruleengine:ruleengine-api:jar:1.0.0:provided
[INFO] |  +- org.iotp.infomgt:data:jar:1.0.0:provided
[INFO] |  |  +- org.slf4j:log4j-over-slf4j:jar:1.7.7:provided
[INFO] |  |  \- com.fasterxml.jackson.core:jackson-databind:jar:2.8.8.1:provided
[INFO] |  |     +- com.fasterxml.jackson.core:jackson-annotations:jar:2.8.0:provided
[INFO] |  |     \- com.fasterxml.jackson.core:jackson-core:jar:2.8.8:provided
[INFO] |  \- org.iotp.analytics.ruleengine:ruleengine-message:jar:1.0.0:provided
[INFO] +- org.iotp.analytics.ruleengine:ruleengine-core:jar:1.0.0:provided
[INFO] |  +- com.google.code.gson:gson:jar:2.6.2:provided
[INFO] |  \- javax.mail:mail:jar:1.4.3:provided
[INFO] |     \- javax.activation:activation:jar:1.1:provided
[INFO] +- org.apache.velocity:velocity:jar:1.7:provided
[INFO] |  +- commons-collections:commons-collections:jar:3.2.1:provided
[INFO] |  \- commons-lang:commons-lang:jar:2.4:provided
[INFO] +- org.apache.velocity:velocity-tools:jar:2.0:provided
[INFO] |  +- commons-beanutils:commons-beanutils:jar:1.7.0:provided
[INFO] |  +- commons-digester:commons-digester:jar:1.8:provided
[INFO] |  +- commons-chain:commons-chain:jar:1.1:provided
[INFO] |  +- commons-logging:commons-logging:jar:1.1:compile
[INFO] |  +- commons-validator:commons-validator:jar:1.5.0:provided
[INFO] |  +- oro:oro:jar:2.0.8:provided
[INFO] |  +- sslext:sslext:jar:1.2-0:provided
[INFO] |  +- org.apache.struts:struts-core:jar:1.3.8:provided
[INFO] |  +- org.apache.struts:struts-taglib:jar:1.3.8:provided
[INFO] |  \- org.apache.struts:struts-tiles:jar:1.3.8:provided
[INFO] +- org.apache.httpcomponents:httpclient:jar:4.5.3:compile
[INFO] |  +- org.apache.httpcomponents:httpcore:jar:4.4.6:compile
[INFO] |  \- commons-codec:commons-codec:jar:1.9:compile
[INFO] +- commons-io:commons-io:jar:2.5:compile
[INFO] \- org.projectlombok:lombok:jar:1.16.10:provided

Suggested solutions:

Update dependency version

Thank you very much.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.