package com.thinkbiganalytics.metadata.api.event.feed; /*- * #%L * thinkbig-metadata-api * %% * Copyright (C) 2017 ThinkBig Analytics * %% * Licensed 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. * #L% */ import java.io.Serializable; import java.util.List; import java.util.Map; import java.util.Properties; public class PropertyChange implements Serializable { private static final long serialVersionUID = 1L; private static final String NIFI_NAMESPACE = "nifi"; private Properties oldProperties; private Properties newProperties; private String feedCategorySystemName; private String feedSystemName; private String feedId; private List<String> hadoopSecurityGroupNames; public PropertyChange(String feedId, String feedCategorySystemName, String feedSystemName, List<String> hadoopSecurityGroupNames, Map<String, Object> oldProperties, Map<String, Object> newProperties) { this.feedId = feedId; this.oldProperties = convertMapToProperties(oldProperties); this.newProperties = convertMapToProperties(newProperties); this.feedCategorySystemName = feedCategorySystemName; this.feedSystemName = feedSystemName; this.hadoopSecurityGroupNames = hadoopSecurityGroupNames; } public Properties getNifiPropertiesToDelete() { Properties nifiProperties = new Properties(); Properties oldProperties = getOldNifiMetadataProperties(); Properties newProperties = getNewNifiMetadataProperties(); oldProperties.forEach((k, v) -> { if (newProperties.get(k) == null) { nifiProperties.setProperty((String) k, (String) v); } }); return nifiProperties; } private Properties getOldNifiMetadataProperties() { Properties nifiProperties = new Properties(); oldProperties.forEach((k, v) -> { String key = (String) k; if (key.startsWith(NIFI_NAMESPACE + ":")) { nifiProperties.setProperty((String) k, (String) v); } }); return nifiProperties; } private Properties getNewNifiMetadataProperties() { Properties nifiProperties = new Properties(); newProperties.forEach((k, v) -> { String key = (String) k; if (key.startsWith(NIFI_NAMESPACE + ":")) { nifiProperties.setProperty((String) k, (String) v); } }); return nifiProperties; } /*private String getUserDefinedNamespace(String property) { String withoutSystemNamespace = property.substring(0, property.indexOf(":") + 1); String userNamespace = withoutSystemNamespace.substring(0, withoutSystemNamespace.indexOf(":") - 1); return userNamespace; }*/ public Properties getOldProperties() { return oldProperties; } public Properties getNewProperties() { return newProperties; } private Properties convertMapToProperties(Map<String, Object> map) { Properties properties = new Properties(); for (Map.Entry<String, Object> entry : map.entrySet()) { properties.setProperty(entry.getKey(), String.valueOf(entry.getValue())); } return properties; } public String getFeedCategorySystemName() { return feedCategorySystemName; } public String getFeedSystemName() { return feedSystemName; } public List<String> getHadoopSecurityGroupNames() { return hadoopSecurityGroupNames; } public String getFeedId() { return feedId; } }