engine: Ctrl+H reaches back into the text the client already has

Korean commits a syllable as the next one begins, so by the time the
한자 key is pressed only the last syllable is still ours: typing 한자 and
then Ctrl+H asked about 자 alone and answered 子, leaving 한子 in the
document -- the mixed Hangul and Hanja that was refused as dictionary
data, made by the interaction instead.  To get 漢字 the key had to be
pressed before typing, which no other Korean input method asks for.

A request now carries the client's own text just before the cursor, and
the reading reaches back through it as far as the dictionary still knows
the whole of it: 한 joins 자 and 대한민 joins 국.  Nothing but the
dictionary says where to stop, because a reading is syllables, so a key
holding a space or an already converted Hanja leads nowhere and the
reach ends there.  A pick answers with the count of runes to take back
first; Escape gives back only what was pending, and a query with no
candidate types only the part the client lacks.

A frontend that sends no surrounding text reaches back by nothing and
behaves exactly as before, which is what XIM will keep doing.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-08-18 14:17:08 +09:00
parent 997e4c8d93
commit f7277f54a3
5 changed files with 169 additions and 13 deletions

2
dat.h
View File

@@ -207,6 +207,7 @@ enum
struct Keyres struct Keyres
{ {
int eaten; /* Keycap: the caller is the owner and clientpre took. */ int eaten; /* Keycap: the caller is the owner and clientpre took. */
int del; /* runes of the client's own text to take back first */
Str commit; Str commit;
Str preedit; Str preedit;
}; };
@@ -219,6 +220,7 @@ struct Keyreq
u32int ks; u32int ks;
u32int mod; u32int mod;
Caret caret; Caret caret;
Str surround; /* the client's own text just before the cursor */
Channel *reply; Channel *reply;
}; };

View File

