X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/60371ab36cd27a18236d969f0ebdbd2aa73b1705..875e0b16f64f7b97171d58fe34ebcd57314eb739:/winstore.c diff --git a/winstore.c b/winstore.c index bc7bb5b1..e0d9a780 100644 --- a/winstore.c +++ b/winstore.c @@ -6,6 +6,7 @@ #include #include #include +#include #include "putty.h" #include "storage.h" @@ -13,9 +14,9 @@ static const char *const puttystr = PUTTY_REG_POS "\\Sessions"; static char seedpath[2 * MAX_PATH + 10] = "\0"; -static char hex[16] = "0123456789ABCDEF"; +static const char hex[16] = "0123456789ABCDEF"; -static void mungestr(char *in, char *out) +static void mungestr(const char *in, char *out) { int candot = 0; @@ -35,7 +36,7 @@ static void mungestr(char *in, char *out) return; } -static void unmungestr(char *in, char *out, int outlen) +static void unmungestr(const char *in, char *out, int outlen) { while (*in) { if (*in == '%' && in[1] && in[2]) { @@ -60,12 +61,15 @@ static void unmungestr(char *in, char *out, int outlen) return; } -void *open_settings_w(char *sessionname) +void *open_settings_w(const char *sessionname) { HKEY subkey1, sesskey; int ret; char *p; + if (!sessionname || !*sessionname) + sessionname = "Default Settings"; + p = smalloc(3 * strlen(sessionname) + 1); mungestr(sessionname, p); @@ -82,14 +86,14 @@ void *open_settings_w(char *sessionname) return (void *) sesskey; } -void write_setting_s(void *handle, char *key, char *value) +void write_setting_s(void *handle, const char *key, const char *value) { if (handle) RegSetValueEx((HKEY) handle, key, 0, REG_SZ, value, 1 + strlen(value)); } -void write_setting_i(void *handle, char *key, int value) +void write_setting_i(void *handle, const char *key, int value) { if (handle) RegSetValueEx((HKEY) handle, key, 0, REG_DWORD, @@ -101,11 +105,14 @@ void close_settings_w(void *handle) RegCloseKey((HKEY) handle); } -void *open_settings_r(char *sessionname) +void *open_settings_r(const char *sessionname) { HKEY subkey1, sesskey; char *p; + if (!sessionname || !*sessionname) + sessionname = "Default Settings"; + p = smalloc(3 * strlen(sessionname) + 1); mungestr(sessionname, p); @@ -123,7 +130,7 @@ void *open_settings_r(char *sessionname) return (void *) sesskey; } -char *read_setting_s(void *handle, char *key, char *buffer, int buflen) +char *read_setting_s(void *handle, const char *key, char *buffer, int buflen) { DWORD type, size; size = buflen; @@ -136,7 +143,7 @@ char *read_setting_s(void *handle, char *key, char *buffer, int buflen) return buffer; } -int read_setting_i(void *handle, char *key, int defvalue) +int read_setting_i(void *handle, const char *key, int defvalue) { DWORD type, val, size; size = sizeof(val); @@ -150,12 +157,73 @@ int read_setting_i(void *handle, char *key, int defvalue) return val; } +int read_setting_fontspec(void *handle, const char *name, FontSpec *result) +{ + char *settingname; + FontSpec ret; + + if (!read_setting_s(handle, name, ret.name, sizeof(ret.name))) + return 0; + settingname = dupcat(name, "IsBold", NULL); + ret.isbold = read_setting_i(handle, settingname, -1); + sfree(settingname); + if (ret.isbold == -1) return 0; + settingname = dupcat(name, "CharSet", NULL); + ret.charset = read_setting_i(handle, settingname, -1); + sfree(settingname); + if (ret.charset == -1) return 0; + settingname = dupcat(name, "Height", NULL); + ret.height = read_setting_i(handle, settingname, INT_MIN); + sfree(settingname); + if (ret.height == INT_MIN) return 0; + if (ret.height < 0) { + int oldh, newh; + HDC hdc = GetDC(NULL); + int logpix = GetDeviceCaps(hdc, LOGPIXELSY); + ReleaseDC(NULL, hdc); + + oldh = -ret.height; + newh = MulDiv(oldh, 72, logpix) + 1; + if (MulDiv(newh, logpix, 72) > oldh) + newh--; + ret.height = newh; + } + *result = ret; + return 1; +} + +void write_setting_fontspec(void *handle, const char *name, FontSpec font) +{ + char *settingname; + + write_setting_s(handle, name, font.name); + settingname = dupcat(name, "IsBold", NULL); + write_setting_i(handle, settingname, font.isbold); + sfree(settingname); + settingname = dupcat(name, "CharSet", NULL); + write_setting_i(handle, settingname, font.charset); + sfree(settingname); + settingname = dupcat(name, "Height", NULL); + write_setting_i(handle, settingname, font.height); + sfree(settingname); +} + +int read_setting_filename(void *handle, const char *name, Filename *result) +{ + return !!read_setting_s(handle, name, result->path, sizeof(result->path)); +} + +void write_setting_filename(void *handle, const char *name, Filename result) +{ + write_setting_s(handle, name, result.path); +} + void close_settings_r(void *handle) { RegCloseKey((HKEY) handle); } -void del_settings(char *sessionname) +void del_settings(const char *sessionname) { HKEY subkey1; char *p; @@ -215,8 +283,8 @@ void enum_settings_finish(void *handle) sfree(e); } -static void hostkey_regname(char *buffer, char *hostname, - int port, char *keytype) +static void hostkey_regname(char *buffer, const char *hostname, + int port, const char *keytype) { int len; strcpy(buffer, keytype); @@ -226,7 +294,8 @@ static void hostkey_regname(char *buffer, char *hostname, mungestr(hostname, buffer + strlen(buffer)); } -int verify_host_key(char *hostname, int port, char *keytype, char *key) +int verify_host_key(const char *hostname, int port, + const char *keytype, const char *key) { char *otherstr, *regname; int len; @@ -331,7 +400,8 @@ int verify_host_key(char *hostname, int port, char *keytype, char *key) return 0; /* key matched OK in registry */ } -void store_host_key(char *hostname, int port, char *keytype, char *key) +void store_host_key(const char *hostname, int port, + const char *keytype, const char *key) { char *regname; HKEY rkey;