aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr109042.aj
blob: c0744f13330d7f2a63d39eec2006a34936d1b281 (plain)
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
import java.util.ArrayList;
import java.util.List;

class PlayList {

    private static PlayList instance;
    
    private List<Song> list;
    
    private PlayList() {
        list = new ArrayList<Song>();         
    }

    public static PlayList instance() {
        if(instance==null ) {
            instance = new PlayList();
        }
        return instance;
    }

    public void enqueue(Song song) {
        list.add(song);
        if(Player.instance().isIdle()) {
            new Thread() {
                public void run() {
                    System.out.println("Playing playlist...");
                    for (Song s : list) {
                        Player.instance().play(s.getName());
                    }
                }  
            }.start();            
        }
    }

}

class Song {

    private String name; 

    public Song(String name) {
        this.name = name;
    }

    public String getName() {
        return name;
    }

}

class Player {

    private static Player instance;
    
    private Player() {}

    public static Player instance() {
        if(instance==null ) {
            instance = new Player();
        }
        return instance;
    }

    public void play(String name) {
        System.out.println("Playing Song "+name+"...");
    }

    public boolean isIdle() {
        return true;
    }
}

class Jukebox {
    
	   public void play(Song song) {
	        Player.instance().play(song.getName());
	   }

	}

class Main {

    public static void main(String[] args) {
        Song song = new Song("Merry XMas");
        Jukebox jukebox = new Jukebox();
        
        jukebox.play(song);
    }
    
}

aspect PlaylistAspect {
    
    void around(Song song) :
        call(public void Jukebox.play(Song))
        && args(song) {
        PlayList.instance().enqueue(song);
    }

}

aspect CreditsAspect {

    void around() : call(public void Jukebox.play(Song)) {
        if(Credits.instance().enoughCredits()) {
            System.out.println("Withdrawing credit.");
            Credits.instance().withDraw();
            proceed();
        } else {
            throw new InsufficientCreditsException();
        }
    }
    
}

class Credits {

    private static final int INITIAL_CREDITS = 10;

    private static Credits instance;
    
    private int credits;
    
    private Credits() {
        credits = INITIAL_CREDITS;        
    }
    
    public static Credits instance() {
        if(instance==null ) {
            instance = new Credits();
        }
        return instance;
    }

    public boolean enoughCredits() {
        return credits > 0;
    }
    
    public void withDraw() {
        credits--;
    }
}

@SuppressWarnings("serial")
class InsufficientCreditsException extends RuntimeException {

    public InsufficientCreditsException() {
        super();
    }

    public InsufficientCreditsException(String message, Throwable cause) {
        super(message, cause);
    }

    public InsufficientCreditsException(String message) {
        super(message);
    }

    /**
     * @param cause
     */
    public InsufficientCreditsException(Throwable cause) {
        super(cause);
    }

}