Skip to content

Commit bacc486

Browse files
committed
Make Remote Service Unit Connector as Open Source
Publish RSU connector as open source project under `Apache-2.0`. This is the initial contribution to RSU connector from Bosch Building Technologies. Contribution includes: - Remote Service Unit plug and play schema - Remote Service Unit Connector source code - Add header tools - Documentation Signed-off-by: Alwar Srinivas Mandyam Bhoolokam <[email protected]>
0 parents  commit bacc486

File tree

138 files changed

+28020
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+28020
-0
lines changed

.clang-format

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
BasedOnStyle: LLVM
2+
AccessModifierOffset: -4
3+
AlignAfterOpenBracket: Align
4+
AlignConsecutiveAssignments: true
5+
AlignOperands: true
6+
AlignTrailingComments: true
7+
AllowAllArgumentsOnNextLine: false
8+
AllowAllConstructorInitializersOnNextLine: false
9+
AllowAllParametersOfDeclarationOnNextLine: false
10+
AllowShortBlocksOnASingleLine: true
11+
AllowShortCaseLabelsOnASingleLine: false
12+
AllowShortFunctionsOnASingleLine: Inline
13+
AllowShortIfStatementsOnASingleLine: Never
14+
AllowShortLambdasOnASingleLine: All
15+
AllowShortLoopsOnASingleLine: false
16+
AlwaysBreakAfterReturnType: None
17+
AlwaysBreakTemplateDeclarations: MultiLine
18+
BinPackArguments: false
19+
BinPackParameters: false
20+
BreakBeforeBraces: Custom
21+
BraceWrapping:
22+
AfterCaseLabel: false
23+
AfterClass: true
24+
AfterStruct: true
25+
AfterControlStatement: true
26+
AfterEnum: true
27+
AfterFunction: true
28+
AfterNamespace: false
29+
AfterUnion: true
30+
BeforeCatch: true
31+
BeforeElse: true
32+
IndentBraces: false
33+
SplitEmptyFunction: false
34+
SplitEmptyRecord: false
35+
BreakBeforeBinaryOperators: None
36+
BreakBeforeTernaryOperators: true
37+
BreakConstructorInitializers: BeforeColon
38+
BreakInheritanceList: BeforeColon
39+
ColumnLimit: 120
40+
CompactNamespaces: true
41+
ConstructorInitializerAllOnOneLineOrOnePerLine: true
42+
ContinuationIndentWidth: 8
43+
FixNamespaceComments: true
44+
IndentCaseLabels: true
45+
IndentPPDirectives: None
46+
IndentWidth: 4
47+
KeepEmptyLinesAtTheStartOfBlocks: true
48+
MaxEmptyLinesToKeep: 2
49+
NamespaceIndentation: None
50+
ObjCSpaceAfterProperty: false
51+
ObjCSpaceBeforeProtocolList: true
52+
PenaltyReturnTypeOnItsOwnLine: 1000
53+
PointerAlignment: Left
54+
ReflowComments: false
55+
SortIncludes: false
56+
SpaceAfterCStyleCast: false
57+
SpaceAfterLogicalNot: false
58+
SpaceAfterTemplateKeyword: false
59+
SpaceBeforeAssignmentOperators: true
60+
SpaceBeforeCpp11BracedList: false
61+
SpaceBeforeCtorInitializerColon: true
62+
SpaceBeforeInheritanceColon: true
63+
SpaceBeforeParens: ControlStatements
64+
SpaceBeforeRangeBasedForLoopColon: true
65+
SpaceInEmptyParentheses: false
66+
SpacesBeforeTrailingComments: 1
67+
SpacesInAngles: false
68+
SpacesInCStyleCastParentheses: false
69+
SpacesInContainerLiterals: false
70+
SpacesInParentheses: true
71+
SpacesInSquareBrackets: false
72+
TabWidth: 4
73+
UseTab: Never

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
remote-service-unit/build*/
2+
!.vscode/settings.json
3+
!.vscode/launch.json
4+
!.vscode/tasks.json
5+
.DS_Store

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "src/external/doctest"]
2+
path = src/external/doctest
3+
url = https://github.com/onqtam/doctest.git

