blob: 186a2ed50603778e1601a55d00b392c15fbf53de [file] [log] [blame]
/**
*Licensed to the Apache Software Foundation (ASF) under one
*or more contributor license agreements. See the NOTICE file
*distributed with this work for additional information
*regarding copyright ownership. The ASF licenses this file
*to you 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.
*/
/*
* event_admin_impl.c
*
* Created on: Jul 24, 2013
* \author <a href="mailto:dev@celix.apache.org">Apache Celix Project Team</a>
* \copyright Apache License, Version 2.0
*/
#include <stdlib.h>
#include "event_handler.h"
#include "log_helper.h"
#include "log_service.h"
struct event_handler {
event_admin_service_pt event_admin_service;
bundle_context_pt context;
log_helper_pt loghelper;
};
celix_status_t eventHandlerCreate(bundle_context_pt context, event_handler_pt *event_handler) {
celix_status_t status = CELIX_SUCCESS;
*event_handler = calloc(1, sizeof(**event_handler));
if (!*event_handler) {
status = CELIX_ENOMEM;
} else {
(*event_handler)->event_admin_service = NULL;
(*event_handler)->context = context;
if (logHelper_create(context, &(*event_handler)->loghelper) == CELIX_SUCCESS) {
logHelper_start((*event_handler)->loghelper);
}
}
return status;
}
celix_status_t eventHandlerDestroy(event_handler_pt *event_handler)
{
celix_status_t status = CELIX_SUCCESS;
logHelper_stop((*event_handler)->loghelper);
logHelper_destroy(&(*event_handler)->loghelper);
free(*event_handler);
return status;
}
celix_status_t eventHandlerHandleEvent(event_handler_pt *event_handler, event_pt event) {
celix_status_t status = CELIX_SUCCESS;
if (event != NULL) {
const char *topic = event->topic;
logHelper_log((*event_handler)->loghelper, OSGI_LOGSERVICE_INFO, "[SUB] topic of event: %s.", topic);
array_list_pt propertyNames;
arrayList_create(&propertyNames);
properties_pt properties = event->properties;
if (hashMap_size(properties) > 0) {
hash_map_iterator_t iterator = hashMapIterator_construct(properties);
while (hashMapIterator_hasNext(&iterator)) {
hash_map_entry_pt entry = hashMapIterator_nextEntry(&iterator);
char *key = hashMapEntry_getKey(entry);
arrayList_add(propertyNames, key);
}
}
array_list_iterator_pt propertyIter = arrayListIterator_create(propertyNames);
while (arrayListIterator_hasNext(propertyIter)) {
char *key = arrayListIterator_next(propertyIter);
const char *value = NULL;
value = properties_get((*event).properties, key);
logHelper_log((*event_handler)->loghelper, OSGI_LOGSERVICE_INFO, "[SUB] Key: %s value: %s.", key, value);
}
arrayListIterator_destroy(propertyIter);
arrayList_destroy(propertyNames);
}
return status;
}