FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
codeql-go/extractor/opencsv/CSVReader.java at codeql-cli-2.8.4 · github/codeql-go · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Jan 5, 2023. It is now read-only.
github
/
codeql-go
Public archive
Notifications
You must be signed in to change notification settings
Fork
127
Star
470
Code
Issues
1
Pull requests
6
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
codeql-go
/
extractor
/
opencsv
/
CSVReader.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
192 lines (166 loc) · 5.6 KB
Breadcrumbs
codeql-go
/
extractor
/
opencsv
/
CSVReader.java
Copy path
File metadata and controls
192 lines (166 loc) · 5.6 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/**
Copyright 2005 Bytecode Pty Ltd.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package
opencsv
;
import
java
.
io
.
BufferedReader
;
import
java
.
io
.
Closeable
;
import
java
.
io
.
IOException
;
import
java
.
io
.
Reader
;
import
java
.
util
.
ArrayList
;
import
java
.
util
.
List
;
/**
* A very simple CSV reader released under a commercial-friendly license.
*
* @author Glen Smith
*
*/
public
class
CSVReader
implements
Closeable
{
private
final
BufferedReader
br
;
private
boolean
hasNext
=
true
;
private
final
CSVParser
parser
;
private
final
int
skipLines
;
private
boolean
linesSkipped
;
/** The line number of the last physical line read (one-based). */
private
int
curline
=
0
;
/** The physical line number at which the last logical line read started (one-based). */
private
int
startLine
=
0
;
/**
* The default line to start reading.
*/
private
static
final
int
DEFAULT_SKIP_LINES
=
0
;
/**
* Constructs CSVReader using a comma for the separator.
*
* @param reader
* the reader to an underlying CSV source.
*/
public
CSVReader
(
Reader
reader
) {
this
(
reader
,
CSVParser
.
DEFAULT_SEPARATOR
,
CSVParser
.
DEFAULT_QUOTE_CHARACTER
,
CSVParser
.
DEFAULT_ESCAPE_CHARACTER
,
DEFAULT_SKIP_LINES
,
CSVParser
.
DEFAULT_STRICT_QUOTES
);
}
/**
* Constructs CSVReader with supplied separator and quote char.
*
* @param reader
* the reader to an underlying CSV source.
* @param separator
* the delimiter to use for separating entries
* @param quotechar
* the character to use for quoted elements
* @param escape
* the character to use for escaping a separator or quote
* @param line
* the line number to skip for start reading
* @param strictQuotes
* sets if characters outside the quotes are ignored
*/
private
CSVReader
(
Reader
reader
,
char
separator
,
char
quotechar
,
char
escape
,
int
line
,
boolean
strictQuotes
) {
this
.
br
=
new
BufferedReader
(
reader
);
this
.
parser
=
new
CSVParser
(
separator
,
quotechar
,
escape
,
strictQuotes
);
this
.
skipLines
=
line
;
}
/**
* Reads the entire file into a List with each element being a String[] of
* tokens.
*
* @return a List of String[], with each String[] representing a line of the
* file.
*
* @throws IOException
* if bad things happen during the read
*/
public
List
<
String
[]>
readAll
()
throws
IOException
{
List
<
String
[]>
allElements
=
new
ArrayList
<
String
[]>();
while
(
hasNext
) {
String
[]
nextLineAsTokens
=
readNext
();
if
(
nextLineAsTokens
!=
null
)
allElements
.
add
(
nextLineAsTokens
);
}
return
allElements
;
}
/**
* Reads the next line from the buffer and converts to a string array.
*
* @return a string array with each comma-separated element as a separate
* entry, or null if there are no more lines to read.
*
* @throws IOException
* if bad things happen during the read
*/
public
String
[]
readNext
()
throws
IOException
{
boolean
first
=
true
;
String
[]
result
=
null
;
do
{
String
nextLine
=
getNextLine
();
if
(
first
) {
startLine
=
curline
;
first
=
false
;
}
if
(!
hasNext
) {
return
result
;
// should throw if still pending?
}
String
[]
r
=
parser
.
parseLineMulti
(
nextLine
);
if
(
r
.
length
>
0
) {
if
(
result
==
null
) {
result
=
r
;
}
else
{
String
[]
t
=
new
String
[
result
.
length
+
r
.
length
];
System
.
arraycopy
(
result
,
0
,
t
,
0
,
result
.
length
);
System
.
arraycopy
(
r
,
0
,
t
,
result
.
length
,
r
.
length
);
result
=
t
;
}
}
}
while
(
parser
.
isPending
());
return
result
;
}
/**
* Reads the next line from the file.
*
* @return the next line from the file without trailing newline
* @throws IOException
* if bad things happen during the read
*/
private
String
getNextLine
()
throws
IOException
{
if
(!
this
.
linesSkipped
) {
for
(
int
i
=
0
;
i
<
skipLines
;
i
++) {
br
.
readLine
();
++
curline
;
}
this
.
linesSkipped
=
true
;
}
String
nextLine
=
br
.
readLine
();
if
(
nextLine
==
null
) {
hasNext
=
false
;
}
else
{
++
curline
;
}
return
hasNext
?
nextLine
:
null
;
}
/**
* Closes the underlying reader.
*
* @throws IOException if the close fails
*/
@
Override
public
void
close
()
throws
IOException
{
br
.
close
();
}
/**
* Return the physical line number (one-based) at which the last logical line read started,
* or zero if no line has been read yet.
*/
public
int
getStartLine
() {
return
startLine
;
}
}
Back
|
FazBrowse Home
|
New Git URL