blob: 0d8b684b7895a45aee7eb2e700be506e4c720970 [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.
*/
/*
* endpoint_description.c
*
* \date 25 Jul 2014
* \author <a href="mailto:dev@celix.apache.org">Apache Celix Project Team</a>
* \copyright Apache License, Version 2.0
*/
#include <stdlib.h>
#include <string.h>
#include "celix_errno.h"
#include "celix_log.h"
#include "endpoint_description.h"
#include "remote_constants.h"
#include "constants.h"
static celix_status_t endpointDescription_verifyLongProperty(properties_pt properties, char *propertyName, unsigned long *longProperty);
celix_status_t endpointDescription_create(properties_pt properties, endpoint_description_pt *endpointDescription) {
celix_status_t status = CELIX_SUCCESS;
unsigned long serviceId = 0UL;
status = endpointDescription_verifyLongProperty(properties, (char *) OSGI_RSA_ENDPOINT_SERVICE_ID, &serviceId);
if (status != CELIX_SUCCESS) {
return status;
}
endpoint_description_pt ep = calloc(1,sizeof(*ep));
ep->properties = properties;
ep->frameworkUUID = (char*)properties_get(properties, OSGI_RSA_ENDPOINT_FRAMEWORK_UUID);
ep->id = (char*)properties_get(properties, OSGI_RSA_ENDPOINT_ID);
ep->service = strndup(properties_get(properties, OSGI_FRAMEWORK_OBJECTCLASS), 1024*10);
ep->serviceId = serviceId;
if (!(ep->frameworkUUID) || !(ep->id) || !(ep->service) ) {
fw_log(logger, OSGI_FRAMEWORK_LOG_ERROR, "ENDPOINT_DESCRIPTION: incomplete description!.");
status = CELIX_BUNDLE_EXCEPTION;
}
if(status == CELIX_SUCCESS){
*endpointDescription = ep;
}
else{
*endpointDescription = NULL;
free(ep);
}
return status;
}
celix_status_t endpointDescription_destroy(endpoint_description_pt description) {
properties_destroy(description->properties);
free(description->service);
free(description);
return CELIX_SUCCESS;
}
static celix_status_t endpointDescription_verifyLongProperty(properties_pt properties, char *propertyName, unsigned long *longProperty) {
celix_status_t status = CELIX_SUCCESS;
const char *value = properties_get(properties, propertyName);
if (value == NULL) {
*longProperty = 0UL;
} else {
*longProperty = strtoul(value,NULL,10);
}
return status;
}