Ariver
2026-06-28 fc6d61e41b1b0e0686d1346694445dc119b97872
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
//go:build darwin
 
package input
 
/*
#cgo CFLAGS: -x objective-c
#cgo LDFLAGS: -framework AppKit -framework CoreGraphics -framework Carbon -framework ApplicationServices
#include <AppKit/AppKit.h>
#include <CoreGraphics/CoreGraphics.h>
#include <Carbon/Carbon.h>
#include <ApplicationServices/ApplicationServices.h>
#include <stdlib.h>
#include <string.h>
 
static int ensureInputPermission(void) {
    NSDictionary* opts = @{(__bridge NSString*)kAXTrustedCheckOptionPrompt: @YES};
    return AXIsProcessTrustedWithOptions((__bridge CFDictionaryRef)opts) ? 1 : 0;
}
 
static void setClipboardText(const char* text) {
    NSPasteboard* pb = [NSPasteboard generalPasteboard];
    [pb clearContents];
    NSString* str = [NSString stringWithUTF8String:text];
    [pb setString:str forType:NSPasteboardTypeString];
}
 
static void clearClipboardText(void) {
    NSPasteboard* pb = [NSPasteboard generalPasteboard];
    [pb clearContents];
}
 
static char* getClipboardText(void) {
    NSPasteboard* pb = [NSPasteboard generalPasteboard];
    NSString* str = [pb stringForType:NSPasteboardTypeString];
    if (!str) return NULL;
    const char* utf8 = [str UTF8String];
    if (!utf8) return NULL;
    return strdup(utf8);
}
 
static void simulateCmdV() {
    CGEventSourceRef source = CGEventSourceCreate(kCGEventSourceStateCombinedSessionState);
 
    CGEventRef cmdDown = CGEventCreateKeyboardEvent(source, (CGKeyCode)kVK_Command, true);
    CGEventSetFlags(cmdDown, kCGEventFlagMaskCommand);
    CGEventPost(kCGHIDEventTap, cmdDown);
 
    CGEventRef vDown = CGEventCreateKeyboardEvent(source, (CGKeyCode)kVK_ANSI_V, true);
    CGEventSetFlags(vDown, kCGEventFlagMaskCommand);
    CGEventPost(kCGHIDEventTap, vDown);
 
    CGEventRef vUp = CGEventCreateKeyboardEvent(source, (CGKeyCode)kVK_ANSI_V, false);
    CGEventSetFlags(vUp, kCGEventFlagMaskCommand);
    CGEventPost(kCGHIDEventTap, vUp);
 
    CGEventRef cmdUp = CGEventCreateKeyboardEvent(source, (CGKeyCode)kVK_Command, false);
    CGEventSetFlags(cmdUp, 0);
    CGEventPost(kCGHIDEventTap, cmdUp);
 
    CFRelease(cmdDown);
    CFRelease(vDown);
    CFRelease(vUp);
    CFRelease(cmdUp);
    CFRelease(source);
}
 
static void typeUnicodeChar(unsigned int codepoint) {
    CGEventSourceRef source = CGEventSourceCreate(kCGEventSourceStateCombinedSessionState);
    UniChar chars[2];
    int len = 0;
 
    if (codepoint <= 0xFFFF) {
        chars[0] = (UniChar)codepoint;
        len = 1;
    } else {
        codepoint -= 0x10000;
        chars[0] = (UniChar)(0xD800 + (codepoint >> 10));
        chars[1] = (UniChar)(0xDC00 + (codepoint & 0x3FF));
        len = 2;
    }
 
    CGEventRef keyDown = CGEventCreateKeyboardEvent(source, 0, true);
    CGEventKeyboardSetUnicodeString(keyDown, len, chars);
    CGEventPost(kCGHIDEventTap, keyDown);
 
    CGEventRef keyUp = CGEventCreateKeyboardEvent(source, 0, false);
    CGEventKeyboardSetUnicodeString(keyUp, len, chars);
    CGEventPost(kCGHIDEventTap, keyUp);
 
    CFRelease(keyDown);
    CFRelease(keyUp);
    CFRelease(source);
}
*/
import "C"
 
import (
    "fmt"
    "sync"
    "time"
    "unsafe"
)
 
const (
    darwinClipboardVerifyTimeout = 500 * time.Millisecond
    darwinClipboardPollInterval  = 15 * time.Millisecond
    darwinClipboardRestoreDelay  = 900 * time.Millisecond
)
 
