001    /**
002     * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.util.ant;
016    
017    import com.liferay.portal.kernel.io.unsync.UnsyncBufferedReader;
018    import com.liferay.portal.kernel.io.unsync.UnsyncStringReader;
019    import com.liferay.portal.kernel.util.StringBundler;
020    
021    import java.io.IOException;
022    
023    import org.apache.tools.ant.BuildEvent;
024    import org.apache.tools.ant.DefaultLogger;
025    import org.apache.tools.ant.Project;
026    import org.apache.tools.ant.util.StringUtils;
027    
028    /**
029     * @author Brian Wing Shun Chan
030     */
031    public class SystemLogger extends DefaultLogger {
032    
033            @Override
034            public void messageLogged(BuildEvent event) {
035                    int priority = event.getPriority();
036    
037                    if (priority <= msgOutputLevel) {
038                            StringBundler sb = new StringBundler();
039    
040                            try {
041                                    UnsyncBufferedReader unsyncBufferedReader =
042                                            new UnsyncBufferedReader(
043                                                    new UnsyncStringReader(event.getMessage()));
044    
045                                    String line = unsyncBufferedReader.readLine();
046    
047                                    boolean first = true;
048    
049                                    while (line != null) {
050                                            if (!first) {
051                                                    sb.append(StringUtils.LINE_SEP);
052                                            }
053    
054                                            first = false;
055    
056                                            sb.append("  ");
057                                            sb.append(line);
058    
059                                            line = unsyncBufferedReader.readLine();
060                                    }
061                            }
062                            catch (IOException e) {
063                            }
064    
065                            String msg = sb.toString();
066    
067                            if (priority != Project.MSG_ERR) {
068                                    printMessage(msg, out, priority);
069                            }
070                            else {
071                                    printMessage(msg, err, priority);
072                            }
073    
074                            log(msg);
075                    }
076            }
077    
078    }