Skip to content

Commit

Permalink
Merge branch 'version/0-48-0-RC1' into DX-3101
Browse files Browse the repository at this point in the history
  • Loading branch information
MDrakos committed Nov 6, 2024
2 parents d2a7df3 + 0100fab commit 7a38b44
Show file tree
Hide file tree
Showing 16 changed files with 536 additions and 295 deletions.
5 changes: 5 additions & 0 deletions activestate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,11 @@ scripts:
TARGET_BRANCH="master"
fi
if [ "$TARGET_BRANCH" == "master" ]; then
echo "Target branch is master, not checking for newlines"
exit 0
fi
git fetch --quiet origin $TARGET_BRANCH:refs/remotes/origin/$TARGET_BRANCH
CHANGED=$(git diff --name-only origin/$TARGET_BRANCH | grep -v testdata | grep -v vendor)
Expand Down
17 changes: 15 additions & 2 deletions cmd/state-svc/internal/messages/messages.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"encoding/json"
"fmt"
"os"
"runtime/debug"
"sync"
"time"

Expand All @@ -15,6 +16,7 @@ import (
"github.com/ActiveState/cli/internal/httputil"
"github.com/ActiveState/cli/internal/logging"
"github.com/ActiveState/cli/internal/poller"
"github.com/ActiveState/cli/internal/runbits/panics"
"github.com/ActiveState/cli/internal/strutils"
auth "github.com/ActiveState/cli/pkg/platform/authentication"
"github.com/ActiveState/cli/pkg/sysinfo"
Expand Down Expand Up @@ -43,6 +45,9 @@ func New(cfg *config.Instance, auth *auth.Auth) (*Messages, error) {
}

poll := poller.New(1*time.Hour, func() (interface{}, error) {
defer func() {
panics.LogAndPanic(recover(), debug.Stack())
}()
resp, err := fetch()
return resp, err
})
Expand Down Expand Up @@ -74,7 +79,11 @@ func (m *Messages) Check(command string, flags []string) ([]*graph.MessageInfo,
if cacheValue == nil {
return []*graph.MessageInfo{}, nil
}
allMessages := cacheValue.([]*graph.MessageInfo)

allMessages, ok := cacheValue.([]*graph.MessageInfo)
if !ok {
return nil, errs.New("cacheValue has unexpected type: %T", cacheValue)
}

conditionParams := *m.baseParams // copy
conditionParams.UserEmail = m.auth.Email()
Expand Down Expand Up @@ -110,7 +119,11 @@ func check(params *ConditionParams, messages []*graph.MessageInfo, lastReportMap
logging.Debug("Checking message %s", message.ID)
// Ensure we don't show the same message too often
if lastReport, ok := lastReportMap[message.ID]; ok {
lastReportTime, err := time.Parse(time.RFC3339, lastReport.(string))
lr, ok := lastReport.(string)
if !ok {
return nil, errs.New("Could not get last reported time for message %s as it's not a string: %T", message.ID, lastReport)
}
lastReportTime, err := time.Parse(time.RFC3339, lr)
if err != nil {
return nil, errs.New("Could not parse last reported time for message %s as it's not a valid RFC3339 value: %v", message.ID, lastReport)
}
Expand Down
38 changes: 18 additions & 20 deletions cmd/state-svc/internal/resolver/resolver.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ import (
"github.com/ActiveState/cli/internal/graph"
"github.com/ActiveState/cli/internal/logging"
configMediator "github.com/ActiveState/cli/internal/mediators/config"
"github.com/ActiveState/cli/internal/multilog"
"github.com/ActiveState/cli/internal/poller"
"github.com/ActiveState/cli/internal/rtutils/ptr"
"github.com/ActiveState/cli/internal/runbits/panics"
"github.com/ActiveState/cli/internal/updater"
"github.com/ActiveState/cli/pkg/platform/authentication"
"github.com/ActiveState/cli/pkg/projectfile"
Expand Down Expand Up @@ -57,6 +57,9 @@ func New(cfg *config.Instance, an *sync.Client, auth *authentication.Auth) (*Res

upchecker := updater.NewDefaultChecker(cfg, an)
pollUpdate := poller.New(1*time.Hour, func() (interface{}, error) {
defer func() {
panics.LogAndPanic(recover(), debug.Stack())
}()
logging.Debug("Poller checking for update info")
return upchecker.CheckFor(constants.ChannelName, "")
})
Expand All @@ -71,6 +74,9 @@ func New(cfg *config.Instance, an *sync.Client, auth *authentication.Auth) (*Res
}

pollAuth := poller.New(time.Duration(int64(time.Millisecond)*pollRate), func() (interface{}, error) {
defer func() {
panics.LogAndPanic(recover(), debug.Stack())
}()
if auth.SyncRequired() {
return nil, auth.Sync()
}
Expand Down Expand Up @@ -110,7 +116,7 @@ func (r *Resolver) Query() genserver.QueryResolver { return r }
func (r *Resolver) Mutation() genserver.MutationResolver { return r }

func (r *Resolver) Version(ctx context.Context) (*graph.Version, error) {
defer func() { handlePanics(recover(), debug.Stack()) }()
defer func() { panics.LogAndPanic(recover(), debug.Stack()) }()

r.an.EventWithLabel(anaConsts.CatStateSvc, "endpoint", "Version")
logging.Debug("Version resolver")
Expand All @@ -126,7 +132,7 @@ func (r *Resolver) Version(ctx context.Context) (*graph.Version, error) {
}

func (r *Resolver) AvailableUpdate(ctx context.Context, desiredChannel, desiredVersion string) (*graph.AvailableUpdate, error) {
defer func() { handlePanics(recover(), debug.Stack()) }()
defer func() { panics.LogAndPanic(recover(), debug.Stack()) }()

if desiredChannel == "" {
desiredChannel = constants.ChannelName
Expand Down Expand Up @@ -174,7 +180,7 @@ func (r *Resolver) AvailableUpdate(ctx context.Context, desiredChannel, desiredV
}

func (r *Resolver) Projects(ctx context.Context) ([]*graph.Project, error) {
defer func() { handlePanics(recover(), debug.Stack()) }()
defer func() { panics.LogAndPanic(recover(), debug.Stack()) }()

r.an.EventWithLabel(anaConsts.CatStateSvc, "endpoint", "Projects")
logging.Debug("Projects resolver")
Expand All @@ -194,7 +200,7 @@ func (r *Resolver) Projects(ctx context.Context) ([]*graph.Project, error) {
}

func (r *Resolver) AnalyticsEvent(_ context.Context, category, action, source string, _label *string, dimensionsJson string) (*graph.AnalyticsEventResponse, error) {
defer func() { handlePanics(recover(), debug.Stack()) }()
defer func() { panics.LogAndPanic(recover(), debug.Stack()) }()

logging.Debug("Analytics event resolver: %s - %s: %s (%s)", category, action, ptr.From(_label, "NIL"), source)

Expand Down Expand Up @@ -228,7 +234,7 @@ func (r *Resolver) AnalyticsEvent(_ context.Context, category, action, source st
}

func (r *Resolver) ReportRuntimeUsage(_ context.Context, pid int, exec, source string, dimensionsJSON string) (*graph.ReportRuntimeUsageResponse, error) {
defer func() { handlePanics(recover(), debug.Stack()) }()
defer func() { panics.LogAndPanic(recover(), debug.Stack()) }()

logging.Debug("Runtime usage resolver: %d - %s", pid, exec)
var dims *dimensions.Values
Expand All @@ -242,26 +248,26 @@ func (r *Resolver) ReportRuntimeUsage(_ context.Context, pid int, exec, source s
}

func (r *Resolver) CheckMessages(ctx context.Context, command string, flags []string) ([]*graph.MessageInfo, error) {
defer func() { handlePanics(recover(), debug.Stack()) }()
defer func() { panics.LogAndPanic(recover(), debug.Stack()) }()
logging.Debug("Check messages resolver")
return r.messages.Check(command, flags)
}

func (r *Resolver) ConfigChanged(ctx context.Context, key string) (*graph.ConfigChangedResponse, error) {
defer func() { handlePanics(recover(), debug.Stack()) }()
defer func() { panics.LogAndPanic(recover(), debug.Stack()) }()

go configMediator.NotifyListeners(key)
return &graph.ConfigChangedResponse{Received: true}, nil
}

func (r *Resolver) FetchLogTail(ctx context.Context) (string, error) {
defer func() { handlePanics(recover(), debug.Stack()) }()
defer func() { panics.LogAndPanic(recover(), debug.Stack()) }()

return logging.ReadTail(), nil
}

func (r *Resolver) GetProcessesInUse(ctx context.Context, execDir string) ([]*graph.ProcessInfo, error) {
defer func() { handlePanics(recover(), debug.Stack()) }()
defer func() { panics.LogAndPanic(recover(), debug.Stack()) }()

inUse := r.rtwatch.GetProcessesInUse(execDir)
processes := make([]*graph.ProcessInfo, 0, len(inUse))
Expand All @@ -272,7 +278,7 @@ func (r *Resolver) GetProcessesInUse(ctx context.Context, execDir string) ([]*gr
}

func (r *Resolver) GetJwt(ctx context.Context) (*graph.Jwt, error) {
defer func() { handlePanics(recover(), debug.Stack()) }()
defer func() { panics.LogAndPanic(recover(), debug.Stack()) }()

if err := r.auth.MaybeRenew(); err != nil {
return nil, errs.Wrap(err, "Could not renew auth token")
Expand Down Expand Up @@ -308,7 +314,7 @@ func (r *Resolver) GetJwt(ctx context.Context) (*graph.Jwt, error) {
}

func (r *Resolver) HashGlobs(ctx context.Context, wd string, globs []string) (*graph.GlobResult, error) {
defer func() { handlePanics(recover(), debug.Stack()) }()
defer func() { panics.LogAndPanic(recover(), debug.Stack()) }()

hash, files, err := r.fileHasher.HashFiles(wd, globs)
if err != nil {
Expand Down Expand Up @@ -341,11 +347,3 @@ func (r *Resolver) SetCache(ctx context.Context, key string, value string, expir
r.globalCache.Set(key, value, time.Duration(expiry)*time.Second)
return &graphqltypes.Void{}, nil
}

func handlePanics(recovered interface{}, stack []byte) {
if recovered != nil {
multilog.Error("Panic: %v", recovered)
logging.Debug("Stack: %s", string(stack))
panic(recovered) // We're only logging the panic, not interrupting it
}
}
107 changes: 0 additions & 107 deletions internal/colorize/cropped.go

This file was deleted.

Loading

0 comments on commit 7a38b44

Please sign in to comment.