edje: Edje_Edit - add edje_edit_sound_tone_del() function that provides the ability to delete tone from collection.

Summary:
Added new function that allows user to delete tonefrom collection.
After successfull deletion this function will check if this sound was in use in any
PLAY_TONE action in any program of current collections groups. If such actions
are found, they will be deleted.
This commit moves action deletion into the static _delete_play_actions() function
and replaces corresponding part of  edje_edit_sound_sample_del() with
the call of this function.

Reviewers: cedric, Hermet, seoz, raster

CC: reutskiy.v.v, cedric

Differential Revision: https://phab.enlightenment.org/D1002

Signed-off-by: Cedric BAIL <c.bail@partner.samsung.com>
This commit is contained in:
Kateryna Fesyna 2014-06-12 02:14:38 +02:00 committed by Cedric BAIL
parent b1eccf2993
commit 9c79b7f0f8
2 changed files with 145 additions and 37 deletions

View File

@ -3534,12 +3534,25 @@ EAPI Eina_List * edje_edit_sounds_tones_get(Evas_Object *obj);
* that use deleted sound will be deleted. * that use deleted sound will be deleted.
* *
* @param obj Object being edited. * @param obj Object being edited.
* @param name The name of the sound file to be deleted from the edje. * @param name The name of the sound to be deleted from the edje.
* *
* @return EINA_TRUE if successful, EINA_FALSE otherwise. * @return EINA_TRUE if successful, EINA_FALSE otherwise.
*/ */
EAPI Eina_Bool edje_edit_sound_sample_del(Evas_Object *obj, const char *name); EAPI Eina_Bool edje_edit_sound_sample_del(Evas_Object *obj, const char *name);
/** Delete tone from the collection
*
* Deletes tone from collection by its name. After successfull deletion
* all PLAY_TONE actions in all programs of all groups of current collection
* that use deleted sound will be deleted.
*
* @param obj Object being edited.
* @param name The name of the tone to be deleted from the edje.
*
* @return EINA_TRUE if successful, EINA_FALSE otherwise.
*/
EAPI Eina_Bool edje_edit_sound_tone_del(Evas_Object *obj, const char* name);
//@} //@}
/******************************************************************************/ /******************************************************************************/
/************************* SPECTRUM API ***********************************/ /************************* SPECTRUM API ***********************************/

View File

