Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use a faster method to convert ints to strings #570

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions SCC-OUTPUT-REPORT.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
<th>447</th>
<th>7678</th>
<th>1413</th>
<th>256008</th>
<th>4131</th>
<th>256040</th>
<th>4138</th>
</tr><tr>
<td>processor/workers_test.go</td>
<td></td>
Expand All @@ -38,8 +38,8 @@
<td>39</td>
<td>1272</td>
<td>163</td>
<td>44359</td>
<td>783</td>
<td>44422</td>
<td>790</td>
</tr><tr>
<td>processor/formatters_test.go</td>
<td></td>
Expand Down Expand Up @@ -198,7 +198,7 @@
<td>3</td>
<td>78</td>
<td>17</td>
<td>2030</td>
<td>1999</td>
<td>53</td>
</tr><tr>
<td>processor/structs_test.go</td>
Expand Down Expand Up @@ -299,8 +299,8 @@
<th>447</th>
<th>7678</th>
<th>1413</th>
<th>256008</th>
<th>4131</th>
<th>256040</th>
<th>4138</th>
</tr>
<tr>
<th colspan="9">Estimated Cost to Develop (organic) $229,670<br>Estimated Schedule Effort (organic) 7.86 months<br>Estimated People Required (organic) 2.59<br></th>
Expand Down
16 changes: 8 additions & 8 deletions cmd/badges/simplecache_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"fmt"
"strconv"
"sync"
"testing"
"time"
Expand All @@ -11,12 +11,12 @@ func TestSimpleCache_Add(t *testing.T) {
simpleCache := NewSimpleCache(5, 60)

for i := 0; i < 5; i++ {
simpleCache.Add(fmt.Sprintf("%d", i), []byte{})
simpleCache.Add(strconv.Itoa(i), []byte{})
}

for i := 0; i < 4; i++ {
for j := 0; j < 5; j++ {
simpleCache.Get(fmt.Sprintf("%d", i))
simpleCache.Get(strconv.Itoa(i))
}
}

Expand All @@ -27,7 +27,7 @@ func TestSimpleCache_Multiple(t *testing.T) {
simpleCache := NewSimpleCache(10, 60)

for i := 0; i < 500; i++ {
simpleCache.Add(fmt.Sprintf("%d", i), []byte{})
simpleCache.Add(strconv.Itoa(i), []byte{})
}

simpleCache.Add("test-key", []byte{})
Expand All @@ -41,9 +41,9 @@ func TestSimpleCache_MultipleLarge(t *testing.T) {
simpleCache := NewSimpleCache(1000, 60)

for i := 0; i < 500000; i++ {
simpleCache.Add(fmt.Sprintf("%d", i), []byte{})
simpleCache.Add(strconv.Itoa(i), []byte{})
simpleCache.Add("10", []byte{})
simpleCache.Get(fmt.Sprintf("%d", i))
simpleCache.Get(strconv.Itoa(i))
simpleCache.Get("10")
simpleCache.Get("10")
}
Expand All @@ -65,7 +65,7 @@ func TestSimpleCache_AgeOut(t *testing.T) {
}

for i := 0; i < 10; i++ {
simpleCache.Add(fmt.Sprintf("%d", i), []byte{})
simpleCache.Add(strconv.Itoa(i), []byte{})
}

// advance time
Expand All @@ -86,7 +86,7 @@ func TestSimpleCache_AgeOutTime(t *testing.T) {
simpleCache := NewSimpleCache(100, 1)

for i := 0; i < 10; i++ {
simpleCache.Add(fmt.Sprintf("%d", i), []byte{})
simpleCache.Add(strconv.Itoa(i), []byte{})
}

time.Sleep(1 * time.Second)
Expand Down
46 changes: 23 additions & 23 deletions processor/formatters.go
Original file line number Diff line number Diff line change
Expand Up @@ -305,14 +305,14 @@ func toCSVSummary(input chan *FileJob) string {
for _, result := range language {
records = append(records, []string{
result.Name,
fmt.Sprint(result.Lines),
fmt.Sprint(result.Code),
fmt.Sprint(result.Comment),
fmt.Sprint(result.Blank),
fmt.Sprint(result.Complexity),
fmt.Sprint(result.Bytes),
fmt.Sprint(result.Count),
fmt.Sprint(len(ulocLanguageCount[result.Name])),
strconv.FormatInt(result.Lines, 10),
strconv.FormatInt(result.Code, 10),
strconv.FormatInt(result.Comment, 10),
strconv.FormatInt(result.Blank, 10),
strconv.FormatInt(result.Complexity, 10),
strconv.FormatInt(result.Bytes, 10),
strconv.FormatInt(result.Count, 10),
strconv.Itoa(len(ulocLanguageCount[result.Name])),
})
}

Expand Down Expand Up @@ -403,13 +403,13 @@ func toCSVFiles(input chan *FileJob) string {
result.Language,
result.Location,
result.Filename,
fmt.Sprint(result.Lines),
fmt.Sprint(result.Code),
fmt.Sprint(result.Comment),
fmt.Sprint(result.Blank),
fmt.Sprint(result.Complexity),
fmt.Sprint(result.Bytes),
fmt.Sprint(result.Uloc),
strconv.FormatInt(result.Lines, 10),
strconv.FormatInt(result.Code, 10),
strconv.FormatInt(result.Comment, 10),
strconv.FormatInt(result.Blank, 10),
strconv.FormatInt(result.Complexity, 10),
strconv.FormatInt(result.Bytes, 10),
strconv.Itoa(result.Uloc),
})
}

Expand Down Expand Up @@ -493,17 +493,17 @@ func toCSVStream(input chan *FileJob) string {
var location = "\"" + quoteRegex.ReplaceAllString(result.Location, "\"\"") + "\""
var filename = "\"" + quoteRegex.ReplaceAllString(result.Filename, "\"\"") + "\""

fmt.Printf("%s,%s,%s,%s,%s,%s,%s,%s,%s,%s\n",
fmt.Printf("%s,%s,%s,%d,%d,%d,%d,%d,%d,%d\n",
result.Language,
location,
filename,
fmt.Sprint(result.Lines),
fmt.Sprint(result.Code),
fmt.Sprint(result.Comment),
fmt.Sprint(result.Blank),
fmt.Sprint(result.Complexity),
fmt.Sprint(result.Bytes),
fmt.Sprint(result.Uloc),
result.Lines,
result.Code,
result.Comment,
result.Blank,
result.Complexity,
result.Bytes,
result.Uloc,
)
}

Expand Down
Loading