JAL-2662 Tidy
[jalview.git] / benchmarking / src / main / java / org / jalview / HiddenColumnsBenchmark.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
22 package org.jalview;
23
24 import org.openjdk.jmh.annotations.Benchmark;
25 import org.openjdk.jmh.annotations.Setup;
26 import org.openjdk.jmh.annotations.State;
27 import org.openjdk.jmh.annotations.TearDown;
28 import org.openjdk.jmh.annotations.Scope;
29 import java.util.Random;
30
31 import jalview.datamodel.HiddenColumns;
32
33 /*
34  * A class to benchmark hidden columns performance
35  */
36 public class HiddenColumnsBenchmark 
37 {
38         @State(Scope.Thread)
39         public static class ThreadState
40         {
41                 HiddenColumns h = new HiddenColumns();
42                 int MAXCOLS = 100000;
43                 Random rand = new Random();
44         
45                 @Setup
46                 public void setup()
47                 {
48                         rand.setSeed(1234);
49                 for (int i=0; i<MAXCOLS; ++i)
50                 {
51                         int col = rand.nextInt(MAXCOLS); 
52                         h.hideColumns(col, col+1);
53                 }
54                 }
55         
56                 @TearDown
57                 public void tearDown()
58                 {
59                         
60                 }
61     }
62         
63         /*
64          * isVisible benchmarking
65          */
66     @Benchmark
67     public boolean benchIsVisibleLastCol(ThreadState tstate) 
68     {
69         return tstate.h.isVisible(tstate.MAXCOLS - 3); 
70     }
71     
72     @Benchmark
73     public boolean benchIsVisibleFirstCol(ThreadState tstate)
74     {
75         return tstate.h.isVisible(1);
76     }
77
78 }