summaryrefslogtreecommitdiff
path: root/org.genivi.commonapi.core.verification/src/stub
diff options
context:
space:
mode:
Diffstat (limited to 'org.genivi.commonapi.core.verification/src/stub')
-rw-r--r--org.genivi.commonapi.core.verification/src/stub/PFComplexStub.cpp3
-rw-r--r--org.genivi.commonapi.core.verification/src/stub/PFComplexStub.h3
-rw-r--r--org.genivi.commonapi.core.verification/src/stub/PFPrimitiveStub.cpp3
-rw-r--r--org.genivi.commonapi.core.verification/src/stub/PFPrimitiveStub.h3
-rw-r--r--org.genivi.commonapi.core.verification/src/stub/StabControlStub.cpp58
-rw-r--r--org.genivi.commonapi.core.verification/src/stub/StabControlStub.h45
-rw-r--r--org.genivi.commonapi.core.verification/src/stub/StabilityMPStub.cpp48
-rw-r--r--org.genivi.commonapi.core.verification/src/stub/StabilityMPStub.h35
-rw-r--r--org.genivi.commonapi.core.verification/src/stub/StabilitySPStub.cpp1
-rw-r--r--org.genivi.commonapi.core.verification/src/stub/StabilitySPStub.h1
10 files changed, 4 insertions, 196 deletions
diff --git a/org.genivi.commonapi.core.verification/src/stub/PFComplexStub.cpp b/org.genivi.commonapi.core.verification/src/stub/PFComplexStub.cpp
index 9a4e64d..fa70170 100644
--- a/org.genivi.commonapi.core.verification/src/stub/PFComplexStub.cpp
+++ b/org.genivi.commonapi.core.verification/src/stub/PFComplexStub.cpp
@@ -1,5 +1,4 @@
-/* Copyright (C) 2015 Mentor Graphics
- * Author: Felix Scherzinger (felix_scherzinger@mentor.com)
+/* Copyright (C) 2015 BMW Group
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
diff --git a/org.genivi.commonapi.core.verification/src/stub/PFComplexStub.h b/org.genivi.commonapi.core.verification/src/stub/PFComplexStub.h
index e261911..626b975 100644
--- a/org.genivi.commonapi.core.verification/src/stub/PFComplexStub.h
+++ b/org.genivi.commonapi.core.verification/src/stub/PFComplexStub.h
@@ -1,5 +1,4 @@
-/* Copyright (C) 2015 Mentor Graphics
- * Author: Felix Scherzinger (felix_scherzinger@mentor.com)
+/* Copyright (C) 2015 BMW Group
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
diff --git a/org.genivi.commonapi.core.verification/src/stub/PFPrimitiveStub.cpp b/org.genivi.commonapi.core.verification/src/stub/PFPrimitiveStub.cpp
index 107d04b..1769ed5 100644
--- a/org.genivi.commonapi.core.verification/src/stub/PFPrimitiveStub.cpp
+++ b/org.genivi.commonapi.core.verification/src/stub/PFPrimitiveStub.cpp
@@ -1,5 +1,4 @@
-/* Copyright (C) 2015 Mentor Graphics
- * Author: Felix Scherzinger (felix_scherzinger@mentor.com)
+/* Copyright (C) 2015 BMW Group
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
diff --git a/org.genivi.commonapi.core.verification/src/stub/PFPrimitiveStub.h b/org.genivi.commonapi.core.verification/src/stub/PFPrimitiveStub.h
index f6595f6..aa934d4 100644
--- a/org.genivi.commonapi.core.verification/src/stub/PFPrimitiveStub.h
+++ b/org.genivi.commonapi.core.verification/src/stub/PFPrimitiveStub.h
@@ -1,5 +1,4 @@
-/* Copyright (C) 2015 Mentor Graphics
- * Author: Felix Scherzinger (felix_scherzinger@mentor.com)
+/* Copyright (C) 2015 BMW Group
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
diff --git a/org.genivi.commonapi.core.verification/src/stub/StabControlStub.cpp b/org.genivi.commonapi.core.verification/src/stub/StabControlStub.cpp
deleted file mode 100644
index b512e70..0000000
--- a/org.genivi.commonapi.core.verification/src/stub/StabControlStub.cpp
+++ /dev/null
@@ -1,58 +0,0 @@
-/* Copyright (C) 2015 BMW Group
- * Author: JP Ikaheimonen (jp_ikaheimonen@mentor.com)
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-#include <iostream>
-#include "StabControlStub.h"
-
-#ifndef WIN32
-#include <unistd.h>
-#endif
-
-namespace v1_0 {
-namespace commonapi {
-namespace stability {
-namespace mp {
-
-using namespace v1_0::commonapi::stability::mp;
-
-StabControlStub::StabControlStub() {
-}
-
-StabControlStub::~StabControlStub() {
-}
-
-CommandListener StabControlStub::listener_ = 0;
-
-
-void StabControlStub::controlMethod(const std::shared_ptr<CommonAPI::ClientId> clientId,
- uint8_t id,
- uint32_t data,
- controlMethodReply_t _reply)
-{
- // client sends commands and responses through this interface.
- // call the listener with the data.
- uint8_t command;
- uint32_t min;
- uint32_t max;
-
- if (StabControlStub::listener_) {
- StabControlStub::listener_(id, data, command, min, max);
- }
- _reply(command, min, max);
-
-}
-
-void StabControlStub::registerListener(CommandListener listener ) {
- StabControlStub::listener_ = listener;
-}
-
-} /* namespace v1_0 */
-} /* namespace mp */
-} /* namespace stability */
-} /* namespace commonapi */
-
-
-
diff --git a/org.genivi.commonapi.core.verification/src/stub/StabControlStub.h b/org.genivi.commonapi.core.verification/src/stub/StabControlStub.h
deleted file mode 100644
index 7b844a4..0000000
--- a/org.genivi.commonapi.core.verification/src/stub/StabControlStub.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/* Copyright (C) 2014 BMW Group
- * Author: JP Ikaheimonen (jp_ikaheimonen@mentor.com)
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-#ifndef STABCONTROLSTUB_H_
-#define STABCONTROLSTUB_H_
-
-#include "v1_0/commonapi/stability/mp/ControlInterfaceStubDefault.hpp"
-#include "v1_0/commonapi/stability/mp/ControlInterface.hpp"
-
-namespace v1_0 {
-namespace commonapi {
-namespace stability {
-namespace mp {
-
-using namespace v1_0::commonapi::stability::mp;
-
-typedef std::function<void (uint8_t id, uint32_t data, uint8_t& command, uint32_t& data1, uint32_t &data2)> CommandListener;
-
-class StabControlStub : public ControlInterfaceStubDefault {
-
-public:
- StabControlStub();
- virtual ~StabControlStub();
-
- virtual void controlMethod(const std::shared_ptr<CommonAPI::ClientId> clientId,
- uint8_t id,
- uint32_t data,
- controlMethodReply_t _reply);
-
- static void registerListener(CommandListener listener);
-
- static CommandListener listener_;
-
-};
-
-} /* namespace v1_0 */
-} /* namespace mp */
-} /* namespace stability */
-} /* namespace commonapi */
-#endif /* STABCONTROLSTUB_H_ */
-
-
diff --git a/org.genivi.commonapi.core.verification/src/stub/StabilityMPStub.cpp b/org.genivi.commonapi.core.verification/src/stub/StabilityMPStub.cpp
deleted file mode 100644
index 1468e8e..0000000
--- a/org.genivi.commonapi.core.verification/src/stub/StabilityMPStub.cpp
+++ /dev/null
@@ -1,48 +0,0 @@
-/* Copyright (C) 2015 BMW Group
- * Author: JP Ikaheimonen (jp_ikaheimonen@mentor.com)
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-#include "StabilityMPStub.h"
-
-#ifndef WIN32
-#include <unistd.h>
-#endif
-
-namespace v1_0 {
-namespace commonapi {
-namespace stability {
-namespace mp {
-
-using namespace v1_0::commonapi::stability::mp;
-
-StabilityMPStub::StabilityMPStub() {
-}
-
-StabilityMPStub::~StabilityMPStub() {
-}
-
-void StabilityMPStub::testMethod(const std::shared_ptr<CommonAPI::ClientId> clientId,
- TestInterface::tArray tArrayIn,
- testMethodReply_t _reply) {
-
- TestInterface::tArray tArrayOut;
- tArrayOut = tArrayIn;
-
- fireTestBroadcastEvent(
- tArrayOut
- );
- _reply(tArrayOut);
-}
-
-void StabilityMPStub::setTestValues(TestInterface::tArray x) {
- setTestAttributeAttribute(x);
-}
-
-} /* namespace v1_0 */
-} /* namespace mp */
-} /* namespace stability */
-} /* namespace commonapi */
-
-
diff --git a/org.genivi.commonapi.core.verification/src/stub/StabilityMPStub.h b/org.genivi.commonapi.core.verification/src/stub/StabilityMPStub.h
deleted file mode 100644
index 328f047..0000000
--- a/org.genivi.commonapi.core.verification/src/stub/StabilityMPStub.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/* Copyright (C) 2015 BMW Group
- * Author: JP Ikaheimonen (jp_ikaheimonen@mentor.com)
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-#ifndef STABILITYMPSTUB_H_
-#define STABILITYMPSTUB_H_
-
-#include "v1_0/commonapi/stability/mp/TestInterfaceStubDefault.hpp"
-#include "v1_0/commonapi/stability/mp/TestInterface.hpp"
-
-namespace v1_0 {
-namespace commonapi {
-namespace stability {
-namespace mp {
-
-class StabilityMPStub : public TestInterfaceStubDefault {
-
-public:
- StabilityMPStub();
- virtual ~StabilityMPStub();
-
- virtual void testMethod(const std::shared_ptr<CommonAPI::ClientId> clientId,
- TestInterface::tArray tArrayIn,
- testMethodReply_t _reply);
- virtual void setTestValues(TestInterface::tArray x);
-};
-
-} /* namespace v1_0 */
-} /* namespace mp */
-} /* namespace stability */
-} /* namespace commonapi */
-#endif /* STABILITYMPSTUB_H_ */
-
diff --git a/org.genivi.commonapi.core.verification/src/stub/StabilitySPStub.cpp b/org.genivi.commonapi.core.verification/src/stub/StabilitySPStub.cpp
index 472d39a..373636e 100644
--- a/org.genivi.commonapi.core.verification/src/stub/StabilitySPStub.cpp
+++ b/org.genivi.commonapi.core.verification/src/stub/StabilitySPStub.cpp
@@ -1,5 +1,4 @@
/* Copyright (C) 2015 BMW Group
- * Author: JP Ikaheimonen (jp_ikaheimonen@mentor.com)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
diff --git a/org.genivi.commonapi.core.verification/src/stub/StabilitySPStub.h b/org.genivi.commonapi.core.verification/src/stub/StabilitySPStub.h
index 86b8c3c..d9a4071 100644
--- a/org.genivi.commonapi.core.verification/src/stub/StabilitySPStub.h
+++ b/org.genivi.commonapi.core.verification/src/stub/StabilitySPStub.h
@@ -1,5 +1,4 @@
/* Copyright (C) 2015 BMW Group
- * Author: JP Ikaheimonen (jp_ikaheimonen@mentor.com)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */