-
Notifications
You must be signed in to change notification settings - Fork 0
/
deployerControl.go
93 lines (77 loc) · 4.08 KB
/
deployerControl.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package xcweaver
import (
"context"
"fmt"
"os"
"github.com/TiagoMalhadas/xcweaver/internal/control"
"github.com/TiagoMalhadas/xcweaver/runtime/colors"
"github.com/TiagoMalhadas/xcweaver/runtime/logging"
"github.com/TiagoMalhadas/xcweaver/runtime/protos"
)
// deployerControl is a component hosted in every deployer. Weavelets make calls to this
// component to interact with the deployer.
type deployerControl control.DeployerControl
// localDeployerControl is the implementation of deployerControl for local execution. It is
// overridden by remote deployers.
type localDeployerControl struct {
Implements[deployerControl]
pp *logging.PrettyPrinter
}
var _ deployerControl = &localDeployerControl{}
// Init initializes the local deployerControl component.
func (local *localDeployerControl) Init(ctx context.Context) error {
local.pp = logging.NewPrettyPrinter(colors.Enabled())
return nil
}
// LogBatch implements the control.DeployerControl interface.
func (local *localDeployerControl) LogBatch(ctx context.Context, batch *protos.LogEntryBatch) error {
for _, entry := range batch.Entries {
fmt.Fprintln(os.Stderr, local.pp.Format(entry))
}
return nil
}
// HandleTraceSpans implements the control.DeployerControl interface.
func (local *localDeployerControl) HandleTraceSpans(ctx context.Context, spans *protos.TraceSpans) error {
return fmt.Errorf("localDeployerControl.HandleTraceSpans not implemented")
}
// ActivateComponent implements the control.DeployerControl interface.
func (*localDeployerControl) ActivateComponent(context.Context, *protos.ActivateComponentRequest) (*protos.ActivateComponentReply, error) {
return nil, fmt.Errorf("localDeployerControl.ActivateComponent not implemented")
}
// GetListenerAddress implements the control.DeployerControl interface.
func (*localDeployerControl) GetListenerAddress(context.Context, *protos.GetListenerAddressRequest) (*protos.GetListenerAddressReply, error) {
return nil, fmt.Errorf("localDeployerControl.GetListenerAddress not implemented")
}
// GetAntipodeAgentInfo implements the control.DeployerControl interface.
func (*localDeployerControl) GetAntipodeAgentInfo(_ context.Context, request *protos.GetAntipodeAgentInfoRequest) (*protos.GetAntipodeAgentInfoReply, error) {
return nil, fmt.Errorf("localDeployerControl.GetAntipodeAgentInfo not implemented")
}
// ExportListener implements the control.DeployerControl interface.
func (*localDeployerControl) ExportListener(context.Context, *protos.ExportListenerRequest) (*protos.ExportListenerReply, error) {
return nil, fmt.Errorf("localDeployerControl.ExportListener not implemented")
}
// GetSelfCertificate implements the control.DeployerControl interface.
func (*localDeployerControl) GetSelfCertificate(context.Context, *protos.GetSelfCertificateRequest) (*protos.GetSelfCertificateReply, error) {
return nil, fmt.Errorf("localDeployerControl.GetSelfCertificate not implemented")
}
// VerifyClientCertificate implements the control.DeployerControl interface.
func (*localDeployerControl) VerifyClientCertificate(context.Context, *protos.VerifyClientCertificateRequest) (*protos.VerifyClientCertificateReply, error) {
return nil, fmt.Errorf("localDeployerControl.VerifyClientCertificate not implemented")
}
// VerifyServerCertificate implements the control.DeployerControl interface.
func (*localDeployerControl) VerifyServerCertificate(context.Context, *protos.VerifyServerCertificateRequest) (*protos.VerifyServerCertificateReply, error) {
return nil, fmt.Errorf("localDeployerControl.VerifyServerCertificate not implemented")
}