parent
029bc7c917
commit
ea40ff990b
118
output/build.go
118
output/build.go
|
@ -22,6 +22,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/b3log/wide/conf"
|
"github.com/b3log/wide/conf"
|
||||||
|
@ -193,6 +194,7 @@ func BuildHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
}()
|
}()
|
||||||
|
|
||||||
errReader := bufio.NewReader(stderr)
|
errReader := bufio.NewReader(stderr)
|
||||||
|
lines := []string{}
|
||||||
for {
|
for {
|
||||||
wsChannel := session.OutputWS[sid]
|
wsChannel := session.OutputWS[sid]
|
||||||
if nil == wsChannel {
|
if nil == wsChannel {
|
||||||
|
@ -204,6 +206,8 @@ func BuildHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
|
lines = append(lines, line)
|
||||||
|
|
||||||
if nil != err {
|
if nil != err {
|
||||||
logger.Warn(err)
|
logger.Warn(err)
|
||||||
|
|
||||||
|
@ -212,60 +216,8 @@ func BuildHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
||||||
// path process
|
// path process
|
||||||
errOutWithPath := parsePath(curDir, line)
|
errOutWithPath := parsePath(curDir, line)
|
||||||
|
|
||||||
channelRet["output"] = "<span class='stderr'>" + errOutWithPath + "</span>"
|
channelRet["output"] = "<span class='stderr'>" + errOutWithPath + "</span>"
|
||||||
|
|
||||||
// lint process
|
|
||||||
|
|
||||||
// if lines[0][0] == '#' {
|
|
||||||
// lines = lines[1:] // skip the first line
|
|
||||||
// }
|
|
||||||
|
|
||||||
// lints := []*Lint{}
|
|
||||||
|
|
||||||
// for _, line := range lines {
|
|
||||||
// if len(line) < 1 {
|
|
||||||
// continue
|
|
||||||
// }
|
|
||||||
|
|
||||||
// if line[0] == '\t' {
|
|
||||||
// // append to the last lint
|
|
||||||
// last := len(lints)
|
|
||||||
// msg := lints[last-1].Msg
|
|
||||||
// msg += line
|
|
||||||
|
|
||||||
// lints[last-1].Msg = msg
|
|
||||||
|
|
||||||
// continue
|
|
||||||
// }
|
|
||||||
|
|
||||||
// file := line[:strings.Index(line, ":")]
|
|
||||||
// left := line[strings.Index(line, ":")+1:]
|
|
||||||
// index := strings.Index(left, ":")
|
|
||||||
// lineNo := 0
|
|
||||||
// msg := left
|
|
||||||
// if index >= 0 {
|
|
||||||
// lineNo, err = strconv.Atoi(left[:index])
|
|
||||||
|
|
||||||
// if nil != err {
|
|
||||||
// continue
|
|
||||||
// }
|
|
||||||
|
|
||||||
// msg = left[index+2:]
|
|
||||||
// }
|
|
||||||
|
|
||||||
// lint := &Lint{
|
|
||||||
// File: filepath.Join(curDir, file),
|
|
||||||
// LineNo: lineNo - 1,
|
|
||||||
// Severity: lintSeverityError,
|
|
||||||
// Msg: msg,
|
|
||||||
// }
|
|
||||||
|
|
||||||
// lints = append(lints, lint)
|
|
||||||
// }
|
|
||||||
|
|
||||||
// channelRet["lints"] = lints
|
|
||||||
|
|
||||||
err = wsChannel.WriteJSON(&channelRet)
|
err = wsChannel.WriteJSON(&channelRet)
|
||||||
if nil != err {
|
if nil != err {
|
||||||
logger.Warn(err)
|
logger.Warn(err)
|
||||||
|
@ -275,17 +227,6 @@ func BuildHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
wsChannel.Refresh()
|
wsChannel.Refresh()
|
||||||
}
|
}
|
||||||
|
|
||||||
/////////////
|
|
||||||
|
|
||||||
// if 0 < len(stderrBuf) { // build error
|
|
||||||
// // build gutter lint
|
|
||||||
|
|
||||||
// errOut := string(stderrBuf)
|
|
||||||
// lines := strings.Split(errOut, "\n")
|
|
||||||
|
|
||||||
//
|
|
||||||
// }
|
|
||||||
|
|
||||||
if nil == cmd.Wait() {
|
if nil == cmd.Wait() {
|
||||||
channelRet["nextCmd"] = args["nextCmd"]
|
channelRet["nextCmd"] = args["nextCmd"]
|
||||||
channelRet["output"] = "<span class='build-succ'>" + i18n.Get(locale, "build-succ").(string) + "</span>\n"
|
channelRet["output"] = "<span class='build-succ'>" + i18n.Get(locale, "build-succ").(string) + "</span>\n"
|
||||||
|
@ -305,6 +246,57 @@ func BuildHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
}()
|
}()
|
||||||
} else {
|
} else {
|
||||||
channelRet["output"] = "<span class='build-error'>" + i18n.Get(locale, "build-error").(string) + "</span>\n"
|
channelRet["output"] = "<span class='build-error'>" + i18n.Get(locale, "build-error").(string) + "</span>\n"
|
||||||
|
|
||||||
|
logger.Info(lines)
|
||||||
|
// lint process
|
||||||
|
if lines[0][0] == '#' {
|
||||||
|
lines = lines[1:] // skip the first line
|
||||||
|
}
|
||||||
|
|
||||||
|
lints := []*Lint{}
|
||||||
|
|
||||||
|
for _, line := range lines {
|
||||||
|
if len(line) < 1 || !strings.Contains(line, ":") {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if line[0] == '\t' {
|
||||||
|
// append to the last lint
|
||||||
|
last := len(lints)
|
||||||
|
msg := lints[last-1].Msg
|
||||||
|
msg += line
|
||||||
|
|
||||||
|
lints[last-1].Msg = msg
|
||||||
|
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
file := line[:strings.Index(line, ":")]
|
||||||
|
left := line[strings.Index(line, ":")+1:]
|
||||||
|
index := strings.Index(left, ":")
|
||||||
|
lineNo := 0
|
||||||
|
msg := left
|
||||||
|
if index >= 0 {
|
||||||
|
lineNo, err = strconv.Atoi(left[:index])
|
||||||
|
|
||||||
|
if nil != err {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
msg = left[index+2:]
|
||||||
|
}
|
||||||
|
|
||||||
|
lint := &Lint{
|
||||||
|
File: filepath.ToSlash(filepath.Join(curDir, file)),
|
||||||
|
LineNo: lineNo - 1,
|
||||||
|
Severity: lintSeverityError,
|
||||||
|
Msg: msg,
|
||||||
|
}
|
||||||
|
|
||||||
|
lints = append(lints, lint)
|
||||||
|
}
|
||||||
|
|
||||||
|
channelRet["lints"] = lints
|
||||||
}
|
}
|
||||||
|
|
||||||
wsChannel := session.OutputWS[sid]
|
wsChannel := session.OutputWS[sid]
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
*
|
*
|
||||||
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
|
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
|
||||||
* @author <a href="http://88250.b3log.org">Liang Ding</a>
|
* @author <a href="http://88250.b3log.org">Liang Ding</a>
|
||||||
* @version 1.1.0.1, Dec 8, 2015
|
* @version 1.1.1.1, Mar 15, 2017
|
||||||
*/
|
*/
|
||||||
var bottomGroup = {
|
var bottomGroup = {
|
||||||
tabs: undefined,
|
tabs: undefined,
|
||||||
|
@ -82,6 +82,7 @@ var bottomGroup = {
|
||||||
fillOutput: function (data) {
|
fillOutput: function (data) {
|
||||||
var $output = $('.bottom-window-group .output');
|
var $output = $('.bottom-window-group .output');
|
||||||
|
|
||||||
|
data = data.replace(/\r/g, '');
|
||||||
data = data.replace(/\n/g, '<br/>');
|
data = data.replace(/\n/g, '<br/>');
|
||||||
|
|
||||||
if (-1 !== data.indexOf("<br/>")) {
|
if (-1 !== data.indexOf("<br/>")) {
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
*
|
*
|
||||||
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
|
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
|
||||||
* @author <a href="http://88250.b3log.org">Liang Ding</a>
|
* @author <a href="http://88250.b3log.org">Liang Ding</a>
|
||||||
* @version 1.0.0.1, Dec 8, 2015
|
* @version 1.0.1.1, Mar 15, 2017
|
||||||
*/
|
*/
|
||||||
var menu = {
|
var menu = {
|
||||||
init: function () {
|
init: function () {
|
||||||
|
@ -313,10 +313,11 @@ var menu = {
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
beforeSend: function () {
|
beforeSend: function () {
|
||||||
bottomGroup.resetOutput();
|
bottomGroup.resetOutput();
|
||||||
},
|
|
||||||
success: function (result) {
|
|
||||||
$("#buildRun").addClass("ico-stop")
|
$("#buildRun").addClass("ico-stop")
|
||||||
.removeClass("ico-buildrun").attr("title", config.label.stop);
|
.removeClass("ico-buildrun").attr("title", config.label.stop);
|
||||||
|
},
|
||||||
|
success: function (result) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue