Pages

Thursday, May 7, 2015

Observer Pattern example


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package designpatterns;
 
/*
 * Observer Pattern example
 */
 
class WeatherData {
 
    float temperature;
    float humidity;
     
    public float getTemperature(){
        return temperature;
    }
     
    public float getHumidity() {
        return humidity;
    }
     
    public void setTemperature(float t) {
        temperature = t;
    }
     
    public void setHumidity(float h) {
        humidity = h;
    }
}
 
/*
 * The below interface adds functionality to add, remove subscribers/clients
 *  to the internal list so that they can be notified whenever the state of
 *  the weather changes.
 */
  
interface WeatherNotifier {
    public void notify();
    public void addListener(Object client);
    public void removeListener(Object client);
}
 
/*
 * WeatherData after implementing the above interface
 */
 
class WeatherData implements WeatherNotifier {
    private List subscribers;
    {
        subscribers = new ArrayList();
    }
     
    public void notify() {
        // notify/wake up all the subscribers to update their view with latest state information
        Iterator iterator = subscribers.iterator();
        while (iterator.hasNext()) {
            iterator.next().update();
        }
    }
 
    @Override   
    public void addListener(Object client) {
        subscribers.add(client);
    }
     
    @Override
    public void removeListener(Object client) {
        subscribers.remove(client);
    }
 
   public void setTemperature(float t) {
        temperature = t;
        dataChanged();
    }
     
    public void setHumidity(float h) {
        humidity = h;
        dataChanged();
    }
     
    private void dataChanged() {
        notify();
    }
 
    public float getTemperature(){
        return temperature;
    }
     
    public float getHumidity() {
        return humidity;
    }
 
}
 
interface WeatherReader {
    public void update();
}
 
class WeatherClient implements WeatherReader{
    WeatherData source;
     
    public void update() {
        System.out.println("Temperature is " + source.getTemperature());
        System.out.println("Humidity is    " + source.getHumidity());      
    }
}

No comments:

Post a Comment