The eeschema/pcbnew binding TUs had ~1000 lines of copy-pasted collab code. Factored into two header-only shared files (zero build-script changes — the collab_presence_style.h precedent): - collab_common.h (pcbjam_collab): toUtf8, runOnFiber (the CallAfter+COROUTINE fiber idiom — was ~25 inline copies), the window.kicadCollab wire emitters (onDelta/onItems/onCursor/onSelection/onViewport), frame-generic undo test hooks. - collab_presence_core.h (pcbjam_presence::CORE): PEER/PIN + all presence state and machinery (start/canvas binds/lock query, setRemote/setPins/ setStyle, selection check + dedupe, overlay redraw loop, viewport push/pull, releaseSelection, locks probe), written against the EDA_DRAW_FRAME + SELECTION_TOOL base classes. Per-editor hooks: frame, selectionTool, selectionEmitPayload, resolveItem, drawPeerShapes. One CORE instance per TU (anonymous-namespace presenceCore()) so the merged image keeps per-editor state separation. - NEW per-editor resolveXsel(frame, peer): ONE cross-app resolver shared by the ghost render AND kicadCollabTestGetCrossMapped — the mapping loop was duplicated within each TU, letting the test probe drift from the pixels. Deliberately NOT factored: the Yjs differ/apply halves (itemToJson/makeItem/ flushDiff/doApply*) — structurally parallel but the bodies encode per-editor sync semantics and editor-specific asyncify devirtualization workarounds that must stay visible. kicadOpenFile/kicadCollabOnSave keep the existing KICAD_MERGED_EMBIND mechanism. TestClearSelection stays editor-typed (ClearSelection is not on the SELECTION_TOOL base). eeschema_embind 2203→1721 lines, pcbnew_embind 2518→1993. JS-facing names, signatures and the kicad_editor_embind.cpp dispatcher are unchanged. Verified: kicad_editor image builds clean; tests/kicad presence+locks 18/18 (incl. ghost-render pixel compares), collab+ysync-repros 31 passed/2 skipped. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013u9h8fkQktH7KRECaHJmUG
120 lines
4.2 KiB
C++
120 lines
4.2 KiB
C++
/*
|
|
* Shared plumbing for the per-editor collab binding TUs (eeschema_embind.cpp,
|
|
* pcbnew_embind.cpp) — the frame-type-free half of the bridge: string/JSON
|
|
* wire emitters to window.kicadCollab, the CallAfter+COROUTINE fiber idiom,
|
|
* and the frame-generic test hooks. Header-only (the collab_presence_style.h
|
|
* pattern), so the build script needs no extra objects and the merged
|
|
* kicad_editor image links it without ODR issues.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __EMSCRIPTEN__
|
|
|
|
#include <emscripten.h>
|
|
#include <functional>
|
|
#include <string>
|
|
#include <nlohmann/json.hpp>
|
|
#include <wx/event.h>
|
|
#include <wx/string.h>
|
|
#include <eda_base_frame.h>
|
|
#include <tool/actions.h>
|
|
#include <tool/coroutine.h>
|
|
#include <tool/tool_manager.h>
|
|
|
|
namespace pcbjam_collab {
|
|
|
|
inline std::string toUtf8( const wxString& s ) { return std::string( s.utf8_str() ); }
|
|
|
|
/**
|
|
* Run a body on the editor's main loop AND on a libcontext fiber stack — the
|
|
* exact context native tool edits run in. Embind ccalls / bare CallAfter
|
|
* stacks mis-dispatch asyncify-instrumented virtual calls (invoke_* through a
|
|
* stale table type traps, or silently no-ops); commits, GAL overlay work and
|
|
* the s-expr formatters must therefore run through this. CallAfter queues
|
|
* onto the app's pending-event list (drained every frame by the wasm main
|
|
* loop, src/wasm/evtloop.cpp); COROUTINE::Call moves the body to the fiber.
|
|
*/
|
|
inline void runOnFiber( wxEvtHandler* aHandler, std::function<void()> aBody )
|
|
{
|
|
aHandler->CallAfter( [aBody]() {
|
|
COROUTINE<int, int> cor( [&aBody]( int ) -> int
|
|
{
|
|
aBody();
|
|
return 0;
|
|
} );
|
|
cor.Call( 0 );
|
|
} );
|
|
}
|
|
|
|
// ── C++ → JS wire emitters (no-ops without a JS listener) ───────────────────
|
|
|
|
/** Legacy scalar delta wire: window.kicadCollab.onDelta. */
|
|
inline void emitDelta( const nlohmann::json& aDelta )
|
|
{
|
|
std::string s = aDelta.dump();
|
|
EM_ASM( {
|
|
if( window.kicadCollab && window.kicadCollab.onDelta )
|
|
window.kicadCollab.onDelta( UTF8ToString( $0 ) );
|
|
}, s.c_str() );
|
|
}
|
|
|
|
/** v2 per-item s-expr blob wire (ysync 0008): window.kicadCollab.onItems. */
|
|
inline void emitItemsWire( const nlohmann::json& aWire )
|
|
{
|
|
std::string s = aWire.dump();
|
|
EM_ASM( {
|
|
if( window.kicadCollab && window.kicadCollab.onItems )
|
|
window.kicadCollab.onItems( UTF8ToString( $0 ) );
|
|
}, s.c_str() );
|
|
}
|
|
|
|
/** Local cursor position (presence): window.kicadCollab.onCursor. */
|
|
inline void emitCursor( double aX, double aY, bool aActive )
|
|
{
|
|
EM_ASM( {
|
|
if( window.kicadCollab && window.kicadCollab.onCursor )
|
|
window.kicadCollab.onCursor( $0, $1, $2 );
|
|
}, aX, aY, aActive ? 1 : 0 );
|
|
}
|
|
|
|
/** Local selection payload (presence): window.kicadCollab.onSelection. */
|
|
inline void emitSelection( const std::string& aJson )
|
|
{
|
|
EM_ASM( {
|
|
if( window.kicadCollab && window.kicadCollab.onSelection )
|
|
window.kicadCollab.onSelection( UTF8ToString( $0 ) );
|
|
}, aJson.c_str() );
|
|
}
|
|
|
|
/** Viewport transform for the DOM layers (0005): window.kicadCollab.onViewport. */
|
|
inline void emitViewport( double aCx, double aCy, double aPxPerIu, int aW, int aH )
|
|
{
|
|
EM_ASM( {
|
|
if( window.kicadCollab && window.kicadCollab.onViewport )
|
|
window.kicadCollab.onViewport( $0, $1, $2, $3, $4 );
|
|
}, aCx, aCy, aPxPerIu, aW, aH );
|
|
}
|
|
|
|
// ── frame-generic test hooks (ysync miss 09) ────────────────────────────────
|
|
|
|
/** Run Edit>Undo exactly like the UI would (main-loop + fiber stack) —
|
|
* exercises the local-ops-only undo policy and the stale-picker UUID guard. */
|
|
inline bool testUndo( EDA_BASE_FRAME* aFrame )
|
|
{
|
|
if( !aFrame )
|
|
return false;
|
|
|
|
runOnFiber( aFrame, [aFrame]() { aFrame->GetToolManager()->RunAction( ACTIONS::undo ); } );
|
|
return true;
|
|
}
|
|
|
|
/** Local undo stack depth — remote applies must not grow it (miss 09). */
|
|
inline int testUndoDepth( EDA_BASE_FRAME* aFrame )
|
|
{
|
|
return aFrame ? aFrame->GetUndoCommandCount() : -1;
|
|
}
|
|
|
|
} // namespace pcbjam_collab
|
|
|
|
#endif // __EMSCRIPTEN__
|