com.robypomper.josp.jcp.gws.services.GWServiceO2S Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcpGWs Show documentation
Show all versions of jcpGWs Show documentation
This is the JCP Gateway executable from John O.S. Project
/*******************************************************************************
* The John Cloud Platform is the set of infrastructure and software required to provide
* the "cloud" to an IoT EcoSystem, like the John Operating System Platform one.
* Copyright 2021 Roberto Pompermaier
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
******************************************************************************/
package com.robypomper.josp.jcp.gws.services;
import com.robypomper.comm.exception.ServerStartupException;
import com.robypomper.java.JavaJKS;
import com.robypomper.java.JavaSSL;
import com.robypomper.josp.jcp.clients.JCPClientsMngr;
import com.robypomper.josp.jcp.db.apis.ObjectDBService;
import com.robypomper.josp.jcp.db.apis.PermissionsDBService;
import com.robypomper.josp.jcp.gws.gw.GWO2S;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.stereotype.Service;
import javax.annotation.PreDestroy;
@Service
public class GWServiceO2S implements ApplicationListener {
// Internal vars
private static final Logger log = LoggerFactory.getLogger(GWServiceO2S.class);
private final GWO2S gw;
// Constructors
@Autowired
protected GWServiceO2S(@Value("${jcp.gws.region:Central}") final String region,
@Value("${jcp.gws.o2s.ip.internal}") final String addrInternal,
@Value("${jcp.gws.o2s.ip.public}") final String addrPublic,
@Value("${jcp.gws.o2s.port}") final int gwPort,
@Value("${server.port}") final int apiPort,
@Value("${jcp.gws.o2s.maxClients}") final int maxClients,
JCPClientsMngr clientsMngr,
BrokerService gwBroker, ObjectDBService objectDBService, PermissionsDBService permissionsDBService) throws ServerStartupException, JavaJKS.GenerationException, JavaSSL.GenerationException {
gw = new GWO2S(region, addrInternal, addrPublic, gwPort, apiPort, maxClients, clientsMngr, gwBroker.getBrokerJOD(), objectDBService, permissionsDBService);
}
@PreDestroy
public void destroy() {
gw.destroy();
log.trace("JCP GW O2S service destroyed");
}
// Getters
public GWO2S get() {
return gw;
}
// Spring events listener
@Override
public void onApplicationEvent(final ContextRefreshedEvent event) {
gw.onApplicationEvent(event);
}
}