/
tisit
/
OpenPLC_v3
Обзор
Документация
Войти
/
tisit
/
OpenPLC_v3
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
utils/dnp3_src/cpp/libs/src/asiodnp3/DNP3Manager.cpp
129 строк
4 KB
thiagoralves
First commit. OpenPLC v3 beta 1
14 июн 2018, 20:43
14 июн 2018, 20:43
1b10e97
Код
Авторство
О чём код?
/* * Licensed to Green Energy Corp (www.greenenergycorp.com) under one or * more contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright ownership. * Green Energy Corp 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. * * This project was forked on 01/01/2013 by Automatak, LLC and modifications * may have been made to this file. Automatak, LLC licenses these modifications * to you under the terms of the License. */ #include "asiodnp3/DNP3Manager.h" #include "asiodnp3/DNP3ManagerImpl.h" namespace asiodnp3 { DNP3Manager::DNP3Manager( uint32_t concurrencyHint, std::shared_ptr<openpal::ILogHandler> handler, std::function<void()> onThreadStart, std::function<void()> onThreadExit) : impl(std::make_unique<DNP3ManagerImpl>(concurrencyHint, handler, onThreadStart, onThreadExit)) { } DNP3Manager::~DNP3Manager() {} void DNP3Manager::Shutdown() { impl->Shutdown(); } std::shared_ptr<IChannel> DNP3Manager::AddTCPClient( const std::string& id, uint32_t levels, const asiopal::ChannelRetry& retry, const std::string& host, const std::string& local, uint16_t port, std::shared_ptr<IChannelListener> listener) { return this->impl->AddTCPClient(id, levels, retry, host, local, port, listener); } std::shared_ptr<IChannel> DNP3Manager::AddTCPServer( const std::string& id, uint32_t levels, const asiopal::ChannelRetry& retry, const std::string& endpoint, uint16_t port, std::shared_ptr<IChannelListener> listener) { return this->impl->AddTCPServer(id, levels, retry, endpoint, port, listener); } std::shared_ptr<IChannel> DNP3Manager::AddSerial( const std::string& id, uint32_t levels, const asiopal::ChannelRetry& retry, asiopal::SerialSettings settings, std::shared_ptr<IChannelListener> listener) { return this->impl->AddSerial(id, levels, retry, settings, listener); } std::shared_ptr<IChannel> DNP3Manager::AddTLSClient( const std::string& id, uint32_t levels, const asiopal::ChannelRetry& retry, const std::string& host, const std::string& local, uint16_t port, const asiopal::TLSConfig& config, std::shared_ptr<IChannelListener> listener, std::error_code& ec) { return this->impl->AddTLSClient(id, levels, retry, host, local, port, config, listener, ec); } std::shared_ptr<IChannel> DNP3Manager::AddTLSServer( const std::string& id, uint32_t levels, const asiopal::ChannelRetry& retry, const std::string& endpoint, uint16_t port, const asiopal::TLSConfig& config, std::shared_ptr<IChannelListener> listener, std::error_code& ec) { return this->impl->AddTLSServer(id, levels, retry, endpoint, port, config, listener, ec); } std::shared_ptr<asiopal::IListener> DNP3Manager::CreateListener( std::string loggerid, openpal::LogFilters loglevel, asiopal::IPEndpoint endpoint, std::shared_ptr<IListenCallbacks> callbacks, std::error_code& ec ) { return impl->CreateListener(loggerid, loglevel, endpoint, callbacks, ec); } std::shared_ptr<asiopal::IListener> DNP3Manager::CreateListener( std::string loggerid, openpal::LogFilters loglevel, asiopal::IPEndpoint endpoint, const asiopal::TLSConfig& config, std::shared_ptr<IListenCallbacks> callbacks, std::error_code& ec ) { return impl->CreateListener(loggerid, loglevel, endpoint, config, callbacks, ec); } }