Compare commits

...

5 Commits

3 changed files with 41 additions and 7 deletions

View File

@ -21,6 +21,10 @@ func (c *Client) IsReachable() bool {
// and returns true as soon as IsReachable returns true. // and returns true as soon as IsReachable returns true.
// When ctx is closed before Hyprland is reachable, false is returned // When ctx is closed before Hyprland is reachable, false is returned
func (c *Client) WaitUntilReachable(ctx context.Context) bool { func (c *Client) WaitUntilReachable(ctx context.Context) bool {
if c.IsReachable() {
return true
}
ticker := time.NewTicker(100 * time.Millisecond) ticker := time.NewTicker(100 * time.Millisecond)
defer ticker.Stop() defer ticker.Stop()

View File

@ -70,11 +70,35 @@ func GetClients() ([]*Client, error) {
return clients, nil return clients, nil
} }
func WaitForClient(ctx context.Context, signature string) { func WaitForDefaultClient(ctx context.Context) (*Client, error) {
signature, ok := os.LookupEnv("HYPRLAND_INSTANCE_SIGNATURE")
if !ok {
return nil, errors.New("default instance not found because HYPRLAND_INSTANCE_SIGNATURE is not set")
}
return WaitForClient(ctx, signature)
}
func WaitForClient(ctx context.Context, signature string) (*Client, error) {
lockFilePath := fmt.Sprintf("/run/user/1000/hypr/%s/hyprland.lock", signature) lockFilePath := fmt.Sprintf("/run/user/1000/hypr/%s/hyprland.lock", signature)
waitFor(func() bool { lockFileExists := waitFor(ctx, func() bool {
_, err := os.Stat(lockFilePath) _, err := os.Stat(lockFilePath)
return !errors.Is(err, os.ErrNotExist) return !errors.Is(err, os.ErrNotExist)
}) })
if !lockFileExists {
return nil, errors.New("hyprland lock file not found")
}
client, err := GetClient(signature)
if err != nil {
return nil, err
}
if !client.WaitUntilReachable(context.Background()) {
return nil, errors.New("hyprland not reachable")
}
return client, nil
} }

View File

@ -1,6 +1,7 @@
package hypr package hypr
import ( import (
"context"
"encoding/json" "encoding/json"
"io" "io"
"net" "net"
@ -51,17 +52,22 @@ func readSocket[T any](socket string, body io.Reader) (T, error) {
return *value, nil return *value, nil
} }
func waitFor(condition func() bool) { func waitFor(ctx context.Context, condition func() bool) bool {
if condition() { if condition() {
return return true
} }
ticker := time.NewTicker(100 * time.Millisecond) ticker := time.NewTicker(100 * time.Millisecond)
defer ticker.Stop() defer ticker.Stop()
for range ticker.C { for {
if condition() { select {
break case <-ticker.C:
if condition() {
return true
}
case <-ctx.Done():
return false
} }
} }
} }