Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.bimserver.webservices.impl.Bimsie1NotificationRegistryServiceImpl Maven / Gradle / Ivy
package org.bimserver.webservices.impl;
/******************************************************************************
* Copyright (C) 2009-2016 BIMserver.org
*
* 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 (at your option) 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 {@literal }.
*****************************************************************************/
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import org.bimserver.BimserverDatabaseException;
import org.bimserver.database.DatabaseSession;
import org.bimserver.database.OldQuery;
import org.bimserver.endpoints.EndPoint;
import org.bimserver.interfaces.objects.SLongActionState;
import org.bimserver.interfaces.objects.SProgressTopicType;
import org.bimserver.models.store.ActionState;
import org.bimserver.models.store.LongActionState;
import org.bimserver.models.store.Project;
import org.bimserver.models.store.Revision;
import org.bimserver.models.store.StorePackage;
import org.bimserver.notifications.ChangeProgressTopicOnProjectTopic;
import org.bimserver.notifications.ChangeProgressTopicOnRevisionTopic;
import org.bimserver.notifications.ChangeProgressTopicOnServerTopic;
import org.bimserver.notifications.NewExtendedDataOnRevisionTopic;
import org.bimserver.notifications.NewExtendedDataOnRevisionTopicKey;
import org.bimserver.notifications.NewRevisionOnSpecificProjectTopic;
import org.bimserver.notifications.NewRevisionOnSpecificProjectTopicKey;
import org.bimserver.notifications.NewRevisionTopic;
import org.bimserver.notifications.ProgressNotification;
import org.bimserver.notifications.ProgressOnRevisionTopic;
import org.bimserver.notifications.ProgressTopic;
import org.bimserver.notifications.TopicRegisterException;
import org.bimserver.shared.exceptions.ServerException;
import org.bimserver.shared.exceptions.UserException;
import org.bimserver.shared.interfaces.bimsie1.Bimsie1NotificationRegistryInterface;
import org.bimserver.webservices.ServiceMap;
import org.slf4j.LoggerFactory;
public class Bimsie1NotificationRegistryServiceImpl extends GenericServiceImpl implements Bimsie1NotificationRegistryInterface {
public Bimsie1NotificationRegistryServiceImpl(ServiceMap serviceMap) {
super(serviceMap);
}
@Override
public void registerProgressHandler(Long topicId, Long endPointId) throws UserException {
if (endPointId == null) {
throw new UserException("No EndpointId given");
}
EndPoint endPoint = getEndPoint(endPointId);
if (endPoint == null) {
throw new UserException("Endpoint with id " + endPointId + " not found");
}
ProgressTopic progressTopic = getBimServer().getNotificationsManager().getProgressTopic(topicId);
if (progressTopic == null) {
throw new UserException("Topic with id " + topicId + " not found");
}
try {
progressTopic.register(endPoint);
LongActionState lastProgress = progressTopic.getLastProgress();
if (lastProgress != null && lastProgress.getState() == ActionState.FINISHED) {
LoggerFactory.getLogger(Bimsie1NotificationRegistryInterface.class).debug("Sending update directly for topic " + progressTopic.getKey().getId());
// TODO!!
// progressTopic.stageProgressUpdate(ate, title)updateProgress(lastProgress);
} else {
LoggerFactory.getLogger(Bimsie1NotificationRegistryInterface.class).debug("NOT Sending update directly for topic " + progressTopic.getKey().getId());
}
} catch (TopicRegisterException e) {
throw new UserException(e);
}
}
private EndPoint getEndPoint(long endPointId) throws UserException {
EndPoint endPoint = getBimServer().getEndPointManager().get(endPointId);
if (endPoint == null) {
throw new UserException("Endpoint with id " + endPointId + " not found");
}
return endPoint;
}
@Override
public void unregisterProgressHandler(Long topicId, Long endPointId) throws UserException, ServerException {
EndPoint endPoint = getEndPoint(endPointId);
ProgressTopic progressTopic = getBimServer().getNotificationsManager().getProgressTopic(topicId);
if (progressTopic == null) {
throw new UserException("Topic with id " + topicId + " not found");
}
try {
progressTopic.unregister(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public void updateProgressTopic(Long topicId, SLongActionState state) throws UserException, ServerException {
DatabaseSession session = getBimServer().getDatabase().createSession();
try {
ProgressTopic topic = getBimServer().getNotificationsManager().getProgressTopic(topicId);
ProgressNotification progressNotification = new ProgressNotification(getBimServer(), topic, getBimServer().getSConverter().convertFromSObject(state, session));
getBimServer().getNotificationsManager().addToQueue(progressNotification);
} catch (BimserverDatabaseException e) {
handleException(e);
} finally {
session.close();
}
}
@Override
public void registerNewRevisionOnSpecificProjectHandler(Long endPointId, Long poid) throws ServerException, UserException {
EndPoint endPoint = getEndPoint(endPointId);
NewRevisionOnSpecificProjectTopic newRevisionOnSpecificProjectTopic = getBimServer().getNotificationsManager().getOrCreateNewRevisionOnSpecificProjectTopic(new NewRevisionOnSpecificProjectTopicKey(poid));
try {
newRevisionOnSpecificProjectTopic.register(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public void registerNewRevisionHandler(Long endPointId) throws ServerException, UserException {
EndPoint endPoint = getEndPoint(endPointId);
NewRevisionTopic newRevisionTopic = getBimServer().getNotificationsManager().getNewRevisionTopic();
try {
newRevisionTopic.register(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public void registerNewExtendedDataOnRevisionHandler(Long endPointId, Long roid) throws ServerException, UserException {
EndPoint endPoint = getEndPoint(endPointId);
NewExtendedDataOnRevisionTopic topic = getBimServer().getNotificationsManager().getOrCreateNewExtendedDataOnRevisionTopic(new NewExtendedDataOnRevisionTopicKey(roid));
try {
topic.register(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public void unregisterNewRevisionOnSpecificProjectHandler(Long endPointId, Long poid) throws ServerException, UserException {
EndPoint endPoint = getEndPoint(endPointId);
try {
getBimServer().getNotificationsManager().getNewRevisionOnSpecificProjectTopic(new NewRevisionOnSpecificProjectTopicKey(poid)).unregister(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public void unregisterNewRevisionHandler(Long endPointId) throws ServerException, UserException {
EndPoint endPoint = getEndPoint(endPointId);
try {
getBimServer().getNotificationsManager().getNewRevisionTopic().unregister(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public void unregisterNewExtendedDataOnRevisionHandler(Long endPointId, Long roid) throws ServerException, UserException {
EndPoint endPoint = getEndPoint(endPointId);
try {
NewExtendedDataOnRevisionTopic newExtendedDataOnRevisionTopic = getBimServer().getNotificationsManager().getNewExtendedDataOnRevisionTopic(new NewExtendedDataOnRevisionTopicKey(roid));
if (newExtendedDataOnRevisionTopic != null) {
newExtendedDataOnRevisionTopic.unregister(endPoint);
}
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public Long registerProgressTopic(SProgressTopicType type, String description) throws UserException, ServerException {
return getBimServer().getNotificationsManager().createProgressTopic(type, description).getKey().getId();
}
@Override
public Long registerProgressOnRevisionTopic(SProgressTopicType type, Long poid, Long roid, String description) throws UserException, ServerException {
return getBimServer().getNotificationsManager().createProgressOnRevisionTopic(poid, roid, type, description).getKey().getId();
}
@Override
public Long registerProgressOnProjectTopic(SProgressTopicType type, Long poid, String description) throws UserException, ServerException {
return getBimServer().getNotificationsManager().createProgressOnProjectTopic(getCurrentUser().getOid(), poid, type, description).getKey().getId();
}
@Override
public void unregisterProgressTopic(Long topicId) {
getBimServer().getNotificationsManager().unregister(topicId);
}
@Override
public void registerNewProjectHandler(Long endPointId) throws ServerException, UserException {
EndPoint endPoint = getEndPoint(endPointId);
try {
getBimServer().getNotificationsManager().getNewProjectTopic().register(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public void unregisterNewProjectHandler(Long endPointId) throws ServerException, UserException {
EndPoint endPoint = getEndPoint(endPointId);
try {
getBimServer().getNotificationsManager().getNewProjectTopic().unregister(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public void registerNewUserHandler(Long endPointId) throws ServerException, UserException {
EndPoint endPoint = getEndPoint(endPointId);
try {
getBimServer().getNotificationsManager().getNewUserTopic().register(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public void unregisterNewUserHandler(Long endPointId) throws ServerException, UserException {
EndPoint endPoint = getEndPoint(endPointId);
try {
getBimServer().getNotificationsManager().getNewUserTopic().unregister(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public List getProgressTopicsOnProject(Long poid) throws ServerException, UserException {
DatabaseSession session = getBimServer().getDatabase().createSession();
try {
List list = new ArrayList();
Project project = session.get(StorePackage.eINSTANCE.getProject(), poid, OldQuery.getDefault());
List revisionOids = new ArrayList();
for (Revision revision : project.getRevisions()) {
revisionOids.add(revision.getOid());
}
Set progressOnProjectTopics = getBimServer().getNotificationsManager().getProgressOnProjectTopics(poid, revisionOids);
if (progressOnProjectTopics != null) {
for (ProgressTopic topic : progressOnProjectTopics) {
list.add(topic.getKey().getId());
}
}
return list;
} catch (Exception e) {
return handleException(e);
} finally {
session.close();
}
}
@Override
public List getProgressTopicsOnRevision(Long poid, Long roid) {
List list = new ArrayList();
Set progressOnRevisionTopics = getBimServer().getNotificationsManager().getProgressOnRevisionTopics(poid, roid);
if (progressOnRevisionTopics != null) {
for (ProgressOnRevisionTopic topic : progressOnRevisionTopics) {
list.add(topic.getKey().getId());
}
}
return list;
}
@Override
public List getProgressTopicsOnServer() {
List list = new ArrayList();
for (ProgressTopic topic : getBimServer().getNotificationsManager().getProgressOnServerTopics()) {
list.add(topic.getKey().getId());
}
return list;
}
@Override
public SLongActionState getProgress(Long topicId) throws UserException, ServerException {
ProgressTopic progressTopic = getBimServer().getNotificationsManager().getProgressTopic(topicId);
if (progressTopic != null) {
return getBimServer().getSConverter().convertToSObject(progressTopic.getLastProgress());
} else {
throw new UserException("No topic found with topicId " + topicId);
}
}
@Override
public void registerChangeProgressOnProject(Long endPointId, Long poid) throws ServerException, UserException {
if (endPointId == null) {
throw new UserException("No endpoint given");
}
ChangeProgressTopicOnProjectTopic changeProgressOnProjectTopic = getBimServer().getNotificationsManager().getChangeProgressOnProjectTopic(poid);
EndPoint endPoint = getEndPoint(endPointId);
try {
changeProgressOnProjectTopic.register(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public void registerChangeProgressOnServer(Long endPointId) throws ServerException, UserException {
ChangeProgressTopicOnServerTopic changeProgressTopicOnServerTopic = getBimServer().getNotificationsManager().getChangeProgressTopicOnServerTopic();
EndPoint endPoint = getEndPoint(endPointId);
try {
changeProgressTopicOnServerTopic.register(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public void unregisterChangeProgressOnServer(Long endPointId) throws ServerException, UserException {
ChangeProgressTopicOnServerTopic changeProgressTopicOnServerTopic = getBimServer().getNotificationsManager().getChangeProgressTopicOnServerTopic();
EndPoint endPoint = getEndPoint(endPointId);
try {
changeProgressTopicOnServerTopic.unregister(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public void registerChangeProgressOnRevision(Long endPointId, Long poid, Long roid) throws ServerException, UserException {
ChangeProgressTopicOnRevisionTopic changeProgressOnProjectTopic = getBimServer().getNotificationsManager().getChangeProgressOnRevisionTopic(poid, roid);
EndPoint endPoint = getEndPoint(endPointId);
try {
changeProgressOnProjectTopic.register(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public void unregisterChangeProgressOnProject(Long endPointId, Long poid) throws ServerException, UserException {
ChangeProgressTopicOnProjectTopic changeProgressOnProjectTopic = getBimServer().getNotificationsManager().getChangeProgressOnProjectTopic(poid);
EndPoint endPoint = getEndPoint(endPointId);
try {
changeProgressOnProjectTopic.unregister(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
@Override
public void unregisterChangeProgressOnRevision(Long endPointId, Long poid, Long roid) throws ServerException, UserException {
ChangeProgressTopicOnRevisionTopic changeProgressOnProjectTopic = getBimServer().getNotificationsManager().getChangeProgressOnRevisionTopic(poid, roid);
EndPoint endPoint = getEndPoint(endPointId);
try {
changeProgressOnProjectTopic.unregister(endPoint);
} catch (TopicRegisterException e) {
handleException(e);
}
}
}