refactor: replace GetRandom with IoT sensing data update scenario

This commit is contained in:
2026-07-17 15:51:10 +09:00
parent 50edea0225
commit 902af18555
10 changed files with 446 additions and 346 deletions
+13 -21
View File
@@ -11,7 +11,7 @@ import (
"google.golang.org/grpc/credentials/insecure"
)
func AskingDateTime(ctx context.Context, m protoapi.RandomClient) (*protoapi.DateTime, error) {
func AskingDateTime(ctx context.Context, m protoapi.IoTServiceClient) (*protoapi.DateTime, error) {
request := &protoapi.RequestDateTime{
Value: "Please send me the date and time",
}
@@ -19,7 +19,7 @@ func AskingDateTime(ctx context.Context, m protoapi.RandomClient) (*protoapi.Dat
return m.GetDate(ctx, request)
}
func AskPass(ctx context.Context, m protoapi.RandomClient, seed int64, length int64) (*protoapi.RandomPass, error) {
func AskPass(ctx context.Context, m protoapi.IoTServiceClient, seed int64, length int64) (*protoapi.RandomPass, error) {
request := &protoapi.RequestPass{
Seed: seed,
Length: length,
@@ -28,13 +28,14 @@ func AskPass(ctx context.Context, m protoapi.RandomClient, seed int64, length in
return m.GetRandomPass(ctx, request)
}
func AskRandom(ctx context.Context, m protoapi.RandomClient, seed int64, place int64) (*protoapi.RandomInt, error) {
request := &protoapi.RandomParams{
Seed: seed,
Place: place,
func AskUpdateSensingData(ctx context.Context, m protoapi.IoTServiceClient, deviceId string, temp float64, humid float64) (*protoapi.SensingResponse, error) {
request := &protoapi.SensingData{
DeviceId: deviceId,
Temperature: temp,
Humidity: humid,
}
return m.GetRandom(ctx, request)
return m.UpdateSensingData(ctx, request)
}
func ClientRun(addr string) {
@@ -44,10 +45,7 @@ func ClientRun(addr string) {
return
}
rand.Seed(time.Now().Unix())
seed := int64(rand.Intn(100))
client := protoapi.NewRandomClient(conn)
client := protoapi.NewIoTServiceClient(conn)
r, err := AskingDateTime(context.Background(), client)
if err != nil {
fmt.Println(err)
@@ -55,6 +53,7 @@ func ClientRun(addr string) {
}
fmt.Println("Server Date and Time:", r.Value)
rand.Seed(time.Now().Unix())
length := int64(rand.Intn(20))
p, err := AskPass(context.Background(), client, 100, length+1)
if err != nil {
@@ -63,18 +62,11 @@ func ClientRun(addr string) {
}
fmt.Println("Random Password:", p.Password)
place := int64(rand.Intn(100))
i, err := AskRandom(context.Background(), client, seed, place)
res, err := AskUpdateSensingData(context.Background(), client, "sensor-room-01", 24.5, 52.3)
if err != nil {
fmt.Println(err)
return
}
fmt.Println("Random Integer 1:", i.Value)
k, err := AskRandom(context.Background(), client, seed, place-1)
if err != nil {
fmt.Println(err)
return
}
fmt.Println("Random Integer 2:", k.Value)
fmt.Println("Sensing Update Success:", res.Success)
fmt.Println("Sensing Update Message:", res.Message)
}