mirror of
				https://github.com/Rafostar/clapper.git
				synced 2025-10-30 18:05:40 +01:00 
			
		
		
		
	clapper-app: Add command line option to enqueue files
This commit is contained in:
		| @@ -317,7 +317,7 @@ clapper_app_application_new (void) | ||||
| { | ||||
|   return g_object_new (CLAPPER_APP_TYPE_APPLICATION, | ||||
|       "application-id", CLAPPER_APP_ID, | ||||
|       "flags", G_APPLICATION_HANDLES_OPEN, | ||||
|       "flags", G_APPLICATION_HANDLES_OPEN | G_APPLICATION_HANDLES_COMMAND_LINE, | ||||
|       NULL); | ||||
| } | ||||
|  | ||||
| @@ -375,6 +375,8 @@ clapper_app_application_local_command_line (GApplication *app, | ||||
|   gchar **argv = *arguments; | ||||
|   guint i; | ||||
|  | ||||
|   GST_INFO ("Handling local command line"); | ||||
|  | ||||
|   /* NOTE: argv is never NULL, so no need to check */ | ||||
|  | ||||
|   for (i = 0; argv[i]; ++i) { | ||||
| @@ -388,6 +390,32 @@ clapper_app_application_local_command_line (GApplication *app, | ||||
|   return G_APPLICATION_CLASS (parent_class)->local_command_line (app, arguments, exit_status); | ||||
| } | ||||
|  | ||||
| static gint | ||||
| clapper_app_application_command_line (GApplication *app, GApplicationCommandLine *cmd_line) | ||||
| { | ||||
|   GVariantDict *options; | ||||
|   GFile **files = NULL; | ||||
|   gint n_files = 0; | ||||
|   gboolean enqueue = FALSE; | ||||
|  | ||||
|   GST_INFO ("Handling command line"); | ||||
|  | ||||
|   options = g_application_command_line_get_options_dict (cmd_line); | ||||
|  | ||||
|   /* Enqueue only makes sense from remote invocation */ | ||||
|   if (g_application_command_line_get_is_remote (cmd_line)) | ||||
|     enqueue = g_variant_dict_contains (options, "enqueue"); | ||||
|  | ||||
|   if (clapper_app_utils_files_from_command_line (cmd_line, &files, &n_files)) { | ||||
|     g_application_open (app, files, n_files, (enqueue) ? "add-only" : ""); | ||||
|     clapper_app_utils_files_free (files); | ||||
|   } else { | ||||
|     g_application_activate (app); | ||||
|   } | ||||
|  | ||||
|   return EXIT_SUCCESS; | ||||
| } | ||||
|  | ||||
| static gboolean | ||||
| _is_claps_file (GFile *file) | ||||
| { | ||||
| @@ -560,6 +588,7 @@ clapper_app_application_constructed (GObject *object) | ||||
|   guint i; | ||||
|  | ||||
|   const GOptionEntry app_options[] = { | ||||
|     { "enqueue", 0, 0, G_OPTION_ARG_NONE, NULL, _("Add media to queue in primary application instance"), NULL }, | ||||
|     { "volume", 0, 0, G_OPTION_ARG_DOUBLE, &app_opts.volume, _("Audio volume to set (0 - 2.0 range)"), NULL }, | ||||
|     { "speed", 0, 0, G_OPTION_ARG_DOUBLE, &app_opts.speed, _("Playback speed to set (0.05 - 2.0 range)"), NULL }, | ||||
|     { "video-filter", 0, 0, G_OPTION_ARG_STRING, &app_opts.video_filter, _("Video filter to use (\"none\" to disable)"), NULL }, | ||||
| @@ -639,5 +668,6 @@ clapper_app_application_class_init (ClapperAppApplicationClass *klass) | ||||
|  | ||||
|   application_class->activate = clapper_app_application_activate; | ||||
|   application_class->local_command_line = clapper_app_application_local_command_line; | ||||
|   application_class->command_line = clapper_app_application_command_line; | ||||
|   application_class->open = clapper_app_application_open; | ||||
| } | ||||
|   | ||||
| @@ -185,6 +185,30 @@ clapper_app_utils_files_from_string (const gchar *string, GFile ***files, gint * | ||||
|   return success; | ||||
| } | ||||
|  | ||||
| gboolean | ||||
| clapper_app_utils_files_from_command_line (GApplicationCommandLine *cmd_line, GFile ***files, gint *n_files) | ||||
| { | ||||
|   GSList *slist = NULL; | ||||
|   gchar **argv; | ||||
|   gint i, argc = 0; | ||||
|   gboolean success; | ||||
|  | ||||
|   argv = g_application_command_line_get_arguments (cmd_line, &argc); | ||||
|  | ||||
|   for (i = 1; i < argc; ++i) | ||||
|     slist = g_slist_append (slist, g_application_command_line_create_file_for_arg (cmd_line, argv[i])); | ||||
|  | ||||
|   g_strfreev (argv); | ||||
|  | ||||
|   if (!slist) | ||||
|     return FALSE; | ||||
|  | ||||
|   success = clapper_app_utils_files_from_slist (slist, files, n_files); | ||||
|   g_slist_free_full (slist, g_object_unref); | ||||
|  | ||||
|   return success; | ||||
| } | ||||
|  | ||||
| static inline gboolean | ||||
| _files_from_file (GFile *file, GFile ***files, gint *n_files) | ||||
| { | ||||
|   | ||||
| @@ -50,6 +50,9 @@ gboolean clapper_app_utils_files_from_slist (GSList *file_list, GFile ***files, | ||||
| G_GNUC_INTERNAL | ||||
| gboolean clapper_app_utils_files_from_string (const gchar *string, GFile ***files, gint *n_files); | ||||
|  | ||||
| G_GNUC_INTERNAL | ||||
| gboolean clapper_app_utils_files_from_command_line (GApplicationCommandLine *cmd_line, GFile ***files, gint *n_files); | ||||
|  | ||||
| G_GNUC_INTERNAL | ||||
| gboolean clapper_app_utils_files_from_value (const GValue *value, GFile ***files, gint *n_files); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user