@@ -7,17 +7,23 @@ static void *lostowner; /* the context the engine was taken from */
static Str lost; static Str lost;
static int clientpre; /* the owner draws its own preedit */ static int clientpre; /* the owner draws its own preedit */
static Caret caret; static Caret caret;
static Str surround; /* the owner's own text just before the cursor */
static int takeback; /* runes of it a pick takes back before committing */
static Rune modemark; /* the mode the last key switched to */ static Rune modemark; /* the mode the last key switched to */
static int okuriat = -1; /* where Shift marked the okurigana, or -1 */ static int okuriat = -1; /* where Shift marked the okurigana, or -1 */
static Drawcmd lastdraw; static Drawcmd lastdraw;
static Emit transjp(Im*, Rune); static Emit transjp(Im*, Rune);
static void backjp(Im*); static void backjp(Im*);
/* seed is what Ctrl+H found pending; raw the keys typed since; text both. */ /*
* back is the client's own text the reading reached into; seed what
* Ctrl+H found pending; raw the keys typed since; text all three.
*/
typedef struct Search Search; typedef struct Search Search;
struct Search struct Search
{ {
int lang; int lang;
Str back;
Str seed; Str seed;
Str raw; Str raw;
Str text; Str text;
@@ -185,6 +191,17 @@ impre(Im *p, Str *s)
*s = p->pre; *s = p->pre;
} }
/* The query as it is still ours to show: the client has the rest. */
static void
searchpre(Str *s)
{
int i;
sclear(s);
for(i = search.back.n; i < search.text.n; i++)
sputr(s, search.text.r[i]);
}
static void static void
snapshot(Drawcmd *dc) snapshot(Drawcmd *dc)
{ {
@@ -193,7 +210,7 @@ snapshot(Drawcmd *dc)
memset(dc, 0, sizeof *dc); memset(dc, 0, sizeof *dc);
if(search.lang) if(search.lang)
pre = search.text; searchpre(&pre);
else else
impre(&im, &pre); impre(&im, &pre);
if(!clientpre) if(!clientpre)
@@ -636,7 +653,11 @@ emojiquery(void)
static void static void
hanjaquery(void) hanjaquery(void)
{ {
transstr(im.l, &search.seed, &search.raw, &search.text); Str tail;
transstr(im.l, &search.seed, &search.raw, &tail);
search.text = search.back;
sappend(&search.text, &tail);
clearkouho(); clearkouho();
im.nkouho = dictprefix(getlang(LangHANJA)->dict, &search.text, im.nkouho = dictprefix(getlang(LangHANJA)->dict, &search.text,
im.kouho, Maxkouho); im.kouho, Maxkouho);
@@ -693,9 +714,12 @@ reset(void)
static void static void
flush(Str *com) flush(Str *com)
{ {
if(search.lang) Str pre;
sappend(com, &search.text);
else if(im.sel >= 0) if(search.lang){
searchpre(&pre);
sappend(com, &pre);
}else if(im.sel >= 0)
sappend(com, &im.kouho[im.sel]); sappend(com, &im.kouho[im.sel]);
else else
commitim(&im, com); commitim(&im, com);
@@ -716,6 +740,46 @@ takelost(void *owner, Str *com)
lostowner = nil; lostowner = nil;
} }
/* The syllables from i to the end of the client's text, then seed. */
static void
reachkey(int i, Str *seed, Str *key)
{
sclear(key);
for(; i < surround.n; i++)
sputr(key, surround.r[i]);
sappend(key, seed);
}
/*
* Ctrl+H converts a word, and a word is committed one syllable at a
* time: only its last syllable is still pending. So the reading reaches
* back into the text the client already has, as far as the dictionary
* still knows the whole of it -- 한자 converts as a word where the 한 is
* the client's and only the 자 is ours. Nothing but the dictionary says
* where to stop: a reading is syllables, so a key holding a space or a
* Hanja leads nowhere and the reach ends there.
*/
static void
reachback(Str *seed, Str *back)
{
Str key;
Trie *t;
int i, best;
t = getlang(LangHANJA)->dict;
best = surround.n;
for(i = surround.n - 1; i >= 0; i--){
if(surround.n - i + seed->n > Maxrunes)
break;
reachkey(i, seed, &key);
if(trienode(t, &key) >= 0)
best = i;
}
sclear(back);
for(i = best; i < surround.n; i++)
sputr(back, surround.r[i]);
}
/* /*
* A search takes over the keys. Hanja converts the pending syllable, so * A search takes over the keys. Hanja converts the pending syllable, so
* it becomes the query; anything else pending is committed. * it becomes the query; anything else pending is committed.
@@ -723,23 +787,28 @@ takelost(void *owner, Str *com)
static void static void
startsearch(int lang, Str *com) startsearch(int lang, Str *com)
{ {
Str seed; Str back, seed;
sclear(&back);
sclear(&seed); sclear(&seed);
if(lang == LangHANJA && !search.lang && im.sel < 0) if(lang == LangHANJA && !search.lang && im.sel < 0){
impre(&im, &seed); impre(&im, &seed);
else reachback(&seed, &back);
}else
flush(com); flush(com);
reset(); reset();
search.lang = lang; search.lang = lang;
search.back = back;
search.seed = seed; search.seed = seed;
if(lang == LangHANJA) if(lang == LangHANJA)
searchquery(); searchquery();
} }
/* The client keeps what the reading reached back into; we take it back. */
static void static void
picksearch(int n, Str *com) picksearch(int n, Str *com)
{ {
takeback = search.back.n;
sappend(com, &im.kouho[n]); sappend(com, &im.kouho[n]);
endsearch(); endsearch();
} }
@@ -954,6 +1023,8 @@ init(void)
activeowner = nil; activeowner = nil;
lostowner = nil; lostowner = nil;
clientpre = 0; clientpre = 0;
sclear(&surround);
takeback = 0;
memset(&lastdraw, 0, sizeof lastdraw); memset(&lastdraw, 0, sizeof lastdraw);
} }
@@ -972,6 +1043,7 @@ imhandlekey(Keyreq *kr)
sclear(&res.commit); sclear(&res.commit);
sclear(&res.preedit); sclear(&res.preedit);
res.eaten = 1; res.eaten = 1;
takeback = 0;
switch(kr->op){ switch(kr->op){
case Keyrelease: case Keyrelease:
takelost(kr->owner, &res.commit); takelost(kr->owner, &res.commit);
@@ -1009,6 +1081,7 @@ imhandlekey(Keyreq *kr)
clientpre = kr->clientpre; clientpre = kr->clientpre;
} }
caret = kr->caret; caret = kr->caret;
surround = kr->surround;
res.eaten = transition(kr->ks, kr->mod, &res.commit); res.eaten = transition(kr->ks, kr->mod, &res.commit);
} }
break; break;
@@ -1016,10 +1089,11 @@ imhandlekey(Keyreq *kr)
redraw(); redraw();
if(kr->owner == activeowner){ if(kr->owner == activeowner){
if(search.lang) if(search.lang)
res.preedit = search.text; searchpre(&res.preedit);
else else
impre(&im, &res.preedit); impre(&im, &res.preedit);
} }
res.del = takeback;
chansend(kr->reply, &res); chansend(kr->reply, &res);
} }

