• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0"?>
2<!--
3   Licensed to the Apache Software Foundation (ASF) under one or more
4   contributor license agreements.  See the NOTICE file distributed with
5   this work for additional information regarding copyright ownership.
6   The ASF licenses this file to You under the Apache License, Version 2.0
7   (the "License"); you may not use this file except in compliance with
8   the License.  You may obtain a copy of the License at
9
10       http://www.apache.org/licenses/LICENSE-2.0
11
12   Unless required by applicable law or agreed to in writing, software
13   distributed under the License is distributed on an "AS IS" BASIS,
14   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   See the License for the specific language governing permissions and
16   limitations under the License.
17-->
18
19<!--
20  This file contains some false positive bugs detected by findbugs. Their
21  false positive nature has been analyzed individually and they have been
22  put here to instruct findbugs it must ignore them.
23-->
24<FindBugsFilter>
25
26  <!-- Reason: References to System.out/err == -->
27  <Match>
28    <Class name="org.apache.commons.compress.archivers.Lister" />
29    <Or>
30      <Method name="main" />
31      <Method name="usage" />
32    </Or>
33    <Bug pattern="NP_ALWAYS_NULL" />
34  </Match>
35  <Match>
36    <Class name="org.apache.commons.compress.archivers.zip.ZipFile" />
37    <Method name="finalize" />
38    <Bug pattern="NP_ALWAYS_NULL" />
39  </Match>
40  <Match>
41    <Class name="org.apache.commons.compress.archivers.dump.DumpArchiveUtil" />
42    <Method name="dumpBlock" />
43    <Bug pattern="NP_ALWAYS_NULL" />
44  </Match>
45
46  <!-- Reason: fallthrough is intended -->
47  <Match>
48    <Class name="org.apache.commons.compress.archivers.zip.ExtraFieldUtils" />
49    <Method name="parse" />
50    <Bug pattern="SF_SWITCH_FALLTHROUGH" />
51  </Match>
52  <Match>
53    <Class name="org.apache.commons.compress.compressors.lz4.BlockLZ4CompressorInputStream" />
54    <Method name="read" />
55    <Bug pattern="SF_SWITCH_FALLTHROUGH" />
56  </Match>
57
58  <!-- Reason: fields unused as documented -->
59  <Match>
60    <Class name="org.apache.commons.compress.archivers.jar.JarArchiveEntry" />
61    <Or>
62      <Field name="certificates"/>
63      <Field name="manifestAttributes"/>
64    </Or>
65    <Bug pattern="UWF_NULL_FIELD" />
66  </Match>
67  <Match>
68    <Class name="org.apache.commons.compress.archivers.dump.DumpArchiveEntry" />
69    <Field name="summary"/>
70    <Bug pattern="UWF_NULL_FIELD" />
71  </Match>
72  <Match>
73    <Class name="org.apache.commons.compress.archivers.sevenz.Folder" />
74    <Or>
75      <Field name="totalInputStreams"/>
76    </Or>
77    <Bug pattern="URF_UNREAD_FIELD" />
78  </Match>
79
80  <!-- Reason: exception in close swallowed in order to re-throw original in caller -->
81  <Match>
82    <Class name="org.apache.commons.compress.utils.IOUtils" />
83    <Method name="closeQuietly" />
84    <Bug pattern="DE_MIGHT_IGNORE" />
85  </Match>
86
87  <!-- Reason: skip(Long.MAX_VALUE) called to drain stream completely,
88       the class overrides skip to ensure it reads the full amount
89       until EOF is reached -->
90  <Match>
91    <Class name="org.apache.commons.compress.archivers.zip.ZipArchiveInputStream" />
92    <Method name="closeEntry" />
93    <Bug pattern="SR_NOT_CHECKED" />
94  </Match>
95  <Match>
96    <Class name="org.apache.commons.compress.archivers.tar.TarArchiveInputStream" />
97    <Method name="getNextTarEntry" />
98    <Bug pattern="SR_NOT_CHECKED" />
99  </Match>
100
101  <!-- Reason: trying to delete a temporary file that has deleteOnExit set
102       anyway -->
103  <Match>
104    <Class name="org.apache.commons.compress.compressors.pack200.Pack200Utils" />
105    <Method name="normalize" />
106    <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE" />
107  </Match>
108  <Match>
109    <Class name="org.apache.commons.compress.compressors.pack200.TempFileCachingStreamBridge$1" />
110    <Method name="close" />
111    <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE" />
112  </Match>
113
114  <!-- Reason: It is the Pack200*Stream that's going to close it. -->
115  <Match>
116    <Class name="org.apache.commons.compress.compressors.pack200.TempFileCachingStreamBridge$1" />
117    <Method name="&lt;init&gt;" />
118    <Bug pattern="OBL_UNSATISFIED_OBLIGATION" />
119  </Match>
120
121  <!-- Reason: the contract is to use default encoding (unless told otherwise) -->
122  <Match>
123    <Class name="org.apache.commons.compress.archivers.arj.ArjArchiveInputStream" />
124    <Method name="readString" />
125    <Bug pattern="DM_DEFAULT_ENCODING" />
126  </Match>
127  <Match>
128    <Class name="org.apache.commons.compress.archivers.zip.AsiExtraField" />
129    <Or>
130      <Method name="getLocalFileDataData" />
131      <Method name="getLocalFileDataLength" />
132      <Method name="parseFromLocalFileData" />
133    </Or>
134    <Bug pattern="DM_DEFAULT_ENCODING" />
135  </Match>
136  <Match>
137    <Class name="org.apache.commons.compress.archivers.zip.FallbackZipEncoding" />
138    <Or>
139      <Method name="decode" />
140      <Method name="encode" />
141    </Or>
142    <Bug pattern="DM_DEFAULT_ENCODING" />
143  </Match>
144
145  <!-- Reason: default encoding is good enough for exception message -->
146  <Match>
147    <Class name="org.apache.commons.compress.archivers.tar.TarUtils" />
148    <Method name="exceptionMessage" />
149    <Bug pattern="DM_DEFAULT_ENCODING" />
150  </Match>
151
152  <!-- Reason: unrolled loop, all possible cases are covered -->
153  <Match>
154    <Class name="org.apache.commons.compress.compressors.snappy.PureJavaCrc32C" />
155    <Method name="update" />
156    <Bug pattern="SF_SWITCH_NO_DEFAULT" />
157  </Match>
158
159  <!-- Reason: class only adds unused always-null fields and superclass' equals is sufficient -->
160  <Match>
161    <Class name="org.apache.commons.compress.archivers.jar.JarArchiveEntry" />
162    <Method name="equals" />
163    <Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS" />
164  </Match>
165
166  <!-- Reason: failure to delete a file that may not exist. And we really don't care that much either -->
167  <Match>
168    <Class name="org.apache.commons.compress.parallel.FileBasedScatterGatherBackingStore" />
169    <Method name="close" />
170    <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE" />
171  </Match>
172
173  <!-- Reason: nested code can throw IllegalArgumentException if
174       stream is not a TAR stream -->
175  <Match>
176    <Class name="org.apache.commons.compress.archivers.ArchiveStreamFactory" />
177    <Method name="createArchiveInputStream" />
178    <Bug pattern="REC_CATCH_EXCEPTION" />
179  </Match>
180
181  <!-- the class wants to allow outside access to the array, just like
182       ByteBuffer.wrap does -->
183  <Match>
184    <Class name="org.apache.commons.compress.utils.SeekableInMemoryByteChannel" />
185    <Method name="array" />
186    <Bug pattern="EI_EXPOSE_REP" />
187  </Match>
188  <Match>
189    <Class name="org.apache.commons.compress.utils.SeekableInMemoryByteChannel" />
190    <Method name="&lt;init&gt;" />
191    <Bug pattern="EI_EXPOSE_REP2" />
192  </Match>
193
194  <!-- the array is exposed deliberately to improve performance and it
195       is documented that way -->
196  <Match>
197    <Class name="org.apache.commons.compress.compressors.lz77support.LZ77Compressor$LiteralBlock" />
198    <Method name="getData" />
199    <Bug pattern="EI_EXPOSE_REP" />
200  </Match>
201  <Match>
202    <Class name="org.apache.commons.compress.compressors.lz77support.LZ77Compressor$LiteralBlock" />
203    <Method name="&lt;init&gt;" />
204    <Bug pattern="EI_EXPOSE_REP2" />
205  </Match>
206
207</FindBugsFilter>
208