1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
/* File: ctrl_controller.c; Copyright and License: see below */
#include "ctrl_controller.h"
#include "u8/u8_trace.h"
#include "u8/u8_log.h"
void ctrl_controller_init ( ctrl_controller_t *this_, data_database_t *database )
{
U8_TRACE_BEGIN();
/* init member attributes */
(*this_).database = database;
data_database_reader_init( &((*this_).db_reader), database );
data_database_writer_init( &((*this_).db_writer), &((*this_).db_reader), database );
ctrl_undo_redo_list_init ( &((*this_).undo_redo_list), &((*this_).db_reader), &((*this_).db_writer) );
consistency_drop_invisibles_init ( &((*this_).consistency_drop_invisibles), &((*this_).db_reader), &((*this_).classifiers), &((*this_).diagrams) );
consistency_lifeline_init ( &((*this_).consistency_lifeline), &((*this_).db_reader), &((*this_).classifiers), &((*this_).diagrams) );
ctrl_classifier_trigger_init( &((*this_).classifier_trigger), &((*this_).consistency_drop_invisibles), &((*this_).consistency_lifeline) );
ctrl_diagram_trigger_init( &((*this_).diagram_trigger), &((*this_).consistency_drop_invisibles), &((*this_).consistency_lifeline) );
ctrl_classifier_controller_init ( &((*this_).classifiers),
&((*this_).undo_redo_list),
&((*this_).classifier_trigger),
database,
&((*this_).db_reader),
&((*this_).db_writer)
);
ctrl_diagram_controller_init ( &((*this_).diagrams),
&((*this_).undo_redo_list),
&((*this_).diagram_trigger),
database,
&((*this_).db_reader),
&((*this_).db_writer)
);
ctrl_consistency_checker_init ( &((*this_).consistency_checker), database, &((*this_).db_reader), &((*this_).db_writer) );
/* listen on db open and prepare_close events: */
data_database_listener_init ( &((*this_).me_as_listener),
this_,
(void (*)(void*,data_database_listener_signal_t)) &ctrl_controller_db_change_callback
);
data_database_add_db_listener( (*this_).database, &((*this_).me_as_listener) );
U8_TRACE_END();
}
void ctrl_controller_destroy ( ctrl_controller_t *this_ )
{
U8_TRACE_BEGIN();
/* stop listening on db open and prepare_close events: */
data_database_remove_db_listener( (*this_).database, &((*this_).me_as_listener) );
/* destroy member attributes */
ctrl_classifier_trigger_destroy( &((*this_).classifier_trigger) );
ctrl_diagram_trigger_destroy( &((*this_).diagram_trigger) );
ctrl_consistency_checker_destroy ( &((*this_).consistency_checker) );
ctrl_diagram_controller_destroy ( &((*this_).diagrams) );
ctrl_classifier_controller_destroy ( &((*this_).classifiers) );
consistency_lifeline_destroy ( &((*this_).consistency_lifeline) );
consistency_drop_invisibles_destroy ( &((*this_).consistency_drop_invisibles) );
ctrl_undo_redo_list_destroy ( &((*this_).undo_redo_list) );
data_database_writer_destroy( &((*this_).db_writer) );
data_database_reader_destroy( &((*this_).db_reader) );
U8_TRACE_END();
}
/* ================================ interface for database file ================================ */
void ctrl_controller_db_change_callback ( ctrl_controller_t *this_, data_database_listener_signal_t signal_id )
{
U8_TRACE_BEGIN();
/* for any db event, clear the undo history */
ctrl_undo_redo_list_clear( &((*this_).undo_redo_list) );
U8_TRACE_END();
}
/*
Copyright 2016-2025 Andreas Warnke
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
|