CONTRIBUTING.md

+130
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
# Contributing to RSU Connector
2+
3+
Want to contribute? That's great! Any contribution is welcome, e.g.
4+
documentation, bug reports, feature request, issues, blog posts,
5+
tutorials, feature implementations, etc. You can contribute code or
6+
documentation through the standard GitHub pull request model. For large
7+
contributions we do encourage you to file a ticket in the GitHub issue
8+
tracking system prior to any development to coordinate with the RSU connector
9+
development team early in the process. Coordinating up front helps to
10+
avoid frustration later on.
11+
12+
## Contribution Guideline
13+
14+
* We use the GitHub [issue tracker](../../issues) and the [github-flow](https://docs.github.com/en/get-started/quickstart/github-flow) branching model.
15+
16+
* When you want to submit a patch, you must [sign your commits](#sign-your-work).
17+
18+
* Your contribution must be licensed under the `Apache-2.0` license, the license used by this project.
19+
20+
* When submitting a pull-request to the project, please note / ensure the following:
21+
22+
0. [Update](#maintain-copyright-holder-contributor-list) the [NOTICE](NOTICE) file as part of your first pull-request.
23+
1. If possible, keep the changes small and simple which makes the review process easier.
24+
2. [Add / retain copyright notices](#add-retain-copyright-notices).
25+
3. Document the code by using C++ comments for descriptions
26+
4. Follow these [guidelines](https://chris.beams.io/posts/git-commit/) on how to write a good **commit** message. If available, include the ticket number. And don't forget the [Signed-Off-By](#sign-your-work) line.
27+
5. Create a pull request against the `main` branch.
28+
29+
## Legal stuff
30+
31+
### Add / retain copyright notices
32+
33+
Include a copyright notice and license consistent with the style used by this project. If your contribution contains code under the copyright of a third party, document its origin, license, and copyright holders.
34+
35+
### Sign your work
36+
37+
This project also tracks patch provenance and licensing using the Developer Certificate of Origin and Signed-off-by tags initially developed by the Linux kernel project.
38+
39+
```text
40+
Developer Certificate of Origin
41+
Version 1.1
42+
43+
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
44+
1 Letterman Drive
45+
Suite D4700
46+
San Francisco, CA, 94129
47+
48+
Everyone is permitted to copy and distribute verbatim copies of this
49+
license document, but changing it is not allowed.
50+
51+
52+
Developer's Certificate of Origin 1.1
53+
54+
By making a contribution to this project, I certify that:
55+
56+
(a) The contribution was created in whole or in part by me and I
57+
have the right to submit it under the open source license
58+
indicated in the file; or
59+
60+
(b) The contribution is based upon previous work that, to the best
61+
of my knowledge, is covered under an appropriate open source
62+
license and I have the right under that license to submit that
63+
work with modifications, whether created in whole or in part
64+
by me, under the same open source license (unless I am
65+
permitted to submit under a different license), as indicated
66+
in the file; or
67+
68+
(c) The contribution was provided directly to me by some other
69+
person who certified (a), (b) or (c) and I have not modified
70+
it.
71+
72+
(d) I understand and agree that this project and the contribution
73+
are public and that a record of the contribution (including all
74+
personal information I submit with it, including my sign-off) is
75+
maintained indefinitely and may be redistributed consistent with
76+
this project or the open source license(s) involved.
77+
```
78+
79+
With the sign-off in a commit message you certify that you authored the
80+
patch or otherwise have the right to submit it under an open source
81+
license. The procedure is simple: To certify above Developer's
82+
Certificate of Origin 1.1 for your contribution just append a line
83+
84+
```text
85+
Signed-off-by: Random J Developer <[email protected]>
86+
```
87+
88+
to every commit message using your real name or your pseudonym and a valid
89+
email address.
90+
91+
If you have set your `user.name` and `user.email` git configs you can
92+
automatically sign the commit by running the git-commit command with the
93+
`-s` option. There may be multiple sign-offs if more than one developer
94+
was involved in authoring the contribution.
95+
96+
For a more detailed description of this procedure, please see
97+
[SubmittingPatches][] which was extracted from the Linux kernel project,
98+
and which is stored in an external repository.
99+
100+
### Individual vs. Corporate Contributors
101+
102+
Often employers or academic institution have ownership over code that is
103+
written in certain circumstances, so please do due diligence to ensure that
104+
you have the right to submit the code.
105+
106+
If you are a developer who is authorized to contribute to RSU Connector on behalf of
107+
your employer, then please use your corporate email address in the
108+
Signed-off-by tag, otherwise use a personal email address.
109+
110+
### Maintain Copyright holder / Contributor list
111+
112+
Each contributor is responsible for identifying themselves in the NOTICE
113+
file, the project's list of copyright holders and authors. Please add
114+
the respective information corresponding to the Signed-off-by tag as
115+
part of your first pull request.
116+
117+
If you are a developer who is authorized to contribute to RSU Connector on
118+
behalf of your employer, then add your company / organization to the
119+
list of copyright holders in the NOTICE file. As author of a corporate
120+
contribution you can also add your name and corporate email address as
121+
in the Signed-off-by tag.
122+
123+
If your contribution is covered by this project's DCO's clause "(c) The
124+
contribution was provided directly to me by some other person who
125+
certified (a), (b) or (c) and I have not modified it", please add the
126+
appropriate copyright holder(s) to the NOTICE file as part of your
127+
contribution.
128+
129+
[SubmittingPatches]:
130+
https://github.com/wking/signed-off-by/blob/7d71be37194df05c349157a2161c7534feaf86a4/Documentation/SubmittingPatches

Dockerfile

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Ubunto 18.04 base image
2+
FROM ubuntu:18.04
3+
4+
RUN apt-get update -y
5+
RUN apt-get upgrade -y
6+
7+
# Upgrade cmake to latest version
8+
RUN apt purge --auto-remove cmake
9+
RUN apt-get install -y software-properties-common
10+
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null
11+
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 6AF7F09730B3F0A4
12+
RUN apt-add-repository 'deb https://apt.kitware.com/ubuntu/ bionic main'
13+
RUN apt-get update -y
14+
15+
# Install required dependencies
16+
RUN apt-get install -y \
17+
cmake \
18+
build-essential \
19+
ccache \
20+
g++ \
21+
gettext \
22+
libncurses5-dev \
23+
libelf-dev \
24+
libssl-dev \
25+
wget \
26+
unzip \
27+
cmake \
28+
git \
29+
gawk \
30+
file \
31+
rsync \
32+
python3-pip \
33+
python2.7 \
34+
python-pip
35+
36+
RUN pip3 install gcovr
37+
38+
# Declare environment variables
39+
ENV rsuConnectorDir=/rsu-connector-src
40+
ENV rsuConnectorSourceDir=/rsu-connector-src/src
41+
ENV externalDir=/rsu-connector-src/external
42+
ENV openwrtDir=/openwrt
43+
ENV openwrtSource=https://github.com/TDT-AG/openwrt.git
44+
ENV openwrtCommitId=3f5fecfd33d4c1c0bc96b790549ec7dc91e57781
45+
ENV srcConfigMips=/rsu-connector-src/openwrt/openwrt.config-mips
46+
ENV srcConfigX86=/rsu-connector-src/openwrt/openwrt.config-x86_64
47+
ENV srcFeeds=/rsu-connector-src/openwrt/feeds.conf
48+
ENV patches=/rsu-connector-src/openwrt/patches
49+
ENV disable.coverage.autogenerate='true'
50+
ENV buildUser=builduser
51+
52+
# Add user for building the source code
53+
RUN useradd -ms /bin/bash $buildUser
54+
55+
# Create openWRT folder
56+
RUN mkdir $openwrtDir
57+
58+
# Copy the RSU connector source code
59+
COPY . $rsuConnectorDir
60+
61+
# Make builduser the owner of folders
62+
RUN chown -R $buildUser: $rsuConnectorDir
63+
RUN chown -R $buildUser: $openwrtDir
64+
65+
USER $buildUser
66+
67+
#CMD [/bin/sh]

0 commit comments

Comments
 (0)