c927f1f4b53818f04f2b806ad76a6c904bdcf2b0
[jalview.git] / src / jalview / bin / ArgsParser.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.bin;
22
23 import java.net.URLDecoder;
24 import java.util.Vector;
25
26 /**
27  * Notes: this argParser does not distinguish between parameter switches,
28  * parameter values and argument text. If an argument happens to be identical to
29  * a parameter, it will be taken as such (even though it didn't have a '-'
30  * prefixing it).
31  * 
32  * @author Andrew Waterhouse and JBP documented.
33  * 
34  */
35 public class ArgsParser
36 {
37   Vector<String> vargs = null;
38
39   public ArgsParser(String[] args)
40   {
41     vargs = new Vector<String>();
42     for (int i = 0; i < args.length; i++)
43     {
44       String arg = args[i].trim();
45       if (arg.charAt(0) == '-')
46       {
47         arg = arg.substring(1);
48       }
49       vargs.addElement(arg);
50     }
51   }
52
53   /**
54    * check for and remove first occurence of arg+parameter in arglist.
55    * 
56    * @param arg
57    * @return return the argument following the given arg if arg was in list.
58    */
59   public String getValue(String arg)
60   {
61     return getValue(arg, false);
62   }
63
64   public String getValue(String arg, boolean utf8decode)
65   {
66     int index = vargs.indexOf(arg);
67     String dc = null, ret = null;
68     if (index != -1)
69     {
70       ret = vargs.elementAt(index + 1).toString();
71       vargs.removeElementAt(index);
72       vargs.removeElementAt(index);
73       if (utf8decode && ret != null)
74       {
75         try
76         {
77           dc = URLDecoder.decode(ret, "UTF-8");
78           ret = dc;
79         } catch (Exception e)
80         {
81           // TODO: log failure to decode
82         }
83       }
84     }
85     return ret;
86   }
87
88   /**
89    * check for and remove first occurence of arg in arglist.
90    * 
91    * @param arg
92    * @return true if arg was present in argslist.
93    */
94   public boolean contains(String arg)
95   {
96     if (vargs.contains(arg))
97     {
98       vargs.removeElement(arg);
99       return true;
100     }
101     else
102     {
103       return false;
104     }
105   }
106
107   public String nextValue()
108   {
109     return vargs.remove(0);
110   }
111
112   public int getSize()
113   {
114     return vargs.size();
115   }
116
117 }