Shared Libraries
The toolkit is currently a collection of libraries that the rest of the mygreeter service can use.
In the future these libraries would be exposed and put on github or an external repository.
Structure
Database
A simple wrapper that will allow you to connect and query a database easier.
Sample usage:
dbClient, err = database.NewDbClient(context.Background(), databaseServerUrl, databasePort, databaseName)
if err != nil {
logger.Error("Error creating connection pool: " + err.Error())
}
query := "SELECT LastName FROM family WHERE FirstName = ?"
rows, err := database.QueryDb(ctx, dbClient, query, firstName)
if err != nil {
fmt.Println("Error checking if the previous operation of the entity is finished: " + err.Error())
}
var lastName string
for rows.Next() {
err = rows.Scan(&lastName)
if err != nil {
fmt.Println("Error getting the lastName of the family: " + err.Error())
}
}
fmt.Println("The last name of the family is: " + lastName)
OperationsBus
This package holds the interfaces and methods that will allow you to create your own asynchronous operations, and have an asynchronous processor that runs them as they are received. This package assumes the existance of: a Service Bus to receive the messaages (currently only supports Azure Service Bus), a database where you store entity information, a database where you store operation information. All these requirements are implemented by the user by using the different interfaces that are provided.
Sample usage:
ctx, cancel := context.WithCancel(context.Background())
matcher := operationsbus.NewMatcher()
lro := &LongRunningOperation{}
sro := &ShortRunningOperation{}
matcher.Register(lro.GetName(ctx), lro)
matcher.Register(sro.GetName(ctx), sro)
processor, err := operationsbus.CreateProcessor(serviceBusSender, serviceBusReceiver, matcher, operationContainer)
err = asyncStruct.Processor.Start(ctx)
if err != nil {
cancel()
}
cancel()
In order to create a new operation type, you will simply need to create a struct that is of implements the interface APIOperation
and another struct representing the modified entity that implementes the Entity
interface.
Here's a quick example:
var _ opbus.APIOperation = &LongRunningOperation{}
type LongRunningOperation struct {
Name string
Operation opbus.OperationRequest
LroEntity *LongRunningEntity
OperationId string
EntityId string
EntityType string
Retries int
ExpirationDate *timestamppb.Timestamp
}
func (lro *LongRunningOperation) Init(ctx context.Context, opRequest opbus.OperationRequest) (opbus.APIOperation, error) {
lro.Operation = opRequest
lro.Name = opRequest.OperationName
lro.OperationId = opRequest.OperationId
lro.EntityType = opRequest.EntityType
lro.EntityId = opRequest.EntityId
lro.Retries = opRequest.RetryCount
return nil, nil
}
func (lro *LongRunningOperation) Run(ctx context.Context) *opbus.Result {
logger := ctxlogger.GetLogger(ctx)
logger.Info("Running the long running operation!")
time.Sleep(20 * time.Second)
logger.Info("Finished running the long running operation.")
result := &opbus.Result{
HTTPCode: 200,
Message: "Success",
}
return result
}
func (lro *LongRunningOperation) Guardconcurrency(ctx context.Context, entity opbus.Entity) (*opbus.CategorizedError, error) {
logger := ctxlogger.GetLogger(ctx)
logger.Info("Guarding concurrency for operation.")
if entity.GetLatestOperationID() == lro.OperationId {
return nil, nil
} else {
return nil, errors.New("Wrong operation running.")
}
}
func (lro *LongRunningOperation) GetName(ctx context.Context) string {
return "LongRunningOperation"
}
func (lro *LongRunningOperation) GetOperationRequest(context.Context) *opbus.OperationRequest {
return &lro.Operation
}
var _ opbus.Entity = &LongRunningEntity{}
type LongRunningEntity struct {
LastOperationId string
}
func NewLongRunningEntity(lastOperationId string) *LongRunningEntity {
return &LongRunningEntity{
LastOperationId: lastOperationId,
}
}
func (lre *LongRunningEntity) GetLatestOperationID() string {
return lre.LastOperationId
}
Additionally, if there are fields that you need to Init your operation, but they don't currently exist in the OperationRequest, you can use the Extension
variable to add any interface you need together with the SetExtension(interface{})
method in order to use that interface as a more concrete type and directly change the OperationRequest.Extension variable, so you can continue using the same instance.
type Sample struct {
Message string
Num int
}
var body OperationRequest
err := json.Unmarshal(marshalledOperation, &body)
if err != nil {
t.Fatalf("Could not unmarshall operation request:" + err.Error())
}
s := &Sample{}
err = body.SetExtension(s)
if err != nil {
t.Fatalf("SetExtension errored: " + err.Error())
}
if ext, ok := body.Extension.(*Sample); ok {
fmt.Println(ext.Message)
fmt.Println(ext.Num)
} else {
fmt.Println("Extension is not of type *Sample")
}
Service Bus
A simple wrapper that will allow you to connect and receive messages from a service bus client.
Sample usage:
ctx := context.Background()
sender, err := serviceBusClient.NewServiceBusSender(ctx, queueName)
if err != nil {
fmt.Println("Something went wrong creating the service bus sender: " + err.Error())
}
expirationTime := timestamppb.New(time.Now().Add(1 * time.Hour))
extension := "Hello!"
operation := operationsbus.NewOperationRequest("LongRunningOperation", "v0.0.1", "1", "1", "Cluster", 0, expirationTime, nil, "", extension)
marshalledOperation, err := json.Marshal(operation)
if err != nil {
fmt.Println("Error marshalling operation: " + err.Error())
}
err = sender.SendMessage(ctx, marshalledOperation)
if err != nil {
fmt.Println("Something happened: " + err.Error())
}