loc_eng_dmn_conn_handler.cpp revision 34ee09551764b045fdc02df754157473125edf60
1/* Copyright (c) 2011, Code Aurora Forum. All rights reserved.
2 *
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions are
5 * met:
6 *     * Redistributions of source code must retain the above copyright
7 *       notice, this list of conditions and the following disclaimer.
8 *     * Redistributions in binary form must reproduce the above
9 *       copyright notice, this list of conditions and the following
10 *       disclaimer in the documentation and/or other materials provided
11 *       with the distribution.
12 *     * Neither the name of Code Aurora Forum, Inc. nor the names of its
13 *       contributors may be used to endorse or promote products derived
14 *       from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
19 * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
26 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 */
29#include <stdio.h>
30#include <stdlib.h>
31#include <string.h>
32#include <unistd.h>
33
34#include "log_util.h"
35#include "loc_eng_msg.h"
36#include "loc_eng_dmn_conn.h"
37#include "loc_eng_dmn_conn_handler.h"
38
39void* loc_api_handle = NULL;
40
41int loc_eng_dmn_conn_loc_api_server_if_request_handler(struct ctrl_msgbuf *pmsg, int len)
42{
43    LOC_LOGD("%s:%d]\n", __func__, __LINE__);
44#ifndef DEBUG_DMN_LOC_API
45    if (NULL == loc_api_handle) {
46        LOC_LOGE("%s:%d] NO agps data handle\n", __func__, __LINE__);
47        return 1;
48    }
49
50    loc_eng_msg_request_bit *msg(
51        new loc_eng_msg_request_bit(loc_api_handle,
52                                    pmsg->cmsg.cmsg_if_request.is_supl,
53                                    pmsg->cmsg.cmsg_if_request.ipv4_addr,
54                                    (char*)pmsg->cmsg.cmsg_if_request.ipv6_addr));
55    loc_eng_msg_sender(loc_api_handle, msg);
56
57#else
58   loc_eng_dmn_conn_loc_api_server_data_conn(GPSONE_LOC_API_IF_REQUEST_SUCCESS);
59#endif
60    return 0;
61}
62
63int loc_eng_dmn_conn_loc_api_server_if_release_handler(struct ctrl_msgbuf *pmsg, int len)
64{
65    LOC_LOGD("%s:%d]\n", __func__, __LINE__);
66#ifndef DEBUG_DMN_LOC_API
67    loc_eng_msg_release_bit *msg(
68            new loc_eng_msg_release_bit(loc_api_handle,
69                                        pmsg->cmsg.cmsg_if_request.is_supl,
70                                        pmsg->cmsg.cmsg_if_request.ipv4_addr,
71                                        (char*)pmsg->cmsg.cmsg_if_request.ipv6_addr));
72        loc_eng_msg_sender(loc_api_handle, msg);
73#else
74   loc_eng_dmn_conn_loc_api_server_data_conn(GPSONE_LOC_API_IF_RELEASE_SUCCESS);
75#endif
76    return 0;
77}
78
79