/**
* Copyright 2013 The Loon Authors
*
* Licensed 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 loon.utils.res.foundation;
import loon.utils.res.foundation.NSArray;
import loon.utils.res.foundation.NSAutoreleasePool;
import loon.utils.res.foundation.NSObject;
public class NSAutoreleasePool extends NSObject {
boolean _enable = true;
static int _id;
static NSAutoreleasePool _instance;
final NSArray _arrays;
public NSAutoreleasePool() {
_arrays = new NSArray();
init();
}
public NSAutoreleasePool getMainAutoreleasePool() {
return _instance;
}
private void init() {
if (_instance == null) {
_instance = this;
}
_id++;
}
public void addObject(NSObject o) {
this._arrays.addObject(o);
}
public void removeObject(NSObject o) {
this._arrays.removeObject(o);
}
public void enableFreedObjectCheck(boolean enable) {
this._enable = enable;
}
public boolean isEnableFreedObjectCheck() {
return _enable;
}
public String drain() {
String res = toSequence();
_arrays._list.clear();
return res;
}
public static int getID() {
return _id;
}
@Override
public void close() {
drain();
}
@Override
protected void addSequence(StringBuilder sbr, String indent) {
_arrays.addSequence(sbr, indent + " ");
}
}