| /******************************************************************************* |
| * Copyright (c) 2018, fortiss GmbH |
| * This program and the accompanying materials are made available under the |
| * terms of the Eclipse Public License 2.0 which is available at |
| * http://www.eclipse.org/legal/epl-2.0. |
| * |
| * SPDX-License-Identifier: EPL-2.0 |
| * |
| * Contributors: |
| * Jose Cabral - initial implementation |
| *******************************************************************************/ |
| |
| #ifndef _REGISTERSERVICE_H_ |
| #define _REGISTERSERVICE_H_ |
| |
| #include <cfb.h> |
| #include <typelib.h> |
| #include <forte_serviceregistryentry.h> |
| #include <forte_wstring.h> |
| #include "RegisterServiceAdp.h" |
| |
| class FORTE_RegisterService: public CCompositeFB{ |
| DECLARE_FIRMWARE_FB(FORTE_RegisterService) |
| |
| private: |
| static const CStringDictionary::TStringId scmDataInputNames[]; |
| static const CStringDictionary::TStringId scmDataInputTypeIds[]; |
| CIEC_ServiceRegistryEntry &serviceRegistryEntry() { |
| return *static_cast<CIEC_ServiceRegistryEntry*>(getDI(0)); |
| }; |
| |
| CIEC_WSTRING &endpoint() { |
| return *static_cast<CIEC_WSTRING*>(getDI(1)); |
| }; |
| |
| static const TEventID scmEventregisterID = 0; |
| static const TEventID scmEventunregisterID = 1; |
| static const TForteInt16 scmEIWithIndexes[]; |
| static const TDataIOID scmEIWith[]; |
| static const CStringDictionary::TStringId scmEventInputNames[]; |
| |
| static const TEventID scmEventdoneRegisterID = 0; |
| static const TEventID scmEventdoneUnregisterID = 1; |
| static const TForteInt16 scmEOWithIndexes[]; |
| static const CStringDictionary::TStringId scmEventOutputNames[]; |
| |
| static const SAdapterInstanceDef scmAdapterInstances[]; |
| |
| FORTE_RegisterServiceAdp& registerService() { |
| return (*static_cast<FORTE_RegisterServiceAdp*>(mAdapters[0])); |
| }; |
| static const int scm_nregisterServiceAdpNum = 0; |
| static const SFBInterfaceSpec scmFBInterfaceSpec; |
| |
| |
| static const SCFB_FBConnectionData scmEventConnections[]; |
| |
| static const SCFB_FBConnectionData scmDataConnections[]; |
| static const SCFB_FBNData scmFBNData; |
| |
| public: |
| COMPOSITE_FUNCTION_BLOCK_CTOR(FORTE_RegisterService){ |
| }; |
| |
| ~FORTE_RegisterService() override = default; |
| |
| }; |
| |
| #endif //close the ifdef sequence from the beginning of the file |
| |