-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtMongoDBXMLOutput_begin.javajet
327 lines (302 loc) · 15 KB
/
tMongoDBXMLOutput_begin.javajet
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
<%@ jet
imports="
org.talend.core.model.process.INode
org.talend.core.model.process.ElementParameterParser
org.talend.core.model.metadata.IMetadataTable
org.talend.designer.codegen.config.CodeGeneratorArgument
java.util.List
java.util.Map
"
%>
<%
CodeGeneratorArgument codeGenArgument = (CodeGeneratorArgument) argument;
INode node = (INode)codeGenArgument.getArgument();
String cid = node.getUniqueName();
String dbhost = ElementParameterParser.getValue(node, "__HOST__");
String dbname = ElementParameterParser.getValue(node, "__DATABASE__");
boolean authentication="true".equalsIgnoreCase(ElementParameterParser.getValue(node, "__REQUIRED_AUTHENTICATION__"));
String authenticationMechanism = ElementParameterParser.getValue(node, "__AUTHENTICATION_MECHANISM__");
String krbUserPrincipal = ElementParameterParser.getValue(node, "__KRB_USER_PRINCIPAL__");
String krbRealm = ElementParameterParser.getValue(node, "__KRB_REALM__");
String krbKdc = ElementParameterParser.getValue(node, "__KRB_KDC__");
String dbuser = ElementParameterParser.getValue(node, "__USERNAME__");
String dbpass = ElementParameterParser.getValue(node, "__PASSWORD__");
String mongoPort = ElementParameterParser.getValue(node, "__PORT__");
String dbport = mongoPort.startsWith("context.") ? "Integer.valueOf(" + mongoPort + ").intValue()" : mongoPort.replace("\"", "");
String collection=ElementParameterParser.getValue(node, "__COLLECTION__");
boolean dropExistCollection="true".equalsIgnoreCase(ElementParameterParser.getValue(node,"__DROP_COLLECTION_CREATE__"));
boolean useExistingConnection = "true".equalsIgnoreCase(ElementParameterParser.getValue(node,"__USE_EXISTING_CONNECTION__"));
String dbversion = ElementParameterParser.getValue(node, "__DB_VERSION__");
List<Map<String, String>> mapping = (List<Map<String,String>>)ElementParameterParser.getObjectValueXML(node, "__MAPPING__");
boolean useReplicaSet="true".equalsIgnoreCase(ElementParameterParser.getValue(node, "__USE_REPLICA_SET__"));
boolean setWriteConcern = "true".equalsIgnoreCase(ElementParameterParser.getValue(node, "__SET_WRITE_CONCERN__"));
String writeConcern = ElementParameterParser.getValue(node, "__WRITE_CONCERN__");
boolean setBulkWrite = "true".equalsIgnoreCase(ElementParameterParser.getValue(node, "__SET_BULK_WRITE__"));
String bulkWriteOperationSize = ElementParameterParser.getValue(node, "__BULK_WRITE_SIZE__");
String bulkWriteType = ElementParameterParser.getValue(node, "__BULK_WRITE_TYPE__");
// BulkWrite is only supportted on Mongo 2.6+ drivers
final boolean bulkWrite = setBulkWrite & (!"MONGODB_2_5_X".equalsIgnoreCase(dbversion));
boolean isLog4jEnabled = ("true").equals(ElementParameterParser.getValue(node.getProcess(), "__LOG4J_ACTIVATE__"));
%>
int nb_line_<%=cid %> = 0;
<%
List<IMetadataTable> metadatas = node.getMetadataList();
if(metadatas != null && metadatas.size() > 0){
IMetadataTable metadata = metadatas.get(0);
if(metadata != null){
%>
class DBObjectUtil_<%=cid%> {
private java.text.SimpleDateFormat isoDateFormat = new java.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
public DBObjectUtil_<%=cid%>() { isoDateFormat.setTimeZone(java.util.TimeZone.getTimeZone("UTC")); }
private com.mongodb.BasicDBObject toMongo (routines.system.Document doc) {
org.dom4j.Element root = doc.getDocument().getRootElement();
return (com.mongodb.BasicDBObject)valueToMongo(root);
}
private Object valueToMongo (org.dom4j.Element e) {
String text = e.getTextTrim();
if (!"".equals(text)) {
String type = e.attributeValue("type");
if (type != null) {
type = type.toLowerCase();
if (type.equals("int") || type.equals("integer")) {
return Integer.parseInt(text);
} else if (type.equals("boolean")) {
text = text.toLowerCase();
if ("false".equals(text)) {
return new Boolean(false);
} else if ("true".equals(text)) {
return new Boolean(true);
}
} else if (type.equals("date") || type.equals("isodate")) {
try {
return isoDateFormat.parse(text);
} catch (ParseException ex) {
throw new RuntimeException(ex);
}
}
}
return text;
} else if (e.element("item") != null) {
com.mongodb.BasicDBList result = new com.mongodb.BasicDBList();
for (java.util.Iterator<org.dom4j.Element> i = e.elementIterator("item"); i.hasNext();) {
org.dom4j.Element sub = i.next();
result.add(valueToMongo(sub));
}
return result;
} else {
com.mongodb.BasicDBObject result = new com.mongodb.BasicDBObject();
for (java.util.Iterator<org.dom4j.Element> i = e.elementIterator(); i.hasNext();) {
org.dom4j.Element sub = i.next();
String name = sub.getName();
result.put(name, valueToMongo(sub));
}
return result;
}
}
private com.mongodb.BasicDBObject object = null;
//Put value to embedded document
//If have no embedded document, put the value to root document
public void put(String parentNode, String curentName, Object value) {
if (value instanceof routines.system.Document) {
object = toMongo((routines.system.Document)value);
} else if (parentNode == null || "".equals(parentNode)) {
object.put(curentName, value);
} else {
String objNames[]= parentNode.split("\\.");
com.mongodb.BasicDBObject lastNode = getParentNode(parentNode, objNames.length-1);
lastNode.put(curentName, value);
com.mongodb.BasicDBObject parenttNode = null;
for (int i = objNames.length - 1; i >=0; i--) {
parenttNode=getParentNode(parentNode, i-1);
parenttNode.put(objNames[i], lastNode);
lastNode=(com.mongodb.BasicDBObject)parenttNode.clone();
}
object=lastNode;
}
}
//Get node(embedded document) by path configuration
public com.mongodb.BasicDBObject getParentNode(String parentNode, int index) {
com.mongodb.BasicDBObject basicDBObject = object;
if (parentNode == null || "".equals(parentNode)) {
return object;
} else {
String objNames[] = parentNode.split("\\.");
for (int i = 0; i <= index; i++) {
basicDBObject = (com.mongodb.BasicDBObject) basicDBObject
.get(objNames[i]);
if (basicDBObject == null) {
basicDBObject = new com.mongodb.BasicDBObject();
return basicDBObject;
}
if (i == index) {
break;
}
}
return basicDBObject;
}
}
public void putkeyNode(String parentNode, String curentName, Object value){
if (parentNode == null || "".equals(parentNode) || ".".equals(parentNode)) {
put(parentNode, curentName, value);
}else{
put("", parentNode+"."+curentName, value);
}
}
public com.mongodb.BasicDBObject getObject() {
return this.object;
}
public void setObject(com.mongodb.BasicDBObject object){
this.object=object;
}
}
DBObjectUtil_<%=cid%> updateObjectUtil_<%=cid%>=new DBObjectUtil_<%=cid%>();
DBObjectUtil_<%=cid%> queryObjectUtil_<%=cid%>=new DBObjectUtil_<%=cid%>();
java.util.Map<String, String> pathMap_<%=cid%>=new java.util.HashMap<String, String>();
com.mongodb.Mongo mongo_<%=cid%>=null;
com.mongodb.DB db_<%=cid%> =null;
<%
for (int i=0;i<mapping.size();i++) {
String path = mapping.get(i).get("PARENT_NODE_PATH");
if(path==null || "".equals(path)){
path="\"\"";
}
String schemaColumn=mapping.get(i).get("SCHEMA_COLUMN");
%>
pathMap_<%=cid%>.put("<%=schemaColumn%>",<%=path%>);
<%
}
if (useExistingConnection){
String connection = ElementParameterParser.getValue(node, "__CONNECTION__");
%>
mongo_<%=cid%>=(com.mongodb.Mongo)globalMap.get("mongo_<%=connection%>");
db_<%=cid%> = (com.mongodb.DB) globalMap.get("db_<%=connection%>");
<%
if(isLog4jEnabled){
%>
log.info("<%=cid%> - Get an existing client from " + "<%=connection%>" + ".");
log.info("<%=cid%> - Get an existing DB from " + "<%=connection%>" + ".");
<%
}
}else{
List<Map<String,String>> replicaAddrs= (List<Map<String,String>>)ElementParameterParser.getObjectValue(node, "__REPLICA_SET__");
boolean useSSL = "true".equalsIgnoreCase(ElementParameterParser.getValue(node, "__USE_SSL__"));
String mongoDbDriver = "com.mongodb.MongoClient";
%>
// Empty client options
com.mongodb.MongoClientOptions clientOptions_<%=cid%> = new com.mongodb.MongoClientOptions.Builder().build();
<%
if (useSSL) {
%>
clientOptions_<%=cid%> = new com.mongodb.MongoClientOptions.Builder()
.socketFactory(javax.net.ssl.SSLSocketFactory.getDefault())
.build();
<%
}
// Client Credentials
%>
// Empty client credentials list
java.util.List<com.mongodb.MongoCredential> mongoCredentialList_<%=cid%> = new java.util.ArrayList<com.mongodb.MongoCredential>();
<%
// Authentication
if (authentication){
%>
com.mongodb.MongoCredential mongoCredential_<%=cid%>;
<%
if((authenticationMechanism.equals("NEGOTIATE_MEC"))||(authenticationMechanism.equals("PLAIN_MEC"))||(authenticationMechanism.equals("SCRAMSHA1_MEC"))){
String passwordFieldName = "__PASSWORD__";
%>
<%@ include file="@{org.talend.designer.components.localprovider}/components/templates/password.javajet"%>
<%
if(authenticationMechanism.equals("NEGOTIATE_MEC")){
if(dbversion.equals("MONGODB_3_0_X")) {
%>
mongoCredential_<%=cid%> = com.mongodb.MongoCredential.createCredential(<%=dbuser%>, <%=dbname%>, new String(decryptedPassword_<%=cid%>).toCharArray());
<%
} else {
%>
mongoCredential_<%=cid%> = com.mongodb.MongoCredential.createMongoCRCredential(<%=dbuser%>, <%=dbname%>, new String(decryptedPassword_<%=cid%>).toCharArray());
<%
}
} else if(authenticationMechanism.equals("PLAIN_MEC")){
%>
mongoCredential_<%=cid%> = com.mongodb.MongoCredential.createPlainCredential(<%=dbuser%>, "$external", new String(decryptedPassword_<%=cid%>).toCharArray());
<%
} else if(authenticationMechanism.equals("SCRAMSHA1_MEC")){
%>
mongoCredential_<%=cid%> = com.mongodb.MongoCredential.createScramSha1Credential(<%=dbuser%>, <%=dbname%>, new String(decryptedPassword_<%=cid%>).toCharArray());
<%
}
} else { // GSSAPI SASL (KERBEROS)
%>
System.setProperty("java.security.krb5.realm", <%=krbRealm%>);
System.setProperty("java.security.krb5.kdc", <%=krbKdc%>);
System.setProperty("javax.security.auth.useSubjectCredsOnly", "false");
mongoCredential_<%=cid%> = com.mongodb.MongoCredential.createGSSAPICredential(<%=krbUserPrincipal%>);
<%
}
%>
mongoCredentialList_<%=cid%>.add(mongoCredential_<%=cid%>);
<%
}
// the client
if(useReplicaSet){
%>
List<com.mongodb.ServerAddress> addrs_<%=cid%> = new java.util.ArrayList<com.mongodb.ServerAddress>();
<%
for(Map<String,String> replicaAddr:replicaAddrs){
%>
addrs_<%=cid%>.add(new com.mongodb.ServerAddress(<%=replicaAddr.get("REPLICA_HOST")%>,<%=replicaAddr.get("REPLICA_PORT")%>));
<%
}
%>
mongo_<%=cid%> = new <%=mongoDbDriver%>(addrs_<%=cid%>, mongoCredentialList_<%=cid%>, clientOptions_<%=cid%>);
<%
}else{
%>
com.mongodb.ServerAddress serverAddress_<%=cid%> = new com.mongodb.ServerAddress(<%=dbhost%>, <%=dbport%>);
mongo_<%=cid%> = new <%=mongoDbDriver%>(serverAddress_<%=cid%>, mongoCredentialList_<%=cid%>, clientOptions_<%=cid%>);
<%
}
%>
resourceMap.put("mongo_<%=cid%>", mongo_<%=cid%>);
db_<%=cid%> = mongo_<%=cid%>.getDB(<%=dbname%>);
<%
}
if(setWriteConcern){
%>
mongo_<%=cid%>.setWriteConcern(com.mongodb.WriteConcern.<%=writeConcern%>);
<%
}
%>
<%
if(isLog4jEnabled){
%>
log.info("<%=cid%> - Connecting to " + mongo_<%=cid%>.getServerAddressList() + ".");
<%
}
if(dropExistCollection){
%>
if(db_<%=cid%>.collectionExists(<%=collection%>)){
db_<%=cid%>.getCollection(<%=collection%>).drop();
}
<%
}
%>
com.mongodb.DBCollection coll_<%=cid%> = db_<%=cid%>.getCollection(<%=collection%>);
<%
// BulkWrite
if(bulkWrite){
%>
com.mongodb.BulkWriteOperation bulkWriteOperation_<%=cid%> = coll_<%=cid%>.initialize<%=bulkWriteType%>BulkOperation();
int bulkWriteOperationCounter_<%=cid%> = 1;
int bulkWriteOperationSize_<%=cid%> = Integer.parseInt(<%=bulkWriteOperationSize%>);
<%
}
if (isLog4jEnabled) {
%>
log.info("<%=cid%> - Start to write data into database [" + db_<%=cid%>.getName() + "].");
<%
}
}
}
%>