aboutsummaryrefslogtreecommitdiffstats
path: root/appc-config/appc-config-adaptor/provider/src/main/java/org/openecomp/appc/ccadaptor/SshJcraftWrapper.java
blob: 4d216940186f04c14560c48b266c8d511e0261ab (plain)
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
/*-
 * ============LICENSE_START=======================================================
 * ONAP : APPC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Copyright (C) 2017 Amdocs
 * =============================================================================
 * 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.
 *
 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.appc.ccadaptor;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.*;
import java.util.*;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import com.jcraft.jsch.*;

public class SshJcraftWrapper
{

    private String debugLogFileName = "/tmp/sshJcraftWrapperDebug";
    InputStream inputStream = null;
    OutputStream outputStream = null;
    private TelnetListener listener = null;
    private String routerLogFileName = null;
    DebugLog debugLog = new DebugLog();
    private String host = null;
    private String RouterName = null;
    private int BUFFER_SIZE = 512000;
    // private int BUFFER_SIZE = 4000000;
    private DataInputStream dis = null;
    private BufferedReader reader = null;
    char[] charBuffer = new char[BUFFER_SIZE];
    private BufferedWriter out = null;
    private File _tmpFile = null;
    private JSch jsch = null;
    private Session session = null;
    private Channel channel = null;
    private String tId = "";
    private String aggregatedReceivedString = "";
    private File extraDebugFile = new File("/tmp/sshJcraftWrapperDEBUG");
    private String routerCmdType = "XML";
    private String routerFileName = null;
    private File  jcraftReadSwConfigFileFromDisk = new File("/tmp/jcraftReadSwConfigFileFromDisk");
  private String equipNameCode = null;
  private String hostName = null;
  private String userName = null;
  private String passWord = null;
    private StringBuffer charactersFromBufferFlush = new StringBuffer();
  private Runtime runtime = Runtime.getRuntime();
  private DebugLog dbLog = new DebugLog();

    public void SshJcraftWrapper()
    {
        String fn = "SshJcraftWrapper.SshJcraftWrapper";
        debugLog.printRTAriDebug (fn, "SshJcraftWrapper has been instantated");
        routerLogFileName = "/tmp/" +host;
        this.host = host;
    }

    public void connect (String hostname, String username, String password, String prompt, int timeOut) throws IOException
    {
        String fn = "SshJcraftWrapper.connect";
        jsch = new JSch();
        debugLog.printRTAriDebug (fn, "Attempting to connect to "+hostname +" username="+username +" password="+password + " prompt='"+prompt +"' timeOut="+timeOut);
        debugLog.printRTAriDebug (fn, "Trace A");
        RouterName = hostname;
    hostName = hostname;
    userName = username;
    passWord = password;
        try
        {
            session = jsch.getSession(username, hostname, 22);
            UserInfo ui = new MyUserInfo();
            session.setPassword(password);
            session.setUserInfo(ui);
            session.connect(timeOut);
            channel = session.openChannel("shell");
            session.setServerAliveCountMax(0); // If this is not set to '0', then socket timeout on all reads will not work!!!!
            ((ChannelShell)channel).setPtyType("vt102");
            inputStream = channel.getInputStream();
            dis = new DataInputStream(inputStream);
            reader = new BufferedReader(new InputStreamReader(dis), BUFFER_SIZE);
            channel.connect();
            debugLog.printRTAriDebug (fn, "Successfully connected.");
            debugLog.printRTAriDebug (fn, "Flushing input buffer");
      try
      {
        receiveUntil(prompt, 3000, "No cmd was sent, just waiting");
      }
          catch (Exception e)
          {
              debugLog.printRTAriDebug (fn, "Caught an Exception: Nothing to flush out.");
      }
        }
        catch (Exception e)
        {
            debugLog.printRTAriDebug (fn, "Caught an Exception. e="+e);
      // dbLog.storeData("ErrorMsg= Exception trying to connect to "+hostname +" "+e);
            throw new IOException(e.toString());
        }
    }

    // User specifies the port number.
    public void connect (String hostname, String username, String password, String prompt, int timeOut, int portNum) throws IOException
    {
        String fn = "SshJcraftWrapper.connect";
        debugLog.printRTAriDebug (fn, ":Attempting to connect to "+hostname +" username="+username +" password="+password + " prompt='"+prompt +"' timeOut="+timeOut +" portNum="+portNum);
        RouterName = hostname;
    hostName = hostname;
    userName = username;
    passWord = password;
        RouterName = hostname;
        jsch = new JSch();
        try
        {
            session = jsch.getSession(username, hostname, portNum);
            UserInfo ui = new MyUserInfo();
            session.setPassword(password);
            session.setUserInfo(ui);
      session.setConfig("StrictHostKeyChecking", "no");
            debugLog.printRTAriDebug (fn, ":StrictHostKeyChecking set to 'no'");

            session.connect(timeOut);
            session.setServerAliveCountMax(0); // If this is not set to '0', then socket timeout on all reads will not work!!!!
            channel = session.openChannel("shell");
            ((ChannelShell)channel).setPtyType("vt102");
            inputStream = channel.getInputStream();
            dis = new DataInputStream(inputStream);
            reader = new BufferedReader(new InputStreamReader(dis), BUFFER_SIZE);
            channel.connect();
            debugLog.printRTAriDebug (fn, ":Successfully connected.");
            debugLog.printRTAriDebug (fn, ":Flushing input buffer");
      try
      {
        if (prompt.equals("]]>]]>"))
          receiveUntil("]]>]]>", 10000, "No cmd was sent, just waiting");
        else
          receiveUntil(":~#", 5000, "No cmd was sent, just waiting");
      }
          catch (Exception e)
          {
              debugLog.printRTAriDebug (fn, "Caught an Exception::: Nothing to flush out.");
      }
        }
        catch (Exception e)
        {
            debugLog.printRTAriDebug (fn, ":Caught an Exception. e="+e);
      dbLog.outputStackTrace(e);

      // dbLog.storeData("ErrorMsg= Exception trying to connect to "+hostname +" "+e);
            throw new IOException(e.toString());
        }
    }


    public String receiveUntil (String delimeters, int timeout, String cmdThatWasSent) throws TimedOutException, IOException
    {
        String fn = "SshJcraftWrapper.receiveUntil";
        boolean match = false;
        boolean cliPromptCmd = false;
        StringBuffer sb2 = new StringBuffer();
        StringBuffer sbReceive = new StringBuffer();
        debugLog.printRTAriDebug (fn, "delimeters='"+delimeters +"' timeout="+timeout +" cmdThatWasSent='"+cmdThatWasSent +"'");
    appendToFile(debugLogFileName, fn +" delimeters='"+delimeters +"' timeout="+timeout +" cmdThatWasSent='"+cmdThatWasSent +"'\n");
        String CmdThatWasSent = removeWhiteSpaceAndNewLineCharactersAroundString(cmdThatWasSent);
        int readCounts = 0;
        aggregatedReceivedString = "";

        long  deadline = new Date().getTime() + timeout;
        try
        {
            session.setTimeout(timeout);  // This is the socket timeout value.
            while (!match)
            {
                if(new Date().getTime() > deadline)
                {
                    debugLog.printRTAriDebug (fn, "Throwing a TimedOutException: time in routine has exceed our deadline: RouterName:"+RouterName +" CmdThatWasSent="+ CmdThatWasSent);
                    throw new TimedOutException("Timeout: time in routine has exceed our deadline");
                }
        try
                {
                    Thread.sleep(500);
                }
                catch (java.lang.InterruptedException ee)
                {
                    boolean ignore = true;
                }
                int len =  reader.read(charBuffer, 0, BUFFER_SIZE);
                appendToFile(debugLogFileName, fn +" After reader.read cmd: len="+len +"\n");
                if (len <= 0)
                {
                    debugLog.printRTAriDebug (fn, "Reader read "+len  +" bytes. Looks like we timed out, router="+RouterName);
                    throw new TimedOutException ("Received a SocketTimeoutException router="+RouterName);
                }
                if (!cliPromptCmd)
                {
                    if (cmdThatWasSent.indexOf("IOS_XR_uploadedSwConfigCmd") != -1)
                    {
                        if (out == null)
                        {
                            // This is a IOS XR sw config file. We will write it to the disk.
                            timeout = timeout * 2;
                            deadline = new Date().getTime() + timeout;
                            debugLog.printRTAriDebug (fn, "IOS XR upload for software config: timeout="+timeout);
                            StringTokenizer st = new StringTokenizer(cmdThatWasSent);
                            st.nextToken();
                            routerFileName = st.nextToken();
                            out = new BufferedWriter(new FileWriter(routerFileName));
                            routerLogFileName = "/tmp/"+RouterName;
                            _tmpFile = new File(routerLogFileName);
                            debugLog.printRTAriDebug (fn, "Will write the swConfigFile to disk, routerFileName="+routerFileName);
                        }
                        int c;
                        out.write(charBuffer, 0, len);
                        out.flush();
                        appendToFile(debugLogFileName, fn +" Wrote "+len +" bytes to the disk\n");
                        if (_tmpFile.exists())
                            appendToRouterFile(routerLogFileName, len);
                        match = checkIfReceivedStringMatchesDelimeter(len, "\nXML>");
                        if (match == true)
                        {
                            out.flush();
                            out.close();
              out = null;
                            return null;
                        }
                    }
                    else
                    {
                        readCounts ++;
                        appendToFile(debugLogFileName, fn +" readCounts="+readCounts +"  Reader read "+len +" of data\n");
                        int c;
                        sb2.setLength(0);
                        for(int i=0; i<len; i++ )
                        {
                            c = charBuffer[i];
                            if ((c != 7) && (c != 13) && (c != 0) && (c != 27))
                            {
                                sbReceive.append((char)charBuffer[i]);
                                sb2.append((char)charBuffer[i]);
                            }
                        }
                        appendToRouterFile("/tmp/"+RouterName, len);
                        if (listener != null)
                            listener.receivedString(sb2.toString());

                        appendToFile(debugLogFileName, fn +" Trace 1\n");
                        match = checkIfReceivedStringMatchesDelimeter(delimeters, sb2.toString(), cmdThatWasSent);
                        appendToFile(debugLogFileName, fn +" Trace 2\n");
                        if (match == true)
                        {
                            appendToFile(debugLogFileName, fn +" Match was true, breaking...\n");
                            break;
                        }
                    }
                }
                else
                {
                    debugLog.printRTAriDebug (fn, "cliPromptCmd, Trace 2");
                    sb2.setLength(0);
                    for(int i=0; i<len; i++ )
                    {
                        sbReceive.append( (char)charBuffer[i] );
                        sb2.append( (char)charBuffer[i] );
                    }
                    appendToRouterFile("/tmp/"+RouterName, sb2);
                    if (listener != null)
                        listener.receivedString(sb2.toString());
                    debugLog.printRTAriDebug (fn, "sb2='"+sb2.toString() +"'  delimeters='" +delimeters +"'");
                    if (sb2.toString().indexOf("\nariPrompt>") != -1)
                    {
                        debugLog.printRTAriDebug (fn, "Found our prompt");
                        match = true;
                        break;
                    }
                }
            }
        }
        catch (JSchException e)
        {
            debugLog.printRTAriDebug (fn, "Caught an JSchException e="+e.toString());
      dbLog.outputStackTrace(e);
            throw new TimedOutException (e.toString());
        }
        catch (IOException ee)
        {
            debugLog.printRTAriDebug (fn, "Caught an IOException: ee="+ee.toString());
      dbLog.outputStackTrace(ee);
            throw new TimedOutException (ee.toString());
        }
        String result = stripOffCmdFromRouterResponse(sbReceive.toString());
        debugLog.printRTAriDebug (fn, "Leaving method successfully");
        return (result);
    }

    public boolean checkIfReceivedStringMatchesDelimeter(String delimeters, String receivedString, String cmdThatWasSent)
    {
        // The delimeters are in a '|' seperated string. Return true on the first match.
        String fn = "SshJcraftWrapper.checkIfReceivedStringMatchesDelimeter";
        appendToFile(debugLogFileName, fn +" Entered:  delimeters='"+delimeters +" cmdThatWasSent='"+cmdThatWasSent +"' receivedString='"+receivedString +"'\n");
        StringTokenizer st = new StringTokenizer(delimeters, "|");

        if ((delimeters.indexOf("#$") != -1) || (routerCmdType.equals("CLI")))  // This would be an IOS XR, CLI command.
        {
            int x = receivedString.lastIndexOf("#");
            int y = receivedString.length() - 1;
            appendToFile(debugLogFileName, fn +" IOS XR, CLI command\n");
            if (extraDebugFile.exists())
                appendToFile(debugLogFileName, fn +" :::cmdThatWasSent='"+cmdThatWasSent +"'  x="+x +" y="+y +"\n");
            if ((x != -1) && (y == x))
                return(true);
            else
                return(false);
        }
        if (cmdThatWasSent.indexOf("show config") != -1)
        {
            appendToFile(debugLogFileName, fn +"In the block for 'show config'\n");
            while (st.hasMoreTokens())
            {
                String delimeter = st.nextToken();
                // Make sure we don't get faked out by a response of " #".
                // Proc #0
                //   # signaling-local-address ipv6 FD00:F4D5:EA06:1::110:136:254
                // LAAR2#
                int x = receivedString.lastIndexOf(delimeter);
                if ((receivedString.lastIndexOf(delimeter) != -1) && (receivedString.lastIndexOf(" #") != x-1))
                {
                appendToFile(debugLogFileName, fn +"receivedString=\n'" +receivedString +"'\n");
                appendToFile(debugLogFileName, fn +"Returning true for the 'show config' command. We found our real delmeter. \n\n");
                    return (true);
                }
            }
        }
        else
        {
            aggregatedReceivedString = aggregatedReceivedString + receivedString;
      _appendToFile ("/tmp/aggregatedReceivedString.debug", aggregatedReceivedString);

            while (st.hasMoreTokens())
            {
                String delimeter = st.nextToken();
                appendToFile(debugLogFileName, fn +" Looking for an delimeter of:'"+delimeter+"'\n");
                appendToFile(debugLogFileName, fn +" receivedString='"+receivedString);
                if (aggregatedReceivedString.indexOf(delimeter) != -1)
                {
                    debugLog.printRTAriDebug (fn, "Found our delimeter, which was: '"+delimeter +"'");
                    aggregatedReceivedString = "";
                    return (true);
                }
            }
        }
        return (false);
    }

    public boolean checkIfReceivedStringMatchesDelimeter(int len, String delimeter)
    {
        String fnName = "SshJcraftWrapper.checkIfReceivedStringMatchesDelimeter:::";
        int x;
        int c;
        String str = null;

        if (jcraftReadSwConfigFileFromDisk())
        {
            DebugLog.printAriDebug(fnName, "jcraftReadSwConfigFileFromDisk block");
            File fileName = new File(routerFileName);
            appendToFile(debugLogFileName, fnName +" jcraftReadSwConfigFileFromDisk::: Will read the tail end of the file from the disk");
            try
            {
                str = getLastFewLinesOfFile(fileName, 3);
            }
            catch (IOException e)
            {
                DebugLog.printAriDebug(fnName, "Caught an Exception, e="+e);
        dbLog.outputStackTrace(e);
                e.printStackTrace();
            }
        }
        else
        {
            // DebugLog.printAriDebug(fnName, "TRACE 1: ******************************");
            // When looking at the end of the charBuffer, don't include any linefeeds or spaces. We only want to make the smallest string possible.
            for(x=len-1; x>=0; x--)
            {
                c = charBuffer[x];
                if (extraDebugFile.exists())
                    appendToFile(debugLogFileName, fnName +" x="+x +" c="+c +"\n");
                if ((c != 10) && (c != 32)) // Not a line feed nor a space.
                    break;
            }
            if ((x+1 - 13) >= 0)
            {
                str = new String (charBuffer, (x+1-13), 13);
                appendToFile(debugLogFileName, fnName +" str:'"+str +"'\n");
            }
            else
            {
                File fileName = new File(routerFileName);
                appendToFile(debugLogFileName, fnName +" Will read the tail end of the file from the disk, x="+x +" len="+len +" str::'"+str +"' routerFileName='" +routerFileName +"'\n");
                DebugLog.printAriDebug(fnName, "Will read the tail end of the file from the disk, x="+x +" len="+len +" str::'"+str +"' routerFileName='" +routerFileName +"'");
                try
                {
                    str = getLastFewLinesOfFile(fileName, 3);
                }
                catch (IOException e)
                {
                    DebugLog.printAriDebug(fnName, "Caught an Exception, e="+e);
          dbLog.outputStackTrace(e);
                    e.printStackTrace();
                }
            }
        }

        if (str.indexOf(delimeter) != -1)
        {
            DebugLog.printAriDebug(fnName, "str in break is:'"+str +"'" +" delimeter='" +delimeter +"'");
            appendToFile(debugLogFileName, fnName +" str in break is:'"+str +" delimeter='" +delimeter +"'" +"'\n");
            return(true);
        }
        else
        {
            appendToFile(debugLogFileName, fnName +" Returning false");
            return(false);
        }

    }

    public void closeConnection()
    {
        String fn = "SshJcraftWrapper.closeConnection";
        debugLog.printRTAriDebug (fn, "Executing the closeConnection....");
        inputStream = null;
        outputStream = null;
        dis = null;
        charBuffer = null;
        session.disconnect();
    session = null;
    }

    public void send (String cmd) throws IOException
    {
        String fn = "SshJcraftWrapper.send";
        OutputStream out = channel.getOutputStream();
        DataOutputStream dos = new DataOutputStream(out);

        if ((cmd.charAt(cmd.length() - 1) != '\n') && (cmd.charAt(cmd.length() - 1) != '\r'))
            cmd += "\n";
    int length = cmd.length();
    int i = -1;
    int nchars = 300000;
    int ncharsTotalSent = 0;
    int ncharsSent = 0;

        appendToFile(debugLogFileName, fn+": Sending: '"+cmd );
        // debugLog.printRTAriDebug (fn, "cmd = "+cmd);
        debugLog.printRTAriDebug (fn, "Length of cmd is:" +length); // 2,937,706
        try
        {
      if (length > 600000)
      {
        int timeout = 9000;
        for (i=0; i<length; i+=nchars)
        {
          String Cmd = cmd.substring(i, Math.min(length, i + nchars));
          ncharsSent = Cmd.length();
          ncharsTotalSent = ncharsTotalSent + Cmd.length();
                debugLog.printRTAriDebug (fn, "i="+i +" Sending Cmd: ncharsSent="+ncharsSent);
                dos.writeBytes(Cmd);
              dos.flush();
          try
          {
                  debugLog.printRTAriDebug (fn, ":::i="+i +" length="+length);
            if (ncharsSent < length)
                 receiveUntilBufferFlush (ncharsSent, timeout, "buffer flush  i="+i);
            else
            {
                    debugLog.printRTAriDebug (fn, "i="+i +" No Waiting this time....");
                    dos.flush();
            }
          }
              catch (Exception e)
              {
                  debugLog.printRTAriDebug (fn, "Caught an Exception: Nothing to flush out.");
          }
        }
      }
      else
      {
            debugLog.printRTAriDebug (fn, "Before executing the dos.writeBytes");
              dos.writeBytes(cmd);
      }
          dos.flush();
            debugLog.printRTAriDebug (fn, "Leaving method");
          appendToFile(debugLogFileName, fn+": Leaving method\n");
        }
        catch (IOException e)
        {
            debugLog.printRTAriDebug (fn, "Caught an IOException. e="+e);
      dbLog.outputStackTrace(e);
            throw new IOException(e.toString());
        }
    }


    public void sendChar (int v) throws IOException
    {
        String fn = "SshJcraftWrapper.sendChar";
        OutputStream out = channel.getOutputStream();
        DataOutputStream dos = new DataOutputStream(out);
        try
        {
            debugLog.printRTAriDebug (fn, "Sending: '" +v +"'");
            dos.writeChar (v);
            dos.flush();
        }
        catch (IOException e)
        {
            debugLog.printRTAriDebug (fn, "Caught an IOException. e="+e);
            throw new IOException(e.toString());
        }
    }

    public void send (byte[] b, int off, int len) throws IOException
    {
        String fn = "SshJcraftWrapper.send:byte[]";
        OutputStream out = channel.getOutputStream();
        DataOutputStream dos = new DataOutputStream(out);
        try
        {
            dos.write (b, off, len);
            dos.flush();
        }
        catch (IOException e)
        {
            debugLog.printRTAriDebug (fn, "Caught an IOException. e="+e);
            throw new IOException(e.toString());
        }
    }

    public static class MyUserInfo implements UserInfo, UIKeyboardInteractive
    {
        public String getPassword()
        {
            return null;
        }
        public boolean promptYesNo(String str)
        {
            return false;
        }
        public String getPassphrase()
        {
            return null;
        }
        public boolean promptPassphrase(String message)
        {
            return false;
        }
        public boolean promptPassword(String message)
        {
            return false;
        }
        public void showMessage(String message)
        { }
        public String[] promptKeyboardInteractive(String destination,
                String name,
                String instruction,
                String[] prompt,
                boolean[] echo)
        {
            return null;
        }
    }

    public void addListener(TelnetListener listener)
    {
        this.listener = listener;
    }

    public void appendToFile (String fileName, String dataToWrite)
    {
        String fn = "SshJcraftWrapper.appendToFile";

        try
        {
            // First check to see if a file 'fileName' exist, if it does
            // write to it. If it does not exist, don't write to it.
            File tmpFile = new File(fileName);
            if (tmpFile.exists())
            {
                BufferedWriter out = new BufferedWriter(new FileWriter(fileName, true));
                // out.write(dataToWrite);
                // out.write(getTheDate() +": " +Thread.currentThread().getName() +": "+dataToWrite);
                out.write(getTheDate() +": " +tId +": "+dataToWrite);
                out.close();
            }
        }
        catch (IOException e)
        {
            debugLog.printRTAriDebug (fn, "Caught an IOException: e="+e);
        }
        catch (Exception e)
        {
            debugLog.printRTAriDebug (fn, "Caught an Exception: e="+e);
        }
    }

  public void _appendToFile (String fileName, String dataToWrite)
    {
        String fn = "SshJcraftWrapper.appendToFile";

        try
        {
            // First check to see if a file 'fileName' exist, if it does
            // write to it. If it does not exist, don't write to it.
            File tmpFile = new File(fileName);
            if (tmpFile.exists())
            {
                BufferedWriter out = new BufferedWriter(new FileWriter(fileName, true));
                out.write(dataToWrite);
                out.close();
            }
        }
        catch (IOException e)
        {
            debugLog.printRTAriDebug (fn, "Caught an IOException: e="+e);
        }
        catch (Exception e)
        {
            debugLog.printRTAriDebug (fn, "Caught an Exception: e="+e);
        }
    }


    public String getTheDate()
    {
        Calendar cal = Calendar.getInstance();
        java.util.Date today = cal.getTime();
        DateFormat df1 = DateFormat.getDateInstance();
        DateFormat df3 = new SimpleDateFormat("MM/dd/yyyy H:mm:ss  ");
        return (df3.format(today));
    }


    public void appendToRouterFile (String fileName, StringBuffer dataToWrite)
    {
        String fnName = "SshJcraftWrapper.appendToRouterFile";
        debugLog.printRTAriDebug (fnName, "Entered.... ");
        try
        {
            // First check to see if a file 'fileName' exist, if it does
            // write to it. If it does not exist, don't write to it.
            File tmpFile = new File(fileName);
            {
                // if ((tmpFile.exists()) && (tmpFile.setWritable(true, true)))
                if (tmpFile.exists())
                {
                    BufferedWriter out = new BufferedWriter(new FileWriter(fileName, true));
          // out.write("<!--  "+getTheDate() +": " +tId +"  -->\n");
                    out.write(dataToWrite.toString());
                    out.close();
                }
            }
        }
        catch (IOException e)
        {
            System.err.println("writeToFile() exception: " + e);
            e.printStackTrace();
        }
    }

    public void appendToRouterFile (String fileName, int len)
    {
        String fnName = "SshJcraftWrapper.appendToFile";
        // debugLog.printRTAriDebug (fnName, "Entered.... len="+len);
        try
        {
            // First check to see if a file 'fileName' exist, if it does
            // write to it. If it does not exist, don't write to it.
            File tmpFile = new File(fileName);
                // if ((tmpFile.exists()) && (tmpFile.setWritable(true, true)))
                if (tmpFile.exists())
                {
                    BufferedWriter out = new BufferedWriter(new FileWriter(fileName, true));
          // out.write("<!--  "+getTheDate() +": " +tId +"  -->\n");
                    out.write(charBuffer, 0, len);
                    out.close();
                }
        }
        catch (IOException e)
        {
            System.err.println("writeToFile() exception: " + e);
            e.printStackTrace();
        }
    }

    public String removeWhiteSpaceAndNewLineCharactersAroundString(String str)
    {
        if (str != null)
        {
            StringTokenizer strTok = new StringTokenizer(str, "\n");
            StringBuffer sb = new StringBuffer();

            while (strTok.hasMoreTokens())
            {
                String line = strTok.nextToken();
                sb.append(line);
            }
            return (sb.toString().trim());
        }
        else
            return(str);
    }

    public String stripOffCmdFromRouterResponse(String routerResponse)
    {
        String fn = "SshJcraftWrapper.stripOffCmdFromRouterResponse";
        // appendToFile(debugLogFileName, fn+": routerResponse='"+routerResponse +"'\n");

        // The session of SSH will echo the command sent to the router, in the router's response.
        // Since all our commands are terminated by a '\n', strip off the first line
        // of the response from the router. This first line contains the orginal command.

        StringTokenizer rr = new StringTokenizer(routerResponse, "\n");
        StringBuffer sb = new StringBuffer();

        int numTokens = rr.countTokens();
        // debugLog.printRTAriDebug (fn, "Number of lines in the response from the router is:" +numTokens);
        if (numTokens > 1)
        {
            rr.nextToken(); //Skip the first line.
            while (rr.hasMoreTokens())
            {
                sb.append(rr.nextToken()+'\n');
            }
        }
        return (sb.toString());
    }

    public void setRouterCommandType(String type)
    {
        String fn = "SshJcraftWrapper.setRouterCommandType";
        this.routerCmdType = type;
        debugLog.printRTAriDebug (fn, "Setting routerCmdType to a value of '"+type +"'");
    }

    public String getLastFewLinesOfFile(File file, int linesToRead) throws FileNotFoundException, IOException
    {
        String fn = "SshJcraftWrapper.getLastFewLinesOfFile";
        RandomAccessFile randomAccessFile = new RandomAccessFile(file, "r");
        int lines = 0;
        StringBuilder builder = new StringBuilder();
        String tail = "";
        long length = file.length();
        length--;
        randomAccessFile.seek(length);
        for(long seek = length; seek >= 0; --seek)
        {
            randomAccessFile.seek(seek);
            char c = (char)randomAccessFile.read();
            builder.append(c);
            if(c == '\n')
            {
                builder = builder.reverse();
                // System.out.println(builder.toString());
                tail = builder.toString() + tail;
                lines++;
                builder.setLength(0);
                if (lines == linesToRead)
                {
                    break;
                }
            }
        }
        randomAccessFile.close();
        if(!jcraftReadSwConfigFileFromDisk())
            debugLog.printRTAriDebug (fn, "tail='"+tail +"'");
        appendToFile(debugLogFileName, "tail='"+tail +"'\n");
        return tail;
    }

    public boolean jcraftReadSwConfigFileFromDisk()
    {
        if (jcraftReadSwConfigFileFromDisk.exists())
            return(true);
        else
            return(false);
    }

  public String getEquipNameCode()
  {
    return (equipNameCode);

  }

  public void setEquipNameCode(String equipNameCode)
  {
    this.equipNameCode = equipNameCode;
  }

  public String getRouterName()
  {
    return(RouterName);
  }

  // Routine does reads until it has read 'nchars' or times out.
     public void receiveUntilBufferFlush (int ncharsSent, int timeout, String message) throws TimedOutException, IOException
    {
        String fn = "SshJcraftWrapper.receiveUntilBufferFlush";
        StringBuffer sb2 = new StringBuffer();
        StringBuffer sbReceive = new StringBuffer();
        debugLog.printRTAriDebug (fn, "ncharsSent="+ncharsSent+" timeout="+timeout +" "+message);
    int ncharsTotalReceived = 0;
    int ncharsRead = 0;
    boolean flag = false;
    charactersFromBufferFlush.setLength(0);

        long  deadline = new Date().getTime() + timeout;
    logMemoryUsage();
        try
        {
            session.setTimeout(timeout);  // This is the socket timeout value.
            while (true)
            {
                if(new Date().getTime() > deadline)
                {
                    debugLog.printRTAriDebug (fn, "Throwing a TimedOutException: time in routine has exceed our deadline: ncharsSent="+ncharsSent+" ncharsTotalReceived="+ncharsTotalReceived);
          flag = true;
                    throw new TimedOutException("Timeout: time in routine has exceed our deadline");
                }
                ncharsRead =  reader.read(charBuffer, 0, BUFFER_SIZE);
                if (listener != null)
                    listener.receivedString(String.copyValueOf(charBuffer,0,ncharsRead));
                appendToRouterFile("/tmp/"+RouterName, ncharsRead);
        ncharsTotalReceived = ncharsTotalReceived + ncharsRead;
            // debugLog.printRTAriDebug (fn, "::ncharsSent="+ncharsSent+" ncharsTotalReceived="+ncharsTotalReceived +" ncharsRead="+ncharsRead);
        if (ncharsTotalReceived >= ncharsSent)
        {
              debugLog.printRTAriDebug (fn, "Received the correct number of characters, ncharsSent="+ncharsSent +" ncharsTotalReceived="+ncharsTotalReceived);
          logMemoryUsage();
          return;
        }
            }
        }
        catch (JSchException e)
        {
            debugLog.printRTAriDebug (fn, "Caught an JSchException e="+e.toString());
          debugLog.printRTAriDebug (fn, "ncharsSent="+ncharsSent+" ncharsTotalReceived="+ncharsTotalReceived +" ncharsRead="+ncharsRead);
            throw new TimedOutException (e.toString());
        }
    }

  public String getHostName()
  {
    return(hostName);
  }
  
  public String getUserName()
  {
    return(userName);
  }

  public String getPassWord()
  {
    return(passWord);
  }

  public void sftpPut(String sourcePath, String destDirectory) throws IOException
  {
    String fn = "SshJcraftWrapper.sftp";
    try
    {
      Session sftpSession = jsch.getSession(userName, hostName, 22);
            UserInfo ui = new MyUserInfo();
            sftpSession.setPassword(passWord);
            sftpSession.setUserInfo(ui);
            sftpSession.connect(30*1000);
          debugLog.printRTAriDebug (fn, "Opening up an sftp channel....");
      ChannelSftp sftp=(ChannelSftp)sftpSession.openChannel("sftp");
          debugLog.printRTAriDebug (fn, "Connecting....");
      sftp.connect();
          debugLog.printRTAriDebug (fn, "Sending "+sourcePath +" --> "+destDirectory);
      sftp.put(sourcePath, destDirectory, ChannelSftp.OVERWRITE);
          debugLog.printRTAriDebug (fn, "Sent successfully");
      sftpSession.disconnect();
    }
    catch (Exception e)
    {
          debugLog.printRTAriDebug (fn, "Caught an Exception, e="+e);
      // dbLog.storeData("ErrorMsg= sftp threw an Exception. error is:"+e);
            throw new IOException(e.toString());
    }
  }



  public void SftpPut(String stringOfData, String fullPathDest) throws IOException
  {
    String fn = "SshJcraftWrapper.Sftp";
    try
    {
      Session sftpSession = jsch.getSession(userName, hostName, 22);
            UserInfo ui = new MyUserInfo();
            sftpSession.setPassword(passWord);
            sftpSession.setUserInfo(ui);
            sftpSession.connect(30*1000);
          debugLog.printRTAriDebug (fn, "Opening up an sftp channel....");
      ChannelSftp sftp=(ChannelSftp)sftpSession.openChannel("sftp");
          debugLog.printRTAriDebug (fn, "Connecting....");
      sftp.connect();
      InputStream is = new ByteArrayInputStream(stringOfData.getBytes());
          debugLog.printRTAriDebug (fn, "Sending stringOfData --> "+fullPathDest);
      sftp.put(is, fullPathDest, ChannelSftp.OVERWRITE);
          debugLog.printRTAriDebug (fn, "Sent successfully");
      sftpSession.disconnect();
    }
    catch (Exception e)
    {
          debugLog.printRTAriDebug (fn, "Caught an Exception, e="+e);
      // dbLog.storeData("ErrorMsg= sftp threw an Exception. error is:"+e);
            throw new IOException(e.toString());
    }
  }

  public String sftpGet(String fullFilePathName) throws IOException
  {
    String fn = "SshJcraftWrapper.Sftp";
    try
    {
      Session sftpSession = jsch.getSession(userName, hostName, 22);
            UserInfo ui = new MyUserInfo();
            sftpSession.setPassword(passWord);
            sftpSession.setUserInfo(ui);
            sftpSession.connect(30*1000);
          debugLog.printRTAriDebug (fn, "Opening up an sftp channel....");
      ChannelSftp sftp=(ChannelSftp)sftpSession.openChannel("sftp");
          debugLog.printRTAriDebug (fn, "Connecting....");
      sftp.connect();
      InputStream in = null;
      in = sftp.get(fullFilePathName);
      String sftpFileString = readInputStreamAsString(in);
          debugLog.printRTAriDebug (fn, "Retreived successfully");
          // debugLog.printRTAriDebug (fn, "sftpFileString="+sftpFileString);
      sftpSession.disconnect();
      return(sftpFileString);
    }
    catch (Exception e)
    {
          debugLog.printRTAriDebug (fn, "Caught an Exception, e="+e);
      // dbLog.storeData("ErrorMsg= sftp threw an Exception. error is:"+e);
            throw new IOException(e.toString());
    }
  }

  public static String readInputStreamAsString(InputStream in) throws IOException
  {
    BufferedInputStream bis = new BufferedInputStream(in);
    ByteArrayOutputStream buf = new ByteArrayOutputStream();
    int result = bis.read();
    while(result != -1)
    {
      byte b = (byte)result;
      buf.write(b);
      result = bis.read();
    }
    return buf.toString();
  }


  public void logMemoryUsage()
  {
    String fn = "SshJcraftWrapper.logMemoryUsage";
    int mb = 1024*1024;
        long usedMemory;
        long maxMemoryAdvailable;
        long  memoryLetfOnHeap;
        maxMemoryAdvailable = (runtime.maxMemory() / mb);
    usedMemory = ((runtime.totalMemory()/mb) - (runtime.freeMemory()/mb));
    memoryLetfOnHeap = maxMemoryAdvailable - usedMemory;
    DebugLog.printAriDebug(fn, "maxMemoryAdvailable="+maxMemoryAdvailable +" usedMemory="+usedMemory +" memoryLetfOnHeap="+memoryLetfOnHeap);
  }

  // ----------------------------------------------------------------------------
  // ----------------------------------------------------------------------------
  // ----------------------------------------------------------------------------
  // ----------------------------------------------------------------------------


       // User specifies the port number, and the subsystem
    public void connect (String hostname, String username, String password, String prompt, int timeOut, int portNum, String subsystem) throws IOException
    {
        String fn = "SshJcraftWrapper.connect";

        debugLog.printRTAriDebug (fn, ":::Attempting to connect to "+hostname +" username="+username +" password="+password + " prompt='"+prompt +"' timeOut="+timeOut +" portNum="+portNum +" subsystem="+subsystem);
        RouterName = hostname;
        jsch = new JSch();
        try
        {
            session = jsch.getSession(username, hostname, portNum);
            UserInfo ui = new MyUserInfo();
            session.setPassword(password);
            session.setUserInfo(ui);
      session.setConfig("StrictHostKeyChecking", "no");
            session.connect(timeOut);
            session.setServerAliveCountMax(0); // If this is not set to '0', then socket timeout on all reads will not work!!!!
            channel = session.openChannel("subsystem");
      ((ChannelSubsystem)channel).setSubsystem(subsystem);
      // ((ChannelSubsystem)channel).setPtyType("vt102");
      ((ChannelSubsystem)channel).setPty(true);

            inputStream = channel.getInputStream();
            dis = new DataInputStream(inputStream);
            reader = new BufferedReader(new InputStreamReader(dis), BUFFER_SIZE);
            channel.connect();
            debugLog.printRTAriDebug (fn, "Successfully connected.");
            debugLog.printRTAriDebug (fn, "Five second sleep....");
      try { Thread.sleep(5000); } catch (java.lang.InterruptedException ee) { boolean ignore = true; }
        }
        catch (Exception e)
        {
            debugLog.printRTAriDebug (fn, "Caught an Exception. e="+e);
            throw new IOException(e.toString());
        }
    }

     public void connect (String hostName, String username, String password, int portNumber) throws IOException
    {
        String fn = "SshJcraftWrapper.connect";
        jsch = new JSch();
        debugLog.printRTAriDebug (fn, "::Attempting to connect to "+hostName +" username="+username +" password="+password +" portNumber="+portNumber);
        debugLog.printRTAriDebug (fn, "Trace C");
        RouterName = hostName;
    this.hostName = hostName;
    userName = username;
    passWord = password;
        try
        {
      java.util.Properties config = new java.util.Properties();
      config.put("StrictHostKeyChecking", "no");
            session = jsch.getSession(username, hostName, 22);
            // session = jsch.getSession(username, hostName, portNumber);
            UserInfo ui = new MyUserInfo();
      session.setConfig(config);
            session.setPassword(password);
            session.setUserInfo(ui);
            session.connect(30000);
            channel = session.openChannel("shell");
            session.setServerAliveCountMax(0); // If this is not set to '0', then socket timeout on all reads will not work!!!!
            ((ChannelShell)channel).setPtyType("vt102");
            inputStream = channel.getInputStream();
            dis = new DataInputStream(inputStream);
            reader = new BufferedReader(new InputStreamReader(dis), BUFFER_SIZE);
            channel.connect();
            debugLog.printRTAriDebug (fn, "::Successfully connected.");
      debugLog.printRTAriDebug (fn, "::Flushing input buffer");
      try
      {
        receiveUntil(":~#", 9000, "No cmd was sent, just waiting, but we can stop on a '~#'");
      }
      catch (Exception e)
      {
        debugLog.printRTAriDebug (fn, "Caught an Exception::: Nothing to flush out.");
      }

        }
        catch (Exception e)
        {
            debugLog.printRTAriDebug (fn, "Caught an Exception. e="+e);
      // dbLog.storeData("ErrorMsg= Exception trying to connect to "+hostName +" "+e);
            throw new IOException(e.toString());
        }
    }


  public void put(String sourcePath, String destDirectory) throws IOException
  {
    String fn = "SshJcraftWrapper.sftp";
    try
    {
      Session sftpSession = jsch.getSession(userName, hostName, 22);
            UserInfo ui = new MyUserInfo();
            sftpSession.setPassword(passWord);
            sftpSession.setUserInfo(ui);
            sftpSession.connect(30*1000);
          debugLog.printRTAriDebug (fn, "Opening up an sftp channel....");
      ChannelSftp sftp=(ChannelSftp)sftpSession.openChannel("sftp");
          debugLog.printRTAriDebug (fn, "Connecting....");
      sftp.connect();
          debugLog.printRTAriDebug (fn, "Sending "+sourcePath +" --> "+destDirectory);
      sftp.put(sourcePath, destDirectory, ChannelSftp.OVERWRITE);
          debugLog.printRTAriDebug (fn, "Sent successfully");
      sftpSession.disconnect();
    }
    catch (Exception e)
    {
          debugLog.printRTAriDebug (fn, "Caught an Exception, e="+e);
      // dbLog.storeData("ErrorMsg= sftp threw an Exception. error is:"+e);
            throw new IOException(e.toString());
    }
  }

  public void put(InputStream is, String fullPathDest, String hostName, String userName, String passWord) throws IOException
  {
    String fn = "SshJcraftWrapper.put";
    Session sftpSession = null;
    try
    {
          debugLog.printRTAriDebug (fn, "userName="+userName +" hostName="+hostName +" passWord="+passWord);
          jsch = new JSch();
      java.util.Properties config = new java.util.Properties();
      config.put("StrictHostKeyChecking", "no");
      sftpSession = jsch.getSession(userName, hostName, 22);
            UserInfo ui = new MyUserInfo();
            sftpSession.setPassword(passWord);
            sftpSession.setUserInfo(ui);
      sftpSession.setConfig(config);
            sftpSession.connect(30*1000);
          debugLog.printRTAriDebug (fn, "Opening up an sftp channel....");
      ChannelSftp sftp=(ChannelSftp)sftpSession.openChannel("sftp");
          debugLog.printRTAriDebug (fn, "Connecting....");
      sftp.connect();
      String oldFiles = fullPathDest +"*";
          debugLog.printRTAriDebug (fn, "Deleting old files --> "+oldFiles);
          try{
              sftp.rm(oldFiles);
              debugLog.printRTAriDebug (fn, "Sending stringOfData --> "+fullPathDest);
         }
         catch(SftpException sft){
             String exp = "No such file";
             if(sft.getMessage()!=null && sft.getMessage().contains(exp))
                 debugLog.printRTAriDebug (fn, "No files found -- Continue");
             else{
                 debugLog.printRTAriDebug (fn, "Exception while sftp.rm " + sft.getMessage());
                 sft.printStackTrace();
                  throw sft;
             }
         }
      sftp.put(is, fullPathDest, ChannelSftp.OVERWRITE);
          debugLog.printRTAriDebug (fn, "Sent successfully");
      sftpSession.disconnect();
      sftpSession = null;
    }
    catch (Exception e)
    {
          debugLog.printRTAriDebug (fn, "Caught an Exception, e="+e);
      sftpSession.disconnect();
      sftpSession = null;
      // dbLog.storeData("ErrorMsg= sftp threw an Exception. error is:"+e);
            throw new IOException(e.toString());
    }
  }


  public String get(String fullFilePathName, String hostName, String userName, String passWord) throws IOException
  {
    String fn = "SshJcraftWrapper.get";
    Session sftpSession = null;
    try
    {
          debugLog.printRTAriDebug (fn, "userName="+userName +" hostName="+hostName +" passWord="+passWord);
          jsch = new JSch();
      sftpSession = jsch.getSession(userName, hostName, 22);
      java.util.Properties config = new java.util.Properties();
      config.put("StrictHostKeyChecking", "no");
            UserInfo ui = new MyUserInfo();
            sftpSession.setPassword(passWord);
            sftpSession.setUserInfo(ui);
      sftpSession.setConfig(config);
            sftpSession.connect(30*1000);
          debugLog.printRTAriDebug (fn, "Opening up an sftp channel....");
      ChannelSftp sftp=(ChannelSftp)sftpSession.openChannel("sftp");
          debugLog.printRTAriDebug (fn, "Connecting....");
      sftp.connect();
      InputStream in = null;
      in = sftp.get(fullFilePathName);
      String sftpFileString = readInputStreamAsString(in);
          debugLog.printRTAriDebug (fn, "Retreived successfully");
          // debugLog.printRTAriDebug (fn, "sftpFileString="+sftpFileString);
      sftpSession.disconnect();
      sftpSession = null;
      return(sftpFileString);
    }
    catch (Exception e)
    {
          debugLog.printRTAriDebug (fn, "Caught an Exception, e="+e);
      sftpSession.disconnect();
      sftpSession = null;
      // dbLog.storeData("ErrorMsg= sftp threw an Exception. error is:"+e);
            throw new IOException(e.toString());
    }
  }

  public String send(String cmd, String delimiter) throws IOException
    {
        String fn = "SshJcraftWrapper.send";
        OutputStream out = channel.getOutputStream();
        DataOutputStream dos = new DataOutputStream(out);

        if ((cmd.charAt(cmd.length() - 1) != '\n') && (cmd.charAt(cmd.length() - 1) != '\r'))
            cmd += "\n";
    int length = cmd.length();
    int i = -1;
    int nchars = 300000;
    int ncharsTotalSent = 0;
    int ncharsSent = 0;

        debugLog.printRTAriDebug (fn, "Length of cmd is:" +length); // 2,937,706
        debugLog.printRTAriDebug (fn, "Length of cmd is:" +length); // 2,937,706
        try
        {
      if (length > 600000)
      {
        int timeout = 9000;
        for (i=0; i<length; i+=nchars)
        {
          String Cmd = cmd.substring(i, Math.min(length, i + nchars));
          ncharsSent = Cmd.length();
          ncharsTotalSent = ncharsTotalSent + Cmd.length();
                debugLog.printRTAriDebug (fn, "i="+i +" Sending Cmd: ncharsSent="+ncharsSent);
                dos.writeBytes(Cmd);
              dos.flush();
          try
          {
                  debugLog.printRTAriDebug (fn, ":::i="+i +" length="+length);
            if (ncharsSent < length)
                 receiveUntilBufferFlush (ncharsSent, timeout, "buffer flush  i="+i);
            else
            {
                    debugLog.printRTAriDebug (fn, "i="+i +" No Waiting this time....");
                    dos.flush();
            }
          }
              catch (Exception e)
              {
                  debugLog.printRTAriDebug (fn, "Caught an Exception: Nothing to flush out.");
          }
        }
      }
      else
      {
            debugLog.printRTAriDebug (fn, "Before executing the dos.writeBytes");
              dos.writeBytes(cmd);
      }
          dos.flush();
      // Now lets get the response.
      String response = receiveUntil (delimiter, 300000, cmd);
            debugLog.printRTAriDebug (fn, "Leaving method");
      return(response);
        }
        catch (IOException e)
        {
            debugLog.printRTAriDebug (fn, "Caught an IOException. e="+e);
            throw new IOException(e.toString());
        }
    }


}