/Screen/Tools/SBS/src/main/java/screen/tools/sbs/actions/defaults/ActionAddFlagsTinyPack.java

http://sbs.googlecode.com/ · Java · 93 lines · 44 code · 11 blank · 38 comment · 0 complexity · 775274c400db27beca99bf07009047b6 MD5 · raw file

  1. /*****************************************************************************
  2. * This source file is part of SBS (Screen Build System), *
  3. * which is a component of Screen Framework *
  4. * *
  5. * Copyright (c) 2008-2011 Ratouit Thomas *
  6. * *
  7. * This program is free software; you can redistribute it and/or modify it *
  8. * under the terms of the GNU Lesser General Public License as published by *
  9. * the Free Software Foundation; either version 3 of the License, or (at *
  10. * your option) any later version. *
  11. * *
  12. * This program is distributed in the hope that it will be useful, but *
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of *
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser *
  15. * General Public License for more details. *
  16. * *
  17. * You should have received a copy of the GNU Lesser General Public License *
  18. * along with this program; if not, write to the Free Software Foundation, *
  19. * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA, or go to *
  20. * http://www.gnu.org/copyleft/lesser.txt. *
  21. *****************************************************************************/
  22. package screen.tools.sbs.actions.defaults;
  23. import java.util.Iterator;
  24. import java.util.Set;
  25. import org.json.simple.JSONObject;
  26. import screen.tools.sbs.actions.Action;
  27. import screen.tools.sbs.context.ContextException;
  28. import screen.tools.sbs.context.ContextHandler;
  29. import screen.tools.sbs.context.defaults.ContextKeys;
  30. import screen.tools.sbs.context.defaults.TinyPackContext;
  31. import screen.tools.sbs.objects.Flag;
  32. import screen.tools.sbs.objects.TinyPack;
  33. import screen.tools.sbs.utils.FieldException;
  34. import screen.tools.sbs.utils.FieldJSONObject;
  35. /**
  36. * Action to generate a basic component.
  37. *
  38. * @author Ratouit Thomas
  39. *
  40. */
  41. public class ActionAddFlagsTinyPack implements Action {
  42. private String field;
  43. private ContextHandler contextHandler;
  44. /**
  45. *
  46. */
  47. public ActionAddFlagsTinyPack() {
  48. field = null;
  49. }
  50. /**
  51. * Performs create action.
  52. * @throws ContextException
  53. * @throws FieldException
  54. */
  55. public void perform() throws ContextException, FieldException {
  56. TinyPack pack = contextHandler.<TinyPackContext>get(ContextKeys.TINY_PACK).getPack();
  57. addFromField(pack,field);
  58. }
  59. public void setContext(ContextHandler contextHandler) {
  60. this.contextHandler = contextHandler;
  61. }
  62. public static void addFromField(TinyPack pack, String field) throws FieldException {
  63. FieldJSONObject fieldJSONObject = new FieldJSONObject(field);
  64. JSONObject flagsObject = fieldJSONObject.getJSONObject();
  65. Set<?> keySet = flagsObject.keySet();
  66. Iterator<?> iterator = keySet.iterator();
  67. while(iterator.hasNext()){
  68. Object next = iterator.next();
  69. String key = (String) next;
  70. Flag flag = new Flag();
  71. flag.setFlag(key);
  72. flag.setValue(flagsObject.get(key));
  73. pack.addFlag(flag);
  74. }
  75. }
  76. /**
  77. * @param field
  78. */
  79. public void setField(String field) {
  80. this.field = field;
  81. }
  82. }