2 * Copyright 2007 the original author or authors.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.wamblee.system.core;
18 import javax.sql.DataSource;
20 import org.wamblee.system.core.AbstractComponent;
21 import org.wamblee.system.core.DefaultRequiredInterface;
22 import org.wamblee.system.core.ProvidedInterface;
23 import org.wamblee.system.core.RequiredInterface;
24 import org.wamblee.test.EventTracker;
26 public class Application extends AbstractComponent {
27 public static RequiredInterface[] required(boolean aOptional) {
29 new RequiredInterface[] {
30 new DefaultRequiredInterface("string", String.class, aOptional),
31 new DefaultRequiredInterface("integer", Integer.class, aOptional)
35 private EventTracker<String> _tracker;
36 private String _string;
37 private Integer _integer;
38 private double _random;
40 public Application() {
41 super("application", new ProvidedInterface[0], required(false));
42 _random = Math.random();
45 public Application(boolean aIsOptinal) {
46 super("application", new ProvidedInterface[0], required(true));
49 public Application(EventTracker<String> aTracker) {
55 protected Object doStart(Scope aScope) {
56 track("start." + getName());
57 _string = aScope.retrieveInterfaceImplementation(getRequiredInterfaces()[0].getProvider(), String.class);
58 _integer = aScope.retrieveInterfaceImplementation(getRequiredInterfaces()[1].getProvider(), Integer.class);
62 public String getString() {
66 public Integer getInteger() {
71 protected void doStop(Object aRuntime) {
72 track("stop." + getName());
73 if ( _random != (Double)aRuntime) {
74 throw new IllegalArgumentException("Wrong runtime: expected " + _random + " but got " +
79 private void track(String aString) {
80 if ( _tracker == null ) {
83 _tracker.eventOccurred(aString);