Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
koko
Commits
896e1d61
Commit
896e1d61
authored
Jun 24, 2019
by
Eric
Committed by
Eric_Lee
Jun 24, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bugs: 截断乱码问题
parent
dff669eb
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
14 deletions
+41
-14
table.go
pkg/common/table.go
+30
-3
table_test.go
pkg/common/table_test.go
+8
-10
pagination.go
pkg/handler/pagination.go
+1
-1
session.go
pkg/handler/session.go
+2
-0
No files found.
pkg/common/table.go
View file @
896e1d61
package
common
package
common
import
(
import
(
"fmt"
"strings"
"strings"
"unicode/utf8"
"github.com/olekukonko/tablewriter"
"github.com/olekukonko/tablewriter"
)
)
...
@@ -145,12 +147,15 @@ func (t *WrapperTable) convertDataToSlice() [][]string {
...
@@ -145,12 +147,15 @@ func (t *WrapperTable) convertDataToSlice() [][]string {
}
else
{
}
else
{
switch
t
.
TruncPolicy
{
switch
t
.
TruncPolicy
{
case
TruncSuffix
:
case
TruncSuffix
:
row
[
m
]
=
j
[
n
][
:
columSize
-
3
]
+
"..."
row
[
m
]
=
fmt
.
Sprintf
(
"%s..."
,
GetValidString
(
j
[
n
],
columSize
-
3
,
true
))
case
TruncPrefix
:
case
TruncPrefix
:
row
[
m
]
=
"..."
+
j
[
n
][
len
(
j
[
n
])
-
columSize
-
3
:
]
row
[
m
]
=
fmt
.
Sprintf
(
"...%s"
,
GetValidString
(
j
[
n
],
len
(
j
[
n
])
-
columSize
-
3
,
false
))
case
TruncMiddle
:
case
TruncMiddle
:
midValue
:=
(
columSize
-
3
)
/
2
midValue
:=
(
columSize
-
3
)
/
2
row
[
m
]
=
j
[
n
][
:
midValue
]
+
"..."
+
j
[
n
][
len
(
j
[
n
])
-
midValue
:
]
row
[
m
]
=
fmt
.
Sprintf
(
"%s...%s"
,
GetValidString
(
j
[
n
],
midValue
,
true
),
GetValidString
(
j
[
n
],
len
(
j
[
n
])
-
midValue
,
false
))
}
}
}
}
...
@@ -187,3 +192,24 @@ func (t *WrapperTable) Display() string {
...
@@ -187,3 +192,24 @@ func (t *WrapperTable) Display() string {
table
.
Render
()
table
.
Render
()
return
tableString
.
String
()
return
tableString
.
String
()
}
}
func
GetValidString
(
s
string
,
position
int
,
positive
bool
)
string
{
step
:=
1
if
positive
{
step
=
-
1
}
for
position
>=
0
&&
position
<=
len
(
s
)
{
switch
positive
{
case
true
:
if
utf8
.
ValidString
(
s
[
:
position
]){
return
s
[
:
position
]
}
case
false
:
if
utf8
.
ValidString
(
s
[
position
:
]){
return
s
[
position
:
]
}
}
position
+=
step
}
return
""
}
\ No newline at end of file
pkg/common/table_test.go
View file @
896e1d61
...
@@ -29,14 +29,11 @@ func TestNewTable_CalculateColumnsSize(t *testing.T) {
...
@@ -29,14 +29,11 @@ func TestNewTable_CalculateColumnsSize(t *testing.T) {
data
:=
table
.
Display
()
data
:=
table
.
Display
()
fmt
.
Println
(
data
)
fmt
.
Println
(
data
)
fmt
.
Println
(
table
.
fieldsSize
)
fmt
.
Println
(
table
.
fieldsSize
)
//if table.fieldsSize["comment"] != 6 {
// t.Error("comment需要为6")
//}
//
//table.TotalSize = 188
//table.CalculateColumnsSize()
//if table.fieldsSize["comment"] != 136 {
// t.Error("comment长度需要为136")
//}
//fmt.Println(table.fieldsSize)
}
}
func
TestGetCorrectString
(
t
*
testing
.
T
)
{
foo
:=
"主2erert机名"
a
:=
GetValidString
(
foo
,
2
,
false
)
t
.
Log
(
a
==
"2erert机名"
)
}
\ No newline at end of file
pkg/handler/pagination.go
View file @
896e1d61
...
@@ -168,7 +168,7 @@ func (p *AssetPagination) displayPageAssets() {
...
@@ -168,7 +168,7 @@ func (p *AssetPagination) displayPageAssets() {
"hostname"
:
{
0
,
8
,
0
},
"hostname"
:
{
0
,
8
,
0
},
"IP"
:
{
0
,
15
,
40
},
"IP"
:
{
0
,
15
,
40
},
"systemUsers"
:
{
0
,
12
,
0
},
"systemUsers"
:
{
0
,
12
,
0
},
"comment"
:
{
0
,
0
,
4
0
},
"comment"
:
{
0
,
0
,
0
},
},
},
Data
:
data
,
Data
:
data
,
TotalSize
:
w
,
TotalSize
:
w
,
...
...
pkg/handler/session.go
View file @
896e1d61
...
@@ -120,6 +120,8 @@ func (h *interactiveHandler) watchWinSizeChange() {
...
@@ -120,6 +120,8 @@ func (h *interactiveHandler) watchWinSizeChange() {
winChan
:=
sessChan
winChan
:=
sessChan
for
{
for
{
select
{
select
{
case
<-
h
.
sess
.
Context
()
.
Done
()
:
return
case
sig
,
ok
:=
<-
h
.
winWatchChan
:
case
sig
,
ok
:=
<-
h
.
winWatchChan
:
if
!
ok
{
if
!
ok
{
return
return
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment