/** * Copyright (C) 2009 eXo Platform SAS. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.exoplatform.portal.config.serialize; import java.util.ArrayList; import java.util.List; import java.util.StringTokenizer; import org.exoplatform.portal.config.UserACL; /** * Created by The eXo Platform SARL Author : Nhu Dinh Thuan nhudinhthuan@exoplatform.com Jun 2, 2007 */ public class JibxArraySerialize { public static String serializeStringArray(String[] values) { if (values == null || values.length == 0) { return ""; } else { StringBuilder builder = new StringBuilder(); for (int i = 0; i < values.length; i++) { if (values[i] != null) { String value = values[i].trim(); if (value.length() > 0) { if (builder.length() > 0) { builder.append(';'); } builder.append(value); } } } return builder.toString(); } } public static String[] deserializeStringArray(String text) { if (text == null) { return new String[0]; } else { text = text.trim(); if (text.length() == 0) { return new String[0]; } else { List<String> list = new ArrayList<String>(5); StringTokenizer st = new StringTokenizer(text, ";"); while (st.hasMoreTokens()) { String token = st.nextToken().trim(); if (token.length() > 0) { list.add(token); } } return list.toArray(new String[list.size()]); } } } public static String serializePermissions(String[] values) { if (values == null || values.length == 0) { return UserACL.NOBODY; } else { StringBuilder builder = new StringBuilder(); for (int i = 0; i < values.length; i++) { if (values[i] != null) { String value = values[i].trim(); if (value.length() > 0) { if (builder.length() > 0) { builder.append(';'); } builder.append(value); } } } return builder.length() == 0 ? UserACL.NOBODY : builder.toString(); } } public static String[] deserializePermissions(String text) { if (text == null) { return new String[0]; } else { text = text.trim(); if (text.length() == 0 || UserACL.NOBODY.equals(text)) { return new String[0]; } else { List<String> list = new ArrayList<String>(5); StringTokenizer st = new StringTokenizer(text, ";"); while (st.hasMoreTokens()) { String token = st.nextToken().trim(); if (token.length() > 0) { list.add(token); } } return list.toArray(new String[list.size()]); } } } }