/* This file is part of the OdinMS Maple Story Server Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> Matthias Butz <matze@odinms.de> Jan Christian Meyer <vimes@odinms.de> This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation version 3 as published by the Free Software Foundation. You may not use, modify or distribute this program under any other version of the GNU Affero General Public License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ package provider.wz; import java.util.ArrayList; import java.util.Collections; import java.util.Iterator; import java.util.List; import provider.MapleData; import provider.MapleDataEntity; public class WZIMGEntry implements MapleData { private String name; private MapleDataType type; private final List<MapleData> children = new ArrayList<>(10); private Object data; private final MapleDataEntity parent; public WZIMGEntry(MapleDataEntity parent) { this.parent = parent; } @Override public String getName() { return name; } @Override public MapleDataType getType() { return type; } @Override public List<MapleData> getChildren() { return Collections.unmodifiableList(children); } @Override public MapleData getChildByPath(String path) { String segments[] = path.split("/"); if (segments[0].equals("..")) { return ((MapleData) getParent()).getChildByPath(path.substring(path.indexOf("/") + 1)); } MapleData ret = this; for (String segment : segments) { boolean foundChild = false; for (MapleData child : ret.getChildren()) { if (child.getName().equals(segment)) { ret = child; foundChild = true; break; } } if (!foundChild) { return null; } } return ret; } @Override public Object getData() { return data; } public void setName(String name) { this.name = name; } public void setType(MapleDataType type) { this.type = type; } public void setData(Object data) { this.data = data; } public void addChild(WZIMGEntry entry) { children.add(entry); } @Override public Iterator<MapleData> iterator() { return getChildren().iterator(); } @Override public String toString() { return getName() + ":" + getData(); } @Override public MapleDataEntity getParent() { return parent; } public void finish() { ((ArrayList<MapleData>) children).trimToSize(); } }