blob: b3549d08afa8a3d9920cce392a6541335525efb3 [file] [log] [blame]
Patrick Venture33569752018-03-12 18:56:14 -07001/**
2 * Copyright 2017 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Patrick Ventureb5754fd2018-09-10 13:13:58 -070017#include "lpcsnoop/snoop_listen.hpp"
18
Benjamin Fairf69ad7e2018-07-13 13:41:10 -070019#include <cinttypes>
Patrick Venture33569752018-03-12 18:56:14 -070020#include <cstdio>
21#include <iostream>
22#include <memory>
23
Kun Yiafff5742018-07-10 12:28:05 -070024/* Example PostCode handler which simply prints them */
wukaihua-fii-naf8d0e0b2022-05-11 14:43:09 +080025static void printPostcode(FILE*, postcode_t postcode)
Patrick Venture33569752018-03-12 18:56:14 -070026{
Kun Yiafff5742018-07-10 12:28:05 -070027 /* Print output to verify the example program is receiving values. */
Manojkiran Edaba5258f2021-02-25 13:23:33 +053028 std::printf("recv: 0x%" PRIx64 "\n",
29 std::get<primary_post_code_t>(postcode));
Kun Yiafff5742018-07-10 12:28:05 -070030}
Patrick Venture33569752018-03-12 18:56:14 -070031
Kun Yiafff5742018-07-10 12:28:05 -070032/*
33 * One can also specify custom handler that operates on
Patrick Williamsaebf87c2022-07-22 19:26:54 -050034 * sdbusplus::message_t type and pass them to constructor.
Kun Yiafff5742018-07-10 12:28:05 -070035 * e.g.
36 *
Patrick Williamsaebf87c2022-07-22 19:26:54 -050037 * static void PrintMessageMap(sdbusplus::message_t& m)
Kun Yiafff5742018-07-10 12:28:05 -070038 * {
Kun Yiafff5742018-07-10 12:28:05 -070039 * std::string messageBusName;
Patrick Williams59c5d9f2020-05-13 11:46:38 -050040 * std::map<std::string, std::variant<uint64_t>> messageData;
Kun Yiafff5742018-07-10 12:28:05 -070041 *
42 * m.read(messageBusName, messageData);
43 *
44 * std::cout << "Got message from " << messageBusName << std::endl;
45 * for (const auto& kv : messageData)
46 * {
47 * std::cout << "Key: " << kv.first << std::endl;
48 * std::cout << "Value: " << get<uint64_t>(kv.second) << std::endl;
49 * }
50 * }
51 *
52 * lpcsnoop::SnoopListen snoop(ListenBus, PrintMessageMap);
53 */
Patrick Venture33569752018-03-12 18:56:14 -070054
55/*
56 * This is the entry point for the application.
57 *
58 * This application simply creates an object that registers for incoming value
59 * updates for the POST code dbus object.
60 */
Kun Yicce09622020-04-06 14:01:55 -070061int main()
Patrick Venture33569752018-03-12 18:56:14 -070062{
63 auto ListenBus = sdbusplus::bus::new_default();
Kun Yiafff5742018-07-10 12:28:05 -070064 lpcsnoop::SnoopListen snoop(ListenBus, printPostcode);
Patrick Venture33569752018-03-12 18:56:14 -070065
66 while (true)
67 {
68 ListenBus.process_discard();
69 ListenBus.wait();
70 }
71
72 return 0;
73}