-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
merging java end-to-end example #1308
Merged
gguuss
merged 6 commits into
GoogleCloudPlatform:master
from
munkhuushmgl:merging-java-e2e-example
Jan 3, 2019
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
3134d49
merging java end-to-end example
munkhuushmgl bc35b6f
Merge branch 'master' into merging-java-e2e-example
munkhuushmgl fdb17f2
merging java end-to-end example
munkhuushmgl 78a28af
fixed merge conflicts
munkhuushmgl 05fe3a7
fixed nits
munkhuushmgl 971e536
Merge branch 'master' into merging-java-e2e-example
munkhuushmgl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
# Google Cloud IoT Core Java Samples | ||
|
||
<a href="https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/GoogleCloudPlatform/java-docs-samples&page=editor&open_in_editor=iot/api-client/manager/README.md"> | ||
<img alt="Open in Cloud Shell" src ="http://gstatic.com/cloudssh/images/open-btn.png"></a> | ||
|
||
This directory contains samples for Google Cloud IoT Core. [Google Cloud IoT Core](https://cloud.google.com/iot/docs/ "Google Cloud IoT Core") allows developers to easily integrate Publish and Subscribe functionality with devices and programmatically manage device authorization. | ||
|
||
## Prerequisites | ||
|
||
### Java | ||
|
||
We recommend using [Java 8 JDK](https://java.com/en/download) for this example. | ||
|
||
### Download Maven | ||
|
||
These samples use the [Apache Maven][maven] build system. Before getting | ||
started, be sure to [download][maven-download] and [install][maven-install] it. | ||
When you use Maven as described here, it will automatically download the needed | ||
client libraries. | ||
|
||
[maven]: https://maven.apache.org | ||
[maven-download]: https://maven.apache.org/download.cgi | ||
[maven-install]: https://maven.apache.org/install.html | ||
|
||
### Create a Project in the Google Cloud Platform Console | ||
|
||
If you haven't already created a project, create one now. Projects enable you to | ||
manage all Google Cloud Platform resources for your app, including deployment, | ||
access control, billing, and services. | ||
|
||
1. Open the [Cloud Platform Console][cloud-console]. | ||
2. In the drop-down menu at the top, select **Create a project**. | ||
3. Give your project a name. | ||
4. Make a note of the project ID, which might be different from the project | ||
name. The project ID is used in commands and in configurations. | ||
|
||
[cloud-console]: https://console.cloud.google.com/ | ||
|
||
## Setup | ||
|
||
Note that before you can run the sample, you must configure a Google Cloud | ||
PubSub topic for Cloud IoT as described in [the parent README](../README.md). | ||
|
||
Before running the samples, you can set the `GOOGLE_CLOUD_PROJECT` and | ||
`GOOGLE_APPLICATION_CREDENTIALS` environment variables to avoid passing them to | ||
the sample every time you run it. | ||
|
||
For example, on most *nix systems you can do this as: | ||
|
||
export GOOGLE_CLOUD_PROJECT=your-project-id | ||
export GOOGLE_APPLICATION_CREDENTIALS="/home/user/Downloads/[FILE_NAME].json" | ||
|
||
|
||
### Authentication | ||
|
||
This sample requires you to have authentication setup. Refer to the [Authentication Getting Started Guide](https://cloud.google.com/docs/authentication/getting-started "Google Cloud IoT Core") for instructions on setting up credentials for applications. | ||
|
||
Run the following command to install the libraries and build the sample with Maven: | ||
|
||
mvn clean compile assembly:single | ||
|
||
|
||
Before you begin, you will need to create the Google Cloud PubSub message queue, create a subscription to it, create a device registry, and add a device to the registry. | ||
|
||
1. Create the PubSub topic as: | ||
|
||
gcloud pubsub topics create java-e2e | ||
|
||
2. Create the subscription: | ||
|
||
gcloud pubsub subscriptions create java-e2e-sub --topic=java-e2e | ||
|
||
3. Create the device registry: | ||
|
||
gcloud iot registries create java-ed2e-registry --event-notification-config=topic=java-e2e --region=us-central1 | ||
|
||
4. Run the `generate_keys.sh` shell script: | ||
|
||
../generate_keys.sh | ||
|
||
5. Add a device to the registry using the keys you generated: | ||
|
||
gcloud iot devices create device-id --registry=java-ed2e-sub --region=us-central1 --public-key=path=./rsa_cert.pem,type=RS256 | ||
|
||
|
||
## Samples | ||
|
||
### Server | ||
|
||
<a href="https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/GoogleCloudPlatform/java-docs-samples&page=editor&open_in_editor=iot/api-client/manager/README.md"> | ||
<img alt="Open in Cloud Shell" src ="http://gstatic.com/cloudssh/images/open-btn.png"></a> | ||
|
||
To run this sample: | ||
|
||
mvn exec:java \ | ||
-Dexec.mainClass="com.example.cloud.iot.endtoend.CloudiotPubsubExampleServer" \ | ||
-Dexec.args="-project_id=<your-iot-project> \ | ||
-pubsub_subscription=<your-pubsub-subscription>" | ||
|
||
### Device | ||
|
||
<a href="https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/GoogleCloudPlatform/java-docs-samples&page=editor&open_in_editor=iot/api-client/manager/README.md"> | ||
<img alt="Open in Cloud Shell" src ="http://gstatic.com/cloudssh/images/open-btn.png"></a> | ||
|
||
To run this sample: | ||
|
||
mvn exec:java \ | ||
-Dexec.mainClass="com.example.cloud.iot.endtoend.CloudiotPubsubExampleMqttDevice" \ | ||
-Dexec.args="-project_id=<your-iot-project> \ | ||
-registry_id=<your-registry-id> \ | ||
-device_id=<device-id> \ | ||
-private_key_file=<path-to-keyfile> \ | ||
-algorithm=<RS256|ES256>" | ||
|
||
For example, if your project ID is `blue-jet-123`, your device registry id is | ||
`my-registry`, your device id is `my-device` and you have generated your | ||
credentials using the [`generate_keys.sh`](../generate_keys.sh) script | ||
provided in the parent folder, you can run the sample as: | ||
|
||
mvn exec:java \ | ||
-Dexec.mainClass="com.example.cloud.iot.endtoend.CloudiotPubsubExampleMqttDevice" \ | ||
-Dexec.args="-project_id=blue-jet-123 \ | ||
-registry_id=my-registry \ | ||
-device_id=my-device \ | ||
-private_key_file=../rsa_private_pkcs8 \ | ||
-algorithm=RS256" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
<!-- | ||
Copyright 2018 Google Inc. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.example.cloud</groupId> | ||
<artifactId>cloudiot-manager-demo</artifactId> | ||
<packaging>jar</packaging> | ||
<version>1.0</version> | ||
<name>cloudiot-manager-demo</name> | ||
<url>http://maven.apache.org</url> | ||
|
||
<!-- | ||
The parent pom defines common style checks and testing strategies for our samples. | ||
Removing or replacing it should not affect the execution of the samples in anyway. | ||
--> | ||
<parent> | ||
<groupId>com.google.cloud.samples</groupId> | ||
<artifactId>shared-configuration</artifactId> | ||
<version>1.0.9</version> | ||
</parent> | ||
<properties> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.eclipse.paho</groupId> | ||
<artifactId>org.eclipse.paho.client.mqttv3</artifactId> | ||
<version>1.2.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.json</groupId> | ||
<artifactId>json</artifactId> | ||
<version>20090211</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.jsonwebtoken</groupId> | ||
<artifactId>jjwt</artifactId> | ||
<version>0.7.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>joda-time</groupId> | ||
<artifactId>joda-time</artifactId> | ||
<version>2.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.apis</groupId> | ||
<artifactId>google-api-services-cloudiot</artifactId> | ||
<version>v1-rev20181120-1.27.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.cloud</groupId> | ||
<artifactId>google-cloud-pubsub</artifactId> | ||
<version>1.53.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.oauth-client</groupId> | ||
<artifactId>google-oauth-client</artifactId> | ||
<version>1.23.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>23.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.api-client</groupId> | ||
<artifactId>google-api-client</artifactId> | ||
<version>1.23.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-cli</groupId> | ||
<artifactId>commons-cli</artifactId> | ||
<version>1.3</version> | ||
</dependency> | ||
|
||
<!-- Test dependencies --> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.12</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.truth</groupId> | ||
<artifactId>truth</artifactId> | ||
<version>0.34</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<configuration> | ||
<archive> | ||
<manifest> | ||
<mainClass>com.example.cloudiot.Manage</mainClass> | ||
</manifest> | ||
</archive> | ||
<descriptorRefs> | ||
<descriptorRef>jar-with-dependencies</descriptorRef> | ||
</descriptorRefs> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change to 2019 here and in other new files