Skip to content

Commit

Permalink
Added a first draft of maven support for Cpp driver base
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdutz committed Mar 25, 2019
1 parent e144909 commit 1c8ca9e
Show file tree
Hide file tree
Showing 4 changed files with 185 additions and 0 deletions.
47 changes: 47 additions & 0 deletions plc4cpp/protocols/driver-bases/base/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4cpp-protocols-driver-bases</artifactId>
<version>0.4.0-SNAPSHOT</version>
</parent>

<artifactId>plc4cpp-protocol-driver-base</artifactId>
<name>PLC4Cpp: Protocol: Driver-Base: Base</name>
<description>Base classes needed to implement all of the other driver bases.</description>

<build>
<!-- This is probably not required, however it helps IntelliJ detect the files as sources -->
<sourceDirectory>src/main/cpp</sourceDirectory>
</build>

<dependencies>
<dependency>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4cpp-api</artifactId>
<version>0.4.0-SNAPSHOT</version>
</dependency>
</dependencies>

</project>
58 changes: 58 additions & 0 deletions plc4cpp/protocols/driver-bases/base/src/main/cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
#[[
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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.
]]

cmake_minimum_required(VERSION 3.7)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)

add_library(api ../../src/main/cpp/org/apache/plc4x/cpp/base/connection/AbstractPlcConnection.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/connection/ChannelFactory.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/connection/DefaultPlcFieldHandler.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/connection/PlcFieldHandler.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/events/ConnectedEvent.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/events/ConnectEvent.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/items/BaseDefaultFieldItem.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/items/DefaultBigDecimalFieldItem.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/items/DefaultBigIntegerFieldItem.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/items/DefaultBooleanFieldItem.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/items/DefaultByteArrayFieldItem.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/items/DefaultByteFieldItem.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/items/DefaultDoubleFieldItem.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/DefaultPlcReadRequest.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/DefaultPlcWriteRequest.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/InternalPlcFieldRequest.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/InternalPlcFieldResponse.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/InternalPlcProprietaryRequest.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/InternalPlcProprietaryResponse.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/InternalPlcReadRequest.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/InternalPlcRequest.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/InternalPlcResponse.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/InternalPlcWriteRequest.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/PlcProprietaryRequest.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/PlcProprietaryResponse.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/PlcReader.cpp
../../src/main/cpp/org/apache/plc4x/cpp/base/messages/PlcWriter.cpp
)

#[[
Import the boost headers
]]
target_include_directories (api PUBLIC ../../../../../${boost.include-directory})

40 changes: 40 additions & 0 deletions plc4cpp/protocols/driver-bases/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4cpp-protocols</artifactId>
<version>0.4.0-SNAPSHOT</version>
</parent>

<artifactId>plc4cpp-protocols-driver-bases</artifactId>
<packaging>pom</packaging>

<name>PLC4Cpp: Protocols: Driver-Bases</name>
<description>Collection of base-types for implementing different types of drivers.</description>

<modules>
<module>base</module>
</modules>

</project>
40 changes: 40 additions & 0 deletions plc4cpp/protocols/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4cpp</artifactId>
<version>0.4.0-SNAPSHOT</version>
</parent>

<artifactId>plc4cpp-protocols</artifactId>
<packaging>pom</packaging>

<name>PLC4Cpp: Protocols</name>
<description>Wrapper project for all PLC4Cpp protocol implementations.</description>

<modules>
<module>driver-bases</module>
</modules>

</project>

0 comments on commit 1c8ca9e

Please sign in to comment.