/* * 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.twill.internal; import org.apache.twill.api.RunId; import org.apache.twill.api.TwillContext; import org.apache.twill.api.TwillRunnableSpecification; import org.apache.twill.common.Cancellable; import org.apache.twill.discovery.Discoverable; import org.apache.twill.discovery.DiscoveryService; import org.apache.twill.discovery.DiscoveryServiceClient; import org.apache.twill.discovery.ServiceDiscovered; import java.net.InetAddress; import java.net.InetSocketAddress; /** * */ public final class BasicTwillContext implements TwillContext { private final RunId runId; private final RunId appRunId; private final InetAddress host; private final String[] args; private final String[] appArgs; private final TwillRunnableSpecification spec; private final int instanceId; private final DiscoveryService discoveryService; private final DiscoveryServiceClient discoveryServiceClient; private final int allowedMemoryMB; private final int virtualCores; private volatile int instanceCount; public BasicTwillContext(RunId runId, RunId appRunId, InetAddress host, String[] args, String[] appArgs, TwillRunnableSpecification spec, int instanceId, DiscoveryService discoveryService, DiscoveryServiceClient discoveryServiceClient, int instanceCount, int allowedMemoryMB, int virtualCores) { this.runId = runId; this.appRunId = appRunId; this.host = host; this.args = args; this.appArgs = appArgs; this.spec = spec; this.instanceId = instanceId; this.discoveryService = discoveryService; this.discoveryServiceClient = discoveryServiceClient; this.instanceCount = instanceCount; this.allowedMemoryMB = allowedMemoryMB; this.virtualCores = virtualCores; } @Override public RunId getRunId() { return runId; } @Override public RunId getApplicationRunId() { return appRunId; } @Override public int getInstanceCount() { return instanceCount; } public void setInstanceCount(int count) { this.instanceCount = count; } @Override public InetAddress getHost() { return host; } @Override public String[] getArguments() { return args; } @Override public String[] getApplicationArguments() { return appArgs; } @Override public TwillRunnableSpecification getSpecification() { return spec; } @Override public int getInstanceId() { return instanceId; } @Override public int getVirtualCores() { return virtualCores; } @Override public int getMaxMemoryMB() { return allowedMemoryMB; } @Override public Cancellable announce(final String serviceName, final int port) { return discoveryService.register(new Discoverable() { @Override public String getName() { return serviceName; } @Override public InetSocketAddress getSocketAddress() { return new InetSocketAddress(getHost(), port); } }); } @Override public ServiceDiscovered discover(String name) { return discoveryServiceClient.discover(name); } }