Compare commits
No commits in common. "main" and "v0.1.11" have entirely different histories.
@ -21,10 +21,6 @@ func (c *Client) IsReachable() bool {
|
||||
// and returns true as soon as IsReachable returns true.
|
||||
// When ctx is closed before Hyprland is reachable, false is returned
|
||||
func (c *Client) WaitUntilReachable(ctx context.Context) bool {
|
||||
if c.IsReachable() {
|
||||
return true
|
||||
}
|
||||
|
||||
ticker := time.NewTicker(100 * time.Millisecond)
|
||||
defer ticker.Stop()
|
||||
|
||||
|
@ -70,35 +70,11 @@ func GetClients() ([]*Client, error) {
|
||||
return clients, nil
|
||||
}
|
||||
|
||||
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) {
|
||||
func WaitForClient(ctx context.Context, signature string) {
|
||||
lockFilePath := fmt.Sprintf("/run/user/1000/hypr/%s/hyprland.lock", signature)
|
||||
|
||||
lockFileExists := waitFor(ctx, func() bool {
|
||||
waitFor(func() bool {
|
||||
_, err := os.Stat(lockFilePath)
|
||||
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
|
||||
}
|
||||
|
16
utils.go
16
utils.go
@ -1,7 +1,6 @@
|
||||
package hypr
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"io"
|
||||
"net"
|
||||
@ -52,22 +51,17 @@ func readSocket[T any](socket string, body io.Reader) (T, error) {
|
||||
return *value, nil
|
||||
}
|
||||
|
||||
func waitFor(ctx context.Context, condition func() bool) bool {
|
||||
func waitFor(condition func() bool) {
|
||||
if condition() {
|
||||
return true
|
||||
return
|
||||
}
|
||||
|
||||
ticker := time.NewTicker(100 * time.Millisecond)
|
||||
defer ticker.Stop()
|
||||
|
||||
for {
|
||||
select {
|
||||
case <-ticker.C:
|
||||
if condition() {
|
||||
return true
|
||||
}
|
||||
case <-ctx.Done():
|
||||
return false
|
||||
for range ticker.C {
|
||||
if condition() {
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user