/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF 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. */ package org.apache.brooklyn.entity.database.rubyrep; import java.net.URI; import org.apache.brooklyn.core.entity.Entities; import org.apache.brooklyn.core.sensor.DependentConfiguration; import org.apache.brooklyn.entity.database.DatastoreMixins.DatastoreCommon; import org.apache.brooklyn.entity.software.base.SoftwareProcessImpl; import org.apache.brooklyn.util.time.Duration; public class RubyRepNodeImpl extends SoftwareProcessImpl implements RubyRepNode { @Override protected void connectSensors() { super.connectSensors(); connectServiceUpIsRunning(); } @Override public void disconnectSensors() { disconnectServiceUpIsRunning(); super.disconnectSensors(); } /** * Set the database {@link DatastoreCommon#DATASTORE_URL urls} as attributes when they become available on the entities. */ @Override protected void preStart() { super.preStart(); DatastoreCommon leftNode = getConfig(LEFT_DATABASE); if (leftNode != null) { sensors().set(LEFT_DATASTORE_URL, Entities.submit(this, DependentConfiguration.attributeWhenReady(leftNode, DatastoreCommon.DATASTORE_URL)).getUnchecked(getDatabaseStartupDelay())); } DatastoreCommon rightNode = getConfig(RIGHT_DATABASE); if (rightNode != null) { sensors().set(RIGHT_DATASTORE_URL, Entities.submit(this, DependentConfiguration.attributeWhenReady(rightNode, DatastoreCommon.DATASTORE_URL)).getUnchecked(getDatabaseStartupDelay())); } } @Override public Class<?> getDriverInterface() { return RubyRepDriver.class; } public Duration getDatabaseStartupDelay() { return Duration.seconds(getConfig(DATABASE_STARTUP_TIMEOUT)); } // Accessors used in freemarker template processing public int getReplicationInterval() { return getConfig(REPLICATION_INTERVAL); } public String getTableRegex() { return getConfig(TABLE_REGEXP); } public URI getLeftDatabaseUrl() { return URI.create(getAttribute(LEFT_DATASTORE_URL)); } public String getLeftDatabaseName() { return getConfig(LEFT_DATABASE_NAME); } public String getLeftUsername() { return getConfig(LEFT_USERNAME); } public String getLeftPassword() { return getConfig(LEFT_PASSWORD); } public URI getRightDatabaseUrl() { return URI.create(getAttribute(RIGHT_DATASTORE_URL)); } public String getRightDatabaseName() { return getConfig(RIGHT_DATABASE_NAME); } public String getRightUsername() { return getConfig(RIGHT_USERNAME); } public String getRightPassword() { return getConfig(RIGHT_PASSWORD); } }