Skip to content

Commit 0848de5

Browse files
authored
Make ClassWorld implement Closeable (#72)
This closes #71
1 parent 596d83d commit 0848de5

File tree

1 file changed

+34
-12
lines changed

1 file changed

+34
-12
lines changed

src/main/java/org/codehaus/plexus/classworlds/ClassWorld.java

+34-12
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19+
import java.io.Closeable;
1920
import java.io.IOException;
2021
import java.util.ArrayList;
2122
import java.util.Collection;
@@ -35,7 +36,7 @@
3536
*
3637
* @author <a href="mailto:[email protected]">bob mcwhirter</a>
3738
*/
38-
public class ClassWorld
39+
public class ClassWorld implements Closeable
3940
{
4041
private Map<String, ClassRealm> realms;
4142

@@ -127,24 +128,45 @@ public synchronized ClassRealm newRealm( String id, ClassLoader classLoader, Pre
127128
return realm;
128129
}
129130

131+
/**
132+
* Closes all contained class realms.
133+
* @since 2.7.0
134+
*/
135+
@Override
136+
public synchronized void close()
137+
throws IOException
138+
{
139+
realms.values().stream().forEach( this::disposeRealm );
140+
realms.clear();
141+
}
142+
130143
public synchronized void disposeRealm( String id )
131144
throws NoSuchRealmException
132145
{
133146
ClassRealm realm = realms.remove( id );
134147

135148
if ( realm != null )
136149
{
137-
try
138-
{
139-
realm.close();
140-
}
141-
catch ( IOException ignore )
142-
{
143-
}
144-
for ( ClassWorldListener listener : listeners )
145-
{
146-
listener.realmDisposed( realm );
147-
}
150+
disposeRealm( realm );
151+
}
152+
else
153+
{
154+
throw new NoSuchRealmException( this, id );
155+
}
156+
}
157+
158+
private void disposeRealm( ClassRealm realm )
159+
{
160+
try
161+
{
162+
realm.close();
163+
}
164+
catch ( IOException ignore )
165+
{
166+
}
167+
for ( ClassWorldListener listener : listeners )
168+
{
169+
listener.realmDisposed( realm );
148170
}
149171
}
150172

0 commit comments

Comments
 (0)