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.
|
// 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()
|
||||||
|
|
||||||
|
@ -70,35 +70,11 @@ func GetClients() ([]*Client, error) {
|
|||||||
return clients, nil
|
return clients, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func WaitForDefaultClient(ctx context.Context) (*Client, error) {
|
func WaitForClient(ctx context.Context, signature string) {
|
||||||
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)
|
||||||
|
|
||||||
lockFileExists := waitFor(ctx, func() bool {
|
waitFor(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
|
|
||||||
}
|
}
|
||||||
|
16
utils.go
16
utils.go
@ -1,7 +1,6 @@
|
|||||||
package hypr
|
package hypr
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"io"
|
"io"
|
||||||
"net"
|
"net"
|
||||||
@ -52,22 +51,17 @@ func readSocket[T any](socket string, body io.Reader) (T, error) {
|
|||||||
return *value, nil
|
return *value, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func waitFor(ctx context.Context, condition func() bool) bool {
|
func waitFor(condition func() bool) {
|
||||||
if condition() {
|
if condition() {
|
||||||
return true
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
ticker := time.NewTicker(100 * time.Millisecond)
|
ticker := time.NewTicker(100 * time.Millisecond)
|
||||||
defer ticker.Stop()
|
defer ticker.Stop()
|
||||||
|
|
||||||
for {
|
for range ticker.C {
|
||||||
select {
|
if condition() {
|
||||||
case <-ticker.C:
|
break
|
||||||
if condition() {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
case <-ctx.Done():
|
|
||||||
return false
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user