/* * Copyright (c) 2015 Ziver * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package wa.server.page.struct; import java.util.*; /** * Created by Ziver on 2015-04-02. */ public class WANavigation { private static int nextId; private static List root_nav = new ArrayList(); private static HashMap nav_map = new HashMap(); private int id; private String url; private String name; private ArrayList sub_navs; private WANavigation parent_nav; private Object resource; public WANavigation(String name) { this.id = nextId++; this.nav_map.put(this.id, this); this.url = "?i="+this.id; this.name = name; this.sub_navs = new ArrayList<>(); } public WANavigation(String name, Object resource) { this(name); this.setResource(resource); } public void addSubNav(WANavigation subNav) { this.sub_navs.add(subNav); subNav.setParentNav(this ); } public List getSubNav() { return sub_navs; } public Object getSubNav(String name) { int index = sub_navs.indexOf(name); if(index >= 0) return sub_navs.get(index); return null; } public String getName(){ return name; } public Object getResource(){ return resource; } public void setResource(Object obj){ resource = obj; } private void setParentNav(WANavigation nav){ this.parent_nav = nav; } public boolean equals(Object o){ if(o instanceof String) return this.name.equals(o); return this == o || (o != null && this.name.equals(((WANavigation)o).name)); } public static void addRootNav(WANavigation nav){ getRootNav().add(nav); } public static List getRootNav(){ return root_nav; } public static WANavigation getRootNav(String name){ for(WANavigation nav : root_nav){ if(nav.getName().equals(name)) return nav; } return null; } public static List getNavResource(Map request) { LinkedList list = new LinkedList(); if(request.containsKey("i")){ WANavigation current = nav_map.get(Integer.parseInt(request.get("i"))); while(current != null){ list.addFirst(current); current = current.parent_nav; } } return list; } }