-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReadSessions.java
120 lines (82 loc) · 3.55 KB
/
ReadSessions.java
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
/*
* Copyright (C) 2017 Willian Alves Lima
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package leitoresXML;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
import objetosXML.SupperPutty.ArrayOfSessionData;
import objetosXML.SupperPutty.SessionData;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
/**
*
* @author Willian Alves Lima
*/
public class ReadSessions {
private String arquivo ="";
private ArrayOfSessionData sessions = new ArrayOfSessionData();
public ReadSessions(String arquivo){
this.arquivo = arquivo;
}
public ArrayOfSessionData getSessions(){
return sessions;
}
public void ler() {
try {
SAXParserFactory factory = SAXParserFactory.newInstance();
SAXParser saxParser = factory.newSAXParser();
DefaultHandler handler = new DefaultHandler() {
boolean bArrayOfSessionData = false;
boolean bSessionData = false;
public void startElement(String uri, String localName,String qName,
Attributes attributes) throws SAXException {
if (qName.equalsIgnoreCase("ARRAYOFSESSIONDATA")) {
bArrayOfSessionData = true;
}
if (qName.equalsIgnoreCase("SESSIONDATA")) {
SessionData sessionData = new SessionData();
bSessionData = true;
sessionData.setSessionId(attributes.getValue("SessionId"));
sessionData.setSessionName(attributes.getValue("SessionName"));
sessionData.setImageKey(attributes.getValue("ImageKey"));
sessionData.setHost(attributes.getValue("Host"));
sessionData.setPort(attributes.getValue("Port"));
sessionData.setProto(attributes.getValue("Proto"));
sessionData.setPuttySession(attributes.getValue("PuttySession"));
sessionData.setUsername(attributes.getValue("Username"));
sessionData.setExtraArgs(attributes.getValue("ExtraArgs"));
sessions.addSessionData(sessionData);
}
}
public void endElement(String uri, String localName,
String qName) throws SAXException {
}
public void characters(char ch[], int start, int length) throws SAXException {
if (bArrayOfSessionData) {
bArrayOfSessionData = false;
}
if (bSessionData) {
bSessionData = false;
}
}
};
saxParser.parse("file:/" + arquivo, handler);
} catch (Exception e) {
e.printStackTrace();
}
}
}