View File

@@ -10,6 +10,7 @@ keystroke(u32int ks, u32int mod, Str *com)
{ {
int eaten; int eaten;
takeback = 0;
eaten = keymeaningful(ks) && transition(ks, mod, com); eaten = keymeaningful(ks) && transition(ks, mod, com);
redraw(); redraw();
return eaten; return eaten;
@@ -175,7 +176,7 @@ engine_candidate_shortcut_modifiers(struct ct *t)
static Keyres static Keyres
ownerrequestatcap(void *owner, int cap, int op, Rune key, u32int mod, ownerrequestatcap(void *owner, int cap, int op, Rune key, u32int mod,
Caret *caret) Caret *caret, char *before)
{ {
Channel *reply; Channel *reply;
Keyreq req; Keyreq req;
@@ -190,6 +191,8 @@ ownerrequestatcap(void *owner, int cap, int op, Rune key, u32int mod,
req.mod = mod; req.mod = mod;
if(caret != nil) if(caret != nil)
req.caret = *caret; req.caret = *caret;
if(before != nil)
req.surround = mkstr(before);
req.reply = reply; req.reply = reply;
imhandlekey(&req); imhandlekey(&req);
chanrecv(reply, &res); chanrecv(reply, &res);
@@ -200,7 +203,7 @@ ownerrequestatcap(void *owner, int cap, int op, Rune key, u32int mod,
static Keyres static Keyres
ownerrequestat(void *owner, int op, Rune key, u32int mod, Caret *caret) ownerrequestat(void *owner, int op, Rune key, u32int mod, Caret *caret)
{ {
return ownerrequestatcap(owner, 0, op, key, mod, caret); return ownerrequestatcap(owner, 0, op, key, mod, caret, nil);
} }
static Keyres static Keyres
@@ -212,7 +215,7 @@ ownerrequest(void *owner, int op, Rune key, u32int mod)
static Keyres static Keyres
ownerrequestcap(void *owner, int cap, int op, Rune key, u32int mod) ownerrequestcap(void *owner, int cap, int op, Rune key, u32int mod)
{ {
return ownerrequestatcap(owner, cap, op, key, mod, nil); return ownerrequestatcap(owner, cap, op, key, mod, nil, nil);
} }
void void
@@ -1945,6 +1948,81 @@ cleanup:
searchend(&f); searchend(&f);
} }
/*
* A word is committed one syllable at a time, so Ctrl+H reaches back
* into the text the client already has, and a pick takes it back.
*/
void
engine_hanja_reaches_back(struct ct *t)
{
Searchfix f;
Keyres res;
Str com;
char owner;
hanjabegin(&f, LangKO);
surround = mkstr("");
im.pre = mkstr("");
sclear(&com);
if(!CT_CHECK(t, keystroke('h', Mctrl, &com)))
goto cleanup;
checkstr(t, "the client's syllable joined the reading", "민국",
&search.text);
checkstr(t, "what the client already has", "", &search.back);
CT_EQ_INT(t, 1, im.nkouho);
CT_CHECK(t, keystroke(Kret, 0, &com));
checkstr(t, "the word converted", "民國", &com);
CT_EQ_INT(t, 1, takeback);
/* Escape gives back what was pending, and nothing of the client's. */
surround = mkstr("");
im.pre = mkstr("");
sclear(&com);
CT_CHECK(t, keystroke('h', Mctrl, &com));
CT_CHECK(t, keystroke(Kesc, 0, &com));
checkstr(t, "only the pending syllable comes back", "", &im.pre);
CT_EQ_INT(t, 0, takeback);
/* A reading nothing is keyed by stops the reach where it stands. */
surround = mkstr("");
im.pre = mkstr("");
sclear(&com);
CT_CHECK(t, keystroke('h', Mctrl, &com));
checkstr(t, "no reach without a reading", "", &search.text);
CT_EQ_INT(t, 0, search.back.n);
CT_CHECK(t, keystroke(Kesc, 0, &com));
/* A query without candidates types only what the client lacks. */
surround = mkstr("");
im.pre = mkstr("");
sclear(&com);
CT_CHECK(t, keystroke('h', Mctrl, &com));
if(typekeys(t, "r", &com)){
CT_EQ_INT(t, 0, im.nkouho);
CT_CHECK(t, keystroke(Kret, 0, &com));
checkstr(t, "the client's syllable is not typed again", "국ㄱ",
&com);
CT_EQ_INT(t, 0, takeback);
}
/* The frontend's own request carries the text and is told to take it. */
init();
im.l = getlang(LangKO);
ownerrequestatcap(&owner, 1, Keypress, 'r', 0, nil, "");
ownerrequestatcap(&owner, 1, Keypress, 'n', 0, nil, "");
res = ownerrequestatcap(&owner, 1, Keypress, 'r', 0, nil, "");
checkstr(t, "the syllable the request composed", "", &res.preedit);
CT_EQ_INT(t, 0, res.del);
ownerrequestatcap(&owner, 1, Keypress, 'h', Mctrl, nil, "");
checkstr(t, "the request's own text joined the reading", "민국",
&search.text);
res = ownerrequestatcap(&owner, 1, Keypress, Kret, 0, nil, "");
checkstr(t, "the word the request converted", "民國", &res.commit);
CT_EQ_INT(t, 1, res.del);
cleanup:
searchend(&f);
}
/* /*
* A reading is the start of the longer words it begins: its own * A reading is the start of the longer words it begins: its own
* conversions come first, and past them theirs. * conversions come first, and past them theirs.

View File

@@ -86,6 +86,7 @@ void engine_emoji_preedit_languages(struct ct*);
void engine_emoji_start_and_unknown(struct ct*); void engine_emoji_start_and_unknown(struct ct*);
void engine_hanja_search(struct ct*); void engine_hanja_search(struct ct*);
void engine_hanja_unknown_and_cancel(struct ct*); void engine_hanja_unknown_and_cancel(struct ct*);
void engine_hanja_reaches_back(struct ct*);
void engine_hanja_word_prefix(struct ct*); void engine_hanja_word_prefix(struct ct*);
void engine_hanja_korean_keys(struct ct*); void engine_hanja_korean_keys(struct ct*);
void engine_hanja_backspace(struct ct*); void engine_hanja_backspace(struct ct*);

View File

@@ -107,6 +107,7 @@ static const struct ct_test tests[] = {
{ "engine/emoji-start-and-unknown", engine_emoji_start_and_unknown }, { "engine/emoji-start-and-unknown", engine_emoji_start_and_unknown },
{ "engine/hanja-search", engine_hanja_search }, { "engine/hanja-search", engine_hanja_search },
{ "engine/hanja-unknown-cancel", engine_hanja_unknown_and_cancel }, { "engine/hanja-unknown-cancel", engine_hanja_unknown_and_cancel },
{ "engine/hanja-reaches-back", engine_hanja_reaches_back },
{ "engine/hanja-word-prefix", engine_hanja_word_prefix }, { "engine/hanja-word-prefix", engine_hanja_word_prefix },
{ "engine/hanja-korean-keys", engine_hanja_korean_keys }, { "engine/hanja-korean-keys", engine_hanja_korean_keys },
{ "engine/hanja-backspace", engine_hanja_backspace }, { "engine/hanja-backspace", engine_hanja_backspace },