0
0
mirror of https://github.com/vim/vim.git synced 2025-08-27 20:13:38 -04:00

patch 9.1.0879: source is not consistently formatted

Problem:  source is not consistently formatted
Solution: reformat sign.c and sound.c
          (Luca Saccarola)

closes: #16019

Signed-off-by: Luca Saccarola <github.e41mv@aleeas.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Luca Saccarola 2024-11-19 22:55:13 +01:00 committed by Christian Brabandt
parent 8bc4d25abe
commit 3cf094edaf
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09
3 changed files with 1570 additions and 1607 deletions

2974
src/sign.c

File diff suppressed because it is too large Load Diff

View File

@ -15,36 +15,37 @@
#if defined(FEAT_SOUND) || defined(PROTO) #if defined(FEAT_SOUND) || defined(PROTO)
static long sound_id = 0; static long sound_id = 0;
// soundcb_T is typedef'ed in proto/sound.pro // soundcb_T is typedef'ed in proto/sound.pro
struct soundcb_S { struct soundcb_S
callback_T snd_callback; {
#ifdef MSWIN callback_T snd_callback;
# ifdef MSWIN
MCIDEVICEID snd_device_id; MCIDEVICEID snd_device_id;
long snd_id; long snd_id;
#endif # endif
soundcb_T *snd_next; soundcb_T *snd_next;
}; };
static soundcb_T *first_callback = NULL; static soundcb_T *first_callback = NULL;
/* /*
* Return TRUE when a sound callback has been created, it may be invoked when * Return TRUE when a sound callback has been created, it may be invoked when
* the sound finishes playing. Also see has_sound_callback_in_queue(). * the sound finishes playing. Also see has_sound_callback_in_queue().
*/ */
int int
has_any_sound_callback(void) has_any_sound_callback(void)
{ {
return first_callback != NULL; return first_callback != NULL;
} }
static soundcb_T * static soundcb_T *
get_sound_callback(typval_T *arg) get_sound_callback(typval_T *arg)
{ {
callback_T callback; callback_T callback;
soundcb_T *soundcb; soundcb_T *soundcb;
if (arg->v_type == VAR_UNKNOWN) if (arg->v_type == VAR_UNKNOWN)
return NULL; return NULL;
@ -70,11 +71,11 @@ get_sound_callback(typval_T *arg)
/* /*
* Call "soundcb" with proper parameters. * Call "soundcb" with proper parameters.
*/ */
void void
call_sound_callback(soundcb_T *soundcb, long snd_id, int result) call_sound_callback(soundcb_T *soundcb, long snd_id, int result)
{ {
typval_T argv[3]; typval_T argv[3];
typval_T rettv; typval_T rettv;
argv[0].v_type = VAR_NUMBER; argv[0].v_type = VAR_NUMBER;
argv[0].vval.v_number = snd_id; argv[0].vval.v_number = snd_id;
@ -89,11 +90,11 @@ call_sound_callback(soundcb_T *soundcb, long snd_id, int result)
/* /*
* Delete "soundcb" from the list of pending callbacks. * Delete "soundcb" from the list of pending callbacks.
*/ */
void void
delete_sound_callback(soundcb_T *soundcb) delete_sound_callback(soundcb_T *soundcb)
{ {
soundcb_T *p; soundcb_T *p;
soundcb_T *prev = NULL; soundcb_T *prev = NULL;
for (p = first_callback; p != NULL; prev = p, p = p->snd_next) for (p = first_callback; p != NULL; prev = p, p = p->snd_next)
if (p == soundcb) if (p == soundcb)
@ -108,23 +109,24 @@ delete_sound_callback(soundcb_T *soundcb)
} }
} }
#if defined(HAVE_CANBERRA) || defined(PROTO) # if defined(HAVE_CANBERRA) || defined(PROTO)
/* /*
* Sound implementation for Linux/Unix using libcanberra. * Sound implementation for Linux/Unix using libcanberra.
*/ */
# include <canberra.h> # include <canberra.h>
static ca_context *context = NULL; static ca_context *context = NULL;
// Structure to store info about a sound callback to be invoked soon. // Structure to store info about a sound callback to be invoked soon.
typedef struct soundcb_queue_S soundcb_queue_T; typedef struct soundcb_queue_S soundcb_queue_T;
struct soundcb_queue_S { struct soundcb_queue_S
soundcb_queue_T *scb_next; {
uint32_t scb_id; // ID of the sound soundcb_queue_T *scb_next;
int scb_result; // CA_ value uint32_t scb_id; // ID of the sound
soundcb_T *scb_callback; // function to call int scb_result; // CA_ value
soundcb_T *scb_callback; // function to call
}; };
// Queue of callbacks to invoke from the main loop. // Queue of callbacks to invoke from the main loop.
@ -135,14 +137,13 @@ static soundcb_queue_T *callback_queue = NULL;
* That is because the callback may be called from another thread and invoking * That is because the callback may be called from another thread and invoking
* another sound function may cause trouble. * another sound function may cause trouble.
*/ */
static void static void
sound_callback( sound_callback(ca_context *c UNUSED,
ca_context *c UNUSED, uint32_t id,
uint32_t id, int error_code,
int error_code, void *userdata)
void *userdata)
{ {
soundcb_T *soundcb = (soundcb_T *)userdata; soundcb_T *soundcb = (soundcb_T *)userdata;
soundcb_queue_T *scb; soundcb_queue_T *scb;
scb = ALLOC_ONE(soundcb_queue_T); scb = ALLOC_ONE(soundcb_queue_T);
@ -152,16 +153,17 @@ sound_callback(
callback_queue = scb; callback_queue = scb;
scb->scb_id = id; scb->scb_id = id;
scb->scb_result = error_code == CA_SUCCESS ? 0 scb->scb_result = error_code == CA_SUCCESS ? 0
: error_code == CA_ERROR_CANCELED : error_code == CA_ERROR_CANCELED ||
|| error_code == CA_ERROR_DESTROYED error_code == CA_ERROR_DESTROYED
? 1 : 2; ? 1
: 2;
scb->scb_callback = soundcb; scb->scb_callback = soundcb;
} }
/* /*
* Return TRUE if there is a sound callback to be called. * Return TRUE if there is a sound callback to be called.
*/ */
int int
has_sound_callback_in_queue(void) has_sound_callback_in_queue(void)
{ {
return callback_queue != NULL; return callback_queue != NULL;
@ -170,7 +172,7 @@ has_sound_callback_in_queue(void)
/* /*
* Invoke queued sound callbacks. * Invoke queued sound callbacks.
*/ */
void void
invoke_sound_callback(void) invoke_sound_callback(void)
{ {
soundcb_queue_T *scb; soundcb_queue_T *scb;
@ -188,7 +190,7 @@ invoke_sound_callback(void)
redraw_after_callback(TRUE, FALSE); redraw_after_callback(TRUE, FALSE);
} }
static void static void
sound_play_common(typval_T *argvars, typval_T *rettv, int playfile) sound_play_common(typval_T *argvars, typval_T *rettv, int playfile)
{ {
if (in_vim9script() && check_for_string_arg(argvars, 0) == FAIL) if (in_vim9script() && check_for_string_arg(argvars, 0) == FAIL)
@ -199,17 +201,17 @@ sound_play_common(typval_T *argvars, typval_T *rettv, int playfile)
if (context == NULL) if (context == NULL)
return; return;
soundcb_T *soundcb = get_sound_callback(&argvars[1]); soundcb_T *soundcb = get_sound_callback(&argvars[1]);
int res = CA_ERROR_INVALID; int res = CA_ERROR_INVALID;
++sound_id; ++sound_id;
if (soundcb == NULL) if (soundcb == NULL)
{ {
res = ca_context_play(context, sound_id, res = ca_context_play(context, sound_id,
playfile ? CA_PROP_MEDIA_FILENAME : CA_PROP_EVENT_ID, playfile ? CA_PROP_MEDIA_FILENAME
tv_get_string(&argvars[0]), : CA_PROP_EVENT_ID,
CA_PROP_CANBERRA_CACHE_CONTROL, "volatile", tv_get_string(&argvars[0]),
NULL); CA_PROP_CANBERRA_CACHE_CONTROL, "volatile", NULL);
} }
else else
{ {
@ -220,14 +222,14 @@ sound_play_common(typval_T *argvars, typval_T *rettv, int playfile)
{ {
if (playfile) if (playfile)
ca_proplist_sets(proplist, CA_PROP_MEDIA_FILENAME, ca_proplist_sets(proplist, CA_PROP_MEDIA_FILENAME,
(char *)tv_get_string(&argvars[0])); (char *)tv_get_string(&argvars[0]));
else else
ca_proplist_sets(proplist, CA_PROP_EVENT_ID, ca_proplist_sets(proplist, CA_PROP_EVENT_ID,
(char *)tv_get_string(&argvars[0])); (char *)tv_get_string(&argvars[0]));
ca_proplist_sets(proplist, CA_PROP_CANBERRA_CACHE_CONTROL, ca_proplist_sets(proplist, CA_PROP_CANBERRA_CACHE_CONTROL,
"volatile"); "volatile");
res = ca_context_play_full(context, sound_id, proplist, res = ca_context_play_full(context, sound_id, proplist,
sound_callback, soundcb); sound_callback, soundcb);
if (res != CA_SUCCESS) if (res != CA_SUCCESS)
delete_sound_callback(soundcb); delete_sound_callback(soundcb);
@ -237,7 +239,7 @@ sound_play_common(typval_T *argvars, typval_T *rettv, int playfile)
rettv->vval.v_number = res == CA_SUCCESS ? sound_id : 0; rettv->vval.v_number = res == CA_SUCCESS ? sound_id : 0;
} }
void void
f_sound_playevent(typval_T *argvars, typval_T *rettv) f_sound_playevent(typval_T *argvars, typval_T *rettv)
{ {
sound_play_common(argvars, rettv, FALSE); sound_play_common(argvars, rettv, FALSE);
@ -246,7 +248,7 @@ f_sound_playevent(typval_T *argvars, typval_T *rettv)
/* /*
* implementation of sound_playfile({path} [, {callback}]) * implementation of sound_playfile({path} [, {callback}])
*/ */
void void
f_sound_playfile(typval_T *argvars, typval_T *rettv) f_sound_playfile(typval_T *argvars, typval_T *rettv)
{ {
sound_play_common(argvars, rettv, TRUE); sound_play_common(argvars, rettv, TRUE);
@ -255,7 +257,7 @@ f_sound_playfile(typval_T *argvars, typval_T *rettv)
/* /*
* implementation of sound_stop({id}) * implementation of sound_stop({id})
*/ */
void void
f_sound_stop(typval_T *argvars, typval_T *rettv UNUSED) f_sound_stop(typval_T *argvars, typval_T *rettv UNUSED)
{ {
if (in_vim9script() && check_for_number_arg(argvars, 0) == FAIL) if (in_vim9script() && check_for_number_arg(argvars, 0) == FAIL)
@ -268,7 +270,7 @@ f_sound_stop(typval_T *argvars, typval_T *rettv UNUSED)
/* /*
* implementation of sound_clear() * implementation of sound_clear()
*/ */
void void
f_sound_clear(typval_T *argvars UNUSED, typval_T *rettv UNUSED) f_sound_clear(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
{ {
if (context == NULL) if (context == NULL)
@ -277,8 +279,8 @@ f_sound_clear(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
context = NULL; context = NULL;
} }
# if defined(EXITFREE) || defined(PROTO) # if defined(EXITFREE) || defined(PROTO)
void void
sound_free(void) sound_free(void)
{ {
soundcb_queue_T *scb; soundcb_queue_T *scb;
@ -297,9 +299,9 @@ sound_free(void)
vim_free(scb); vim_free(scb);
} }
} }
# endif # endif
#elif defined(MSWIN) # elif defined(MSWIN)
/* /*
* Sound implementation for MS-Windows. * Sound implementation for MS-Windows.
@ -307,30 +309,30 @@ sound_free(void)
static HWND g_hWndSound = NULL; static HWND g_hWndSound = NULL;
static LRESULT CALLBACK static LRESULT CALLBACK
sound_wndproc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) sound_wndproc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{ {
soundcb_T *p; soundcb_T *p;
switch (message) switch (message)
{ {
case MM_MCINOTIFY: case MM_MCINOTIFY:
for (p = first_callback; p != NULL; p = p->snd_next) for (p = first_callback; p != NULL; p = p->snd_next)
if (p->snd_device_id == (MCIDEVICEID) lParam) if (p->snd_device_id == (MCIDEVICEID)lParam)
{ {
char buf[32]; char buf[32];
vim_snprintf(buf, sizeof(buf), "close sound%06ld", vim_snprintf(buf, sizeof(buf), "close sound%06ld",
p->snd_id); p->snd_id);
mciSendStringA(buf, NULL, 0, 0); mciSendStringA(buf, NULL, 0, 0);
long result = wParam == MCI_NOTIFY_SUCCESSFUL ? 0 long result = wParam == MCI_NOTIFY_SUCCESSFUL ? 0
: wParam == MCI_NOTIFY_ABORTED ? 1 : 2; : wParam == MCI_NOTIFY_ABORTED ? 1
: 2;
call_sound_callback(p, p->snd_id, result); call_sound_callback(p, p->snd_id, result);
delete_sound_callback(p); delete_sound_callback(p);
redraw_after_callback(TRUE, FALSE); redraw_after_callback(TRUE, FALSE);
} }
break; break;
} }
@ -338,26 +340,26 @@ sound_wndproc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
return DefWindowProc(hwnd, message, wParam, lParam); return DefWindowProc(hwnd, message, wParam, lParam);
} }
static HWND static HWND
sound_window(void) sound_window(void)
{ {
if (g_hWndSound == NULL) if (g_hWndSound == NULL)
{ {
LPCSTR clazz = "VimSound"; LPCSTR clazz = "VimSound";
WNDCLASS wndclass = { WNDCLASS wndclass = { 0, sound_wndproc, 0, 0, g_hinst, NULL, 0,
0, sound_wndproc, 0, 0, g_hinst, NULL, 0, 0, NULL, clazz }; 0, NULL, clazz };
RegisterClass(&wndclass); RegisterClass(&wndclass);
g_hWndSound = CreateWindow(clazz, NULL, 0, 0, 0, 0, 0, g_hWndSound = CreateWindow(clazz, NULL, 0, 0, 0, 0, 0, HWND_MESSAGE,
HWND_MESSAGE, NULL, g_hinst, NULL); NULL, g_hinst, NULL);
} }
return g_hWndSound; return g_hWndSound;
} }
void void
f_sound_playevent(typval_T *argvars, typval_T *rettv) f_sound_playevent(typval_T *argvars, typval_T *rettv)
{ {
WCHAR *wp; WCHAR *wp;
if (in_vim9script() && check_for_string_arg(argvars, 0) == FAIL) if (in_vim9script() && check_for_string_arg(argvars, 0) == FAIL)
return; return;
@ -371,16 +373,16 @@ f_sound_playevent(typval_T *argvars, typval_T *rettv)
free(wp); free(wp);
} }
void void
f_sound_playfile(typval_T *argvars, typval_T *rettv) f_sound_playfile(typval_T *argvars, typval_T *rettv)
{ {
long newid = sound_id + 1; long newid = sound_id + 1;
size_t len; size_t len;
char_u *p, *filename; char_u *p, *filename;
WCHAR *wp; WCHAR *wp;
soundcb_T *soundcb; soundcb_T *soundcb;
char buf[32]; char buf[32];
MCIERROR err; MCIERROR err;
if (in_vim9script() && check_for_string_arg(argvars, 0) == FAIL) if (in_vim9script() && check_for_string_arg(argvars, 0) == FAIL)
return; return;
@ -393,7 +395,8 @@ f_sound_playfile(typval_T *argvars, typval_T *rettv)
{ {
return; return;
} }
vim_snprintf((char *)p, len, "open \"%s\" alias sound%06ld", filename, newid); vim_snprintf((char *)p, len, "open \"%s\" alias sound%06ld", filename,
newid);
wp = enc_to_utf16((char_u *)p, NULL); wp = enc_to_utf16((char_u *)p, NULL);
free(p); free(p);
@ -427,11 +430,11 @@ failure:
mciSendStringA(buf, NULL, 0, NULL); mciSendStringA(buf, NULL, 0, NULL);
} }
void void
f_sound_stop(typval_T *argvars, typval_T *rettv UNUSED) f_sound_stop(typval_T *argvars, typval_T *rettv UNUSED)
{ {
long id; long id;
char buf[32]; char buf[32];
if (in_vim9script() && check_for_number_arg(argvars, 0) == FAIL) if (in_vim9script() && check_for_number_arg(argvars, 0) == FAIL)
return; return;
@ -441,15 +444,15 @@ f_sound_stop(typval_T *argvars, typval_T *rettv UNUSED)
mciSendStringA(buf, NULL, 0, NULL); mciSendStringA(buf, NULL, 0, NULL);
} }
void void
f_sound_clear(typval_T *argvars UNUSED, typval_T *rettv UNUSED) f_sound_clear(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
{ {
PlaySoundW(NULL, NULL, 0); PlaySoundW(NULL, NULL, 0);
mciSendStringA("close all", NULL, 0, NULL); mciSendStringA("close all", NULL, 0, NULL);
} }
# if defined(EXITFREE) # if defined(EXITFREE)
void void
sound_free(void) sound_free(void)
{ {
CloseWindow(g_hWndSound); CloseWindow(g_hWndSound);
@ -457,12 +460,12 @@ sound_free(void)
while (first_callback != NULL) while (first_callback != NULL)
delete_sound_callback(first_callback); delete_sound_callback(first_callback);
} }
# endif # endif
#elif defined(MACOS_X_DARWIN) # elif defined(MACOS_X_DARWIN)
// Sound implementation for macOS. // Sound implementation for macOS.
static void static void
sound_play_common(typval_T *argvars, typval_T *rettv, bool playfile) sound_play_common(typval_T *argvars, typval_T *rettv, bool playfile)
{ {
if (in_vim9script() && check_for_string_arg(argvars, 0) == FAIL) if (in_vim9script() && check_for_string_arg(argvars, 0) == FAIL)
@ -481,19 +484,19 @@ sound_play_common(typval_T *argvars, typval_T *rettv, bool playfile)
rettv->vval.v_number = play_success ? sound_id : 0; rettv->vval.v_number = play_success ? sound_id : 0;
} }
void void
f_sound_playevent(typval_T *argvars, typval_T *rettv) f_sound_playevent(typval_T *argvars, typval_T *rettv)
{ {
sound_play_common(argvars, rettv, false); sound_play_common(argvars, rettv, false);
} }
void void
f_sound_playfile(typval_T *argvars, typval_T *rettv) f_sound_playfile(typval_T *argvars, typval_T *rettv)
{ {
sound_play_common(argvars, rettv, true); sound_play_common(argvars, rettv, true);
} }
void void
f_sound_stop(typval_T *argvars, typval_T *rettv UNUSED) f_sound_stop(typval_T *argvars, typval_T *rettv UNUSED)
{ {
if (in_vim9script() && check_for_number_arg(argvars, 0) == FAIL) if (in_vim9script() && check_for_number_arg(argvars, 0) == FAIL)
@ -501,22 +504,22 @@ f_sound_stop(typval_T *argvars, typval_T *rettv UNUSED)
sound_mch_stop(tv_get_number(&argvars[0])); sound_mch_stop(tv_get_number(&argvars[0]));
} }
void void
f_sound_clear(typval_T *argvars UNUSED, typval_T *rettv UNUSED) f_sound_clear(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
{ {
sound_mch_clear(); sound_mch_clear();
} }
#if defined(EXITFREE) || defined(PROTO) # if defined(EXITFREE) || defined(PROTO)
void void
sound_free(void) sound_free(void)
{ {
sound_mch_free(); sound_mch_free();
while (first_callback != NULL) while (first_callback != NULL)
delete_sound_callback(first_callback); delete_sound_callback(first_callback);
} }
#endif # endif
#endif // MACOS_X_DARWIN # endif // MACOS_X_DARWIN
#endif // FEAT_SOUND #endif // FEAT_SOUND

View File

@ -704,6 +704,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
879,
/**/ /**/
878, 878,
/**/ /**/