@ -912,6 +912,65 @@ edje_edit_compiler_get(Evas_Object *obj)
static Eina_Bool _edje_edit_collection_save(Eet_File *eetf, Edje_Part_Collection *epc); static Eina_Bool _edje_edit_collection_save(Eet_File *eetf, Edje_Part_Collection *epc);
static Eina_Bool
_delete_play_actions(Evas_Object *obj, const char* name, int action_type, Eet_File *eetf)
{
GET_ED_OR_RETURN(EINA_FALSE);
Eina_Iterator *it = eina_hash_iterator_data_new(ed->file->collection);
Edje_Part_Collection_Directory_Entry *pce;
EINA_ITERATOR_FOREACH(it, pce)
{
Eina_Bool is_collection_changed = EINA_FALSE;
int i;
if (pce->group_alias)
continue;
Evas_Object *obj = edje_edit_object_add(ed->base->evas);
if (!edje_object_file_set(obj, ed->file->path, pce->entry))
continue;
Eina_List *programs_list = edje_edit_programs_list_get(obj);
if (!programs_list)
continue;
GET_ED_OR_RETURN(EINA_FALSE);
for (i = 0; i < ed->collection->patterns.table_programs_size; i++)
{
Edje_Program *program;
program = ed->collection->patterns.table_programs[i];
if (program->action != action_type)
continue;
if ((action_type == EDJE_ACTION_TYPE_SOUND_SAMPLE) &&
!strcmp(program->sample_name, name))
{
program->speed = 0;
program->channel = EDJE_CHANNEL_EFFECT;
_edje_if_string_free(ed, program->sample_name);
program->sample_name = NULL;
program->action = EDJE_ACTION_TYPE_NONE;
is_collection_changed = EINA_TRUE;
}
else if ((action_type == EDJE_ACTION_TYPE_SOUND_TONE) &&
!strcmp(program->tone_name, name))
{
program->duration = 0;
_edje_if_string_free(ed, program->tone_name);
program->tone_name = NULL;
program->action = EDJE_ACTION_TYPE_NONE;
is_collection_changed = EINA_TRUE;
}
}
if (is_collection_changed)
_edje_edit_collection_save(eetf, ed->collection);
}
return EINA_TRUE;
}
EAPI Eina_Bool EAPI Eina_Bool
edje_edit_sound_sample_del(Evas_Object *obj, const char* name) edje_edit_sound_sample_del(Evas_Object *obj, const char* name)
{ {
@ -945,7 +1004,6 @@ edje_edit_sound_sample_del(Evas_Object *obj, const char* name)
{ {
char sample[PATH_MAX]; char sample[PATH_MAX];
Eet_File *eetf; Eet_File *eetf;
Edje_Sound_Sample *sound_sample_last; Edje_Sound_Sample *sound_sample_last;
eetf = eet_open(ed->path, EET_FILE_MODE_READ_WRITE); eetf = eet_open(ed->path, EET_FILE_MODE_READ_WRITE);
@ -977,47 +1035,84 @@ edje_edit_sound_sample_del(Evas_Object *obj, const char* name)
sizeof(Edje_Sound_Sample) * sizeof(Edje_Sound_Sample) *
ed->file->sound_dir->samples_count); ed->file->sound_dir->samples_count);
Eina_Iterator *it = eina_hash_iterator_data_new(ed->file->collection); if (!_delete_play_actions(obj, name, EDJE_ACTION_TYPE_SOUND_SAMPLE, eetf))
Edje_Part_Collection_Directory_Entry *pce;
EINA_ITERATOR_FOREACH(it, pce)
{ {
Eina_Bool is_collection_changed = EINA_FALSE; eet_close(eetf);
int i; return EINA_FALSE;
}
if (pce->group_alias) if (!_edje_edit_edje_file_save(eetf, ed->file))
continue; {
eet_close(eetf);
return EINA_FALSE;
}
eet_close(eetf);
}
Evas_Object *obj = edje_edit_object_add(ed->base->evas); GET_EED_OR_RETURN(EINA_FALSE);
if (!edje_object_file_set(obj, ed->file->path, pce->entry)) _edje_edit_flag_script_dirty(eed, EINA_TRUE);
continue;
Eina_List *programs_list = edje_edit_programs_list_get(obj); return EINA_TRUE;
if (!programs_list) }
continue;
GET_ED_OR_RETURN(EINA_FALSE); EAPI Eina_Bool
edje_edit_sound_tone_del(Evas_Object *obj, const char* name)
{
Edje_Sound_Tone *sound_tone = NULL;
unsigned int i = 0;
for (i = 0; i < ed->collection->patterns.table_programs_size; i++) GET_ED_OR_RETURN(EINA_FALSE);
{
Edje_Program *program;
program = ed->collection->patterns.table_programs[i]; if (!name) return EINA_FALSE;
if ((program->action == EDJE_ACTION_TYPE_SOUND_SAMPLE) && if (!ed->file) return EINA_FALSE;
(!strcmp(program->sample_name, name))) if (!ed->path) return EINA_FALSE;
{
program->action = EDJE_ACTION_TYPE_NONE; if ((!ed->file->sound_dir) || (!ed->file->sound_dir->tones))
program->duration = 0; {
program->channel = EDJE_CHANNEL_EFFECT; WRN("Unable to delete tone \"%s\". The tones list is empty.", name);
_edje_if_string_free(ed, program->sample_name); return EINA_FALSE;
program->sample_name = NULL; }
is_collection_changed = EINA_TRUE;
} for (i = 0; i < ed->file->sound_dir->tones_count; ++i)
} {
if (is_collection_changed) sound_tone = ed->file->sound_dir->tones + i;
{ if (!strcmp(name, sound_tone->name))
_edje_edit_collection_save(eetf, ed->collection); break;
} }
if (i == ed->file->sound_dir->tones_count)
{
WRN("Unable to delete tone \"%s\". It does not exist.", name);
return EINA_FALSE;
}
{
Eet_File *eetf;
eetf = eet_open(ed->path, EET_FILE_MODE_READ_WRITE);
if (!eetf)
{
WRN("Unable to open file \"%s\" for writing output", ed->path);
return EINA_FALSE;
}
Edje_Sound_Tone *sound_tone_last;
sound_tone_last = ed->file->sound_dir->tones +
ed->file->sound_dir->tones_count - 1;
if (sound_tone_last->id != sound_tone->id)
*sound_tone = *sound_tone_last;
_edje_if_string_free(ed, sound_tone->name);
--ed->file->sound_dir->tones_count;
ed->file->sound_dir->tones = realloc(ed->file->sound_dir->tones,
sizeof(Edje_Sound_Tone) *
ed->file->sound_dir->tones_count);
if (!_delete_play_actions(obj, name, EDJE_ACTION_TYPE_SOUND_TONE, eetf))
{
eet_close(eetf);
return EINA_FALSE;
} }
if (!_edje_edit_edje_file_save(eetf, ed->file)) if (!_edje_edit_edje_file_save(eetf, ed->file))