Merge pull request #4252 from orestisfl/create_workspace_on_output-duplicate-num

create_workspace_on_output: Prevent duplicate workspace nums
This commit is contained in:
Orestis Floros 2020-11-28 23:41:49 +01:00 committed by GitHub
commit 37ebd2a179
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 11 deletions

View File

@ -17,5 +17,4 @@ strongly encouraged to upgrade.
│ Bugfixes │ │ Bugfixes │
└────────────────────────────┘ └────────────────────────────┘
• placeholder • when initializing new outputs, avoid duplicating workspace numbers

View File

@ -134,7 +134,7 @@ Con *workspace_get(const char *num) {
/* We set workspace->num to the number if this workspaces name begins with /* We set workspace->num to the number if this workspaces name begins with
* a positive number. Otherwise its a named ws and num will be 1. */ * a positive number. Otherwise its a named ws and num will be 1. */
const long parsed_num = ws_name_to_number(num); const int parsed_num = ws_name_to_number(num);
Con *output = get_assigned_output(num, parsed_num); Con *output = get_assigned_output(num, parsed_num);
/* if an assignment is not found, we create this workspace on the current output */ /* if an assignment is not found, we create this workspace on the current output */
@ -238,7 +238,6 @@ void extract_workspace_names_from_bindings(void) {
*/ */
Con *create_workspace_on_output(Output *output, Con *content) { Con *create_workspace_on_output(Output *output, Con *content) {
/* add a workspace to this output */ /* add a workspace to this output */
char *name;
bool exists = true; bool exists = true;
Con *ws = con_new(NULL, NULL); Con *ws = con_new(NULL, NULL);
ws->type = CT_WORKSPACE; ws->type = CT_WORKSPACE;
@ -254,13 +253,16 @@ Con *create_workspace_on_output(Output *output, Con *content) {
continue; continue;
} }
exists = (get_existing_workspace_by_name(target_name) != NULL); const int num = ws_name_to_number(target_name);
exists = (num == -1)
? get_existing_workspace_by_name(target_name)
: get_existing_workspace_by_num(num);
if (!exists) { if (!exists) {
ws->name = sstrdup(target_name); ws->name = sstrdup(target_name);
/* Set ->num to the number of the workspace, if the name actually /* Set ->num to the number of the workspace, if the name actually
* is a number or starts with a number */ * is a number or starts with a number */
ws->num = ws_name_to_number(ws->name); ws->num = num;
LOG("Used number %d for workspace with name %s\n", ws->num, ws->name); DLOG("Used number %d for workspace with name %s\n", ws->num, ws->name);
break; break;
} }
@ -281,6 +283,7 @@ Con *create_workspace_on_output(Output *output, Con *content) {
} }
con_attach(ws, content, false); con_attach(ws, content, false);
char *name;
sasprintf(&name, "[i3 con] workspace %s", ws->name); sasprintf(&name, "[i3 con] workspace %s", ws->name);
x_set_name(ws, name); x_set_name(ws, name);
free(name); free(name);
@ -987,14 +990,14 @@ void workspace_move_to_output(Con *ws, Output *output) {
bool used_assignment = false; bool used_assignment = false;
struct Workspace_Assignment *assignment; struct Workspace_Assignment *assignment;
TAILQ_FOREACH (assignment, &ws_assignments, ws_assignments) { TAILQ_FOREACH (assignment, &ws_assignments, ws_assignments) {
bool attached;
int num;
if (!output_triggers_assignment(current_output, assignment)) { if (!output_triggers_assignment(current_output, assignment)) {
continue; continue;
} }
/* check if this workspace's name or num is already attached to the tree */ /* check if this workspace's name or num is already attached to the tree */
num = ws_name_to_number(assignment->name); const int num = ws_name_to_number(assignment->name);
attached = ((num == -1) ? get_existing_workspace_by_name(assignment->name) : get_existing_workspace_by_num(num)) != NULL; const bool attached = (num == -1)
? get_existing_workspace_by_name(assignment->name)
: get_existing_workspace_by_num(num);
if (attached) { if (attached) {
continue; continue;
} }