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
|
/**
* Copyright 2013 JogAmp Community. All rights reserved.
*
* This software is licensed under the GNU General Public License (GPL) Version 3.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of JogAmp Community.
*/
package org.jogamp.jabot.irc;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintStream;
import java.util.Calendar;
import org.jibble.pircbot.PircBot;
import org.jogamp.jabot.util.TimeTool;
public class CatOut extends PircBot {
private static final String HASH = "#";
private static long atol(String str, long def) {
try {
return Long.parseLong(str);
} catch (Exception ex) {
ex.printStackTrace();
}
return def;
}
public static void main(String[] args) throws Exception {
final String joinMessage = "This channel is logged";
final boolean showHostname = false;
final String login, name, server, channelNoHash;
final boolean verbose;
final long logrotate;
final String logprefix;
final boolean htmlOut;
final File htmlHeader, htmlFooter;
{
String _login=null, _name=null, _server=null, _channelNoHash=null;
boolean _verbose=false;
long _logrotate = 0;
String _logprefix="";
boolean _htmlOut = false;
String _htmlHeader = null, _htmlFooter=null;
for(int i=0; i<args.length; i++) {
if(args[i].equals("-login")) {
i++;
_login = args[i];
} else if(args[i].equals("-name")) {
i++;
_name = args[i];
} else if(args[i].equals("-server")) {
i++;
_server = args[i];
} else if(args[i].equals("-channel")) {
i++;
_channelNoHash= args[i];
if( _channelNoHash.startsWith(HASH) ) {
_channelNoHash = _channelNoHash.substring(1);
}
} else if(args[i].equals("-verbose")) {
_verbose=true;
} else if(args[i].equals("-htmlHeader")) {
i++;
_htmlOut=true;
_htmlHeader=args[i];
} else if(args[i].equals("-htmlFooter")) {
i++;
_htmlOut=true;
_htmlFooter=args[i];
} else if(args[i].equals("-logrotate")) {
i++;
_logrotate= atol(args[i], _logrotate);
} else if(args[i].equals("-logprefix")) {
i++;
_logprefix = args[i];
}
}
if( null == _login ||
null == _name ||
null == _server ||
null == _channelNoHash ||
( _htmlOut && null == _htmlHeader || null == _htmlFooter ) ) {
System.err.println("Incomplete commandline, use "+CatOut.class.getName()+" -login VAL -name VAL -server VAL -channel VAL [-verbose] [-htmlHeader VAL -htmlFooter VAL] [-logrotate millis [-logprefix VAL]]");
return;
}
login=_login; name=_name;
server=_server; channelNoHash=_channelNoHash;
verbose=_verbose;
logrotate = _logrotate;
logprefix = _logprefix;
htmlOut = _htmlOut;
htmlHeader = new File(_htmlHeader);
htmlFooter= new File(_htmlFooter);
}
final LogBot bot = new LogBot(showHostname, joinMessage, htmlOut);
bot.setVerbose(verbose);
bot.setLoginAndName(login, name);
bot.connect(server);
bot.joinChannel(HASH+channelNoHash);
if( 0 >= logrotate ) {
// bot.sendRawLine("NAMES "+HASH+channelNoHash); // FIXME ?
} else {
PrintStream fout = null;
long t0 = System.currentTimeMillis();
int sendNamesCount = 0;
while(true) { // forever !
// Swap Logfiles: Open and set new logfile, then close old one.
{
final Calendar calendar = bot.tick();
final String suffix = htmlOut ? ".html" : ".txt" ;
final String logfilename = logprefix+channelNoHash+"_"+TimeTool.getTimeStamp(calendar, true, false)+suffix;
final File _file = new File(logfilename);
final PrintStream _fout = new PrintStream(new FileOutputStream(_file));
if(htmlOut) {
cat(htmlHeader, _fout);
htmlHead(HASH+channelNoHash+" @ "+server+" - "+bot.getTimeStamp()+" ("+calendar.getTimeZone().getID()+")",
_fout);
}
bot.setOut(_fout);
// bot.sendRawLine("NAMES "+HASH+channelNoHash); // FIXME ?
if(null != fout) {
if(htmlOut) {
cat(htmlFooter, fout);
}
fout.close(); // implies flush
}
fout = _fout;
}
final long t1 = System.currentTimeMillis();
long td = 0;
while ( td < logrotate ) {
try {
Thread.sleep(FLUSH_INTERVAL);
} catch (Exception e) { }
fout.flush();
final long t2 = System.currentTimeMillis();
td = t2 - t1;
if ( sendNamesCount < ( t2 - t0 ) / SEND_NAMES ) {
// bot.sendRawLine("NAMES "+HASH+channelNoHash); // FIXME ?
sendNamesCount++;
}
}
}
}
}
public static final long FLUSH_INTERVAL = 60*1000; // flush every minute
public static final long SEND_NAMES = 10*60*1000; // every 10 minutes
public static void cat(File source, PrintStream out) throws IOException {
final BufferedInputStream input = new BufferedInputStream(new FileInputStream(source));
int bytesRead = 0;
byte[] buffer = new byte[1024];
while ((bytesRead = input.read(buffer, 0, buffer.length)) != -1) {
out.write(buffer, 0, bytesRead);
}
out.flush();
input.close();
}
public static void htmlHead(String head, PrintStream out) {
out.println("<h2>"+head+"</h2>");
out.println("<br/>");
}
}
|