type darwinPaster struct{}
 
type darwinClipboardSnapshot struct {
    text    string
    hasText bool
}
 
type darwinPasteState struct {
    mu             sync.Mutex
    generation     uint64
    pendingRestore bool
    pendingText    string
    restoreTo      darwinClipboardSnapshot
}
 
var globalDarwinPasteState darwinPasteState
 
func newPlatformPaster() Paster {
    return &darwinPaster{}
}
 
func (p *darwinPaster) Paste(text string, keepClipboard bool) error {
    if C.ensureInputPermission() == 0 {
        return fmt.Errorf("accessibility permission is required to paste")
    }
 
    state := &globalDarwinPasteState
    state.mu.Lock()
    state.generation++
    generation := state.generation
 
    originalClipboard := currentDarwinClipboardSnapshot()
    if !keepClipboard {
        originalClipboard = resolveDarwinRestoreTarget(
            originalClipboard,
            state.pendingRestore,
            state.pendingText,
            state.restoreTo,
        )
    }
 
    cstr := C.CString(text)
    defer C.free(unsafe.Pointer(cstr))
    C.setClipboardText(cstr)
    if !waitForDarwinClipboardText(text, darwinClipboardVerifyTimeout) {
        state.pendingRestore = false
        state.mu.Unlock()
        return fmt.Errorf("clipboard verification failed before paste")
    }
 
    C.simulateCmdV()
 
    if keepClipboard {
        state.pendingRestore = false
        state.mu.Unlock()
        return nil
    }
 
    state.pendingRestore = true
    state.pendingText = text
    state.restoreTo = originalClipboard
    state.mu.Unlock()
 
    go restoreDarwinClipboardAfterPaste(generation, text, originalClipboard)
    return nil
}
 
func (p *darwinPaster) TypeText(text string) error {
    if C.ensureInputPermission() == 0 {
        return fmt.Errorf("accessibility permission is required to type")
    }
    for _, r := range text {
        C.typeUnicodeChar(C.uint(r))
    }
    return nil
}
 
func currentDarwinClipboardSnapshot() darwinClipboardSnapshot {
    cText := C.getClipboardText()
    if cText == nil {
        return darwinClipboardSnapshot{}
    }
    defer C.free(unsafe.Pointer(cText))
    return darwinClipboardSnapshot{
        text:    C.GoString(cText),
        hasText: true,
    }
}
 
func resolveDarwinRestoreTarget(current darwinClipboardSnapshot, pending bool, pendingText string, restoreTo darwinClipboardSnapshot) darwinClipboardSnapshot {
    if pending && current.hasText && current.text == pendingText {
        return restoreTo
    }
    return current
}
 
func waitForDarwinClipboardText(expected string, timeout time.Duration) bool {
    deadline := time.Now().Add(timeout)
    for {
        current := currentDarwinClipboardSnapshot()
        if current.hasText && current.text == expected {
            return true
        }
        if time.Now().After(deadline) {
            return false
        }
        time.Sleep(darwinClipboardPollInterval)
    }
}
 
func restoreDarwinClipboardAfterPaste(generation uint64, pastedText string, restoreTo darwinClipboardSnapshot) {
    time.Sleep(darwinClipboardRestoreDelay)
 
    state := &globalDarwinPasteState
    state.mu.Lock()
    defer state.mu.Unlock()
 
    if state.generation != generation || !state.pendingRestore || state.pendingText != pastedText {
        return
    }
 
    current := currentDarwinClipboardSnapshot()
    if !shouldRestoreDarwinClipboard(
        state.generation,
        generation,
        state.pendingRestore,
        state.pendingText,
        pastedText,
        current,
    ) {
        state.pendingRestore = false
        return
    }
 
    restoreDarwinClipboardSnapshot(restoreTo)
    state.pendingRestore = false
}
 
func shouldRestoreDarwinClipboard(currentGeneration, restoreGeneration uint64, pending bool, pendingText, pastedText string, current darwinClipboardSnapshot) bool {
    if currentGeneration != restoreGeneration || !pending || pendingText != pastedText {
        return false
    }
    return current.hasText && current.text == pastedText
}
 
func restoreDarwinClipboardSnapshot(snapshot darwinClipboardSnapshot) {
    if !snapshot.hasText {
        C.clearClipboardText()
        return
    }
 
    cText := C.CString(snapshot.text)
    defer C.free(unsafe.Pointer(cText))
    C.setClipboardText(cText)
}