mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 12:33:50 +01:00
refactor: use sway_abort instead
This commit is contained in:
parent
96baef8ae9
commit
b223f70250
@ -487,32 +487,33 @@ int main(int argc, char **argv) {
|
||||
// pretty print the json
|
||||
json_tokener *tok = json_tokener_new_ex(JSON_MAX_DEPTH);
|
||||
if (tok == NULL) {
|
||||
sway_log(SWAY_ERROR, "failed allocating json_tokener");
|
||||
if (quiet) {
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
sway_abort("failed allocating json_tokener");
|
||||
}
|
||||
json_object *obj = json_tokener_parse_ex(tok, resp, -1);
|
||||
enum json_tokener_error err = json_tokener_get_error(tok);
|
||||
json_tokener_free(tok);
|
||||
if (obj == NULL || err != json_tokener_success) {
|
||||
if (!quiet) {
|
||||
sway_log(SWAY_ERROR, "failed to parse payload as json: %s",
|
||||
json_tokener_error_desc(err));
|
||||
}
|
||||
ret = 1;
|
||||
} else {
|
||||
json_object *obj = json_tokener_parse_ex(tok, resp, -1);
|
||||
enum json_tokener_error err = json_tokener_get_error(tok);
|
||||
json_tokener_free(tok);
|
||||
if (obj == NULL || err != json_tokener_success) {
|
||||
if (!quiet) {
|
||||
sway_log(SWAY_ERROR, "failed to parse payload as json: %s",
|
||||
json_tokener_error_desc(err));
|
||||
}
|
||||
ret = 1;
|
||||
} else {
|
||||
if (!success(obj, true)) {
|
||||
ret = 2;
|
||||
}
|
||||
if (!quiet && (type != IPC_SUBSCRIBE || ret != 0)) {
|
||||
if (raw) {
|
||||
printf("%s\n", json_object_to_json_string_ext(obj,
|
||||
JSON_C_TO_STRING_PRETTY | JSON_C_TO_STRING_SPACED));
|
||||
} else {
|
||||
pretty_print(type, obj);
|
||||
}
|
||||
}
|
||||
json_object_put(obj);
|
||||
if (!success(obj, true)) {
|
||||
ret = 2;
|
||||
}
|
||||
if (!quiet && (type != IPC_SUBSCRIBE || ret != 0)) {
|
||||
if (raw) {
|
||||
printf("%s\n", json_object_to_json_string_ext(obj,
|
||||
JSON_C_TO_STRING_PRETTY | JSON_C_TO_STRING_SPACED));
|
||||
} else {
|
||||
pretty_print(type, obj);
|
||||
}
|
||||
}
|
||||
json_object_put(obj);
|
||||
}
|
||||
free(command);
|
||||
free(resp);
|
||||
@ -531,9 +532,10 @@ int main(int argc, char **argv) {
|
||||
|
||||
json_tokener *tok = json_tokener_new_ex(JSON_MAX_DEPTH);
|
||||
if (tok == NULL) {
|
||||
sway_log(SWAY_ERROR, "failed allocating json_tokener");
|
||||
ret = 1;
|
||||
break;
|
||||
if (quiet) {
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
sway_abort("failed allocating json_tokener");
|
||||
}
|
||||
json_object *obj = json_tokener_parse_ex(tok, reply->payload, -1);
|
||||
enum json_tokener_error err = json_tokener_get_error(tok);
|
||||
|
Loading…
Reference in New Issue
Block a user