summaryrefslogtreecommitdiff
path: root/daemons/gptp/linux/shm_test/shm_test.cpp
blob: dbe01c5b6be0379611a34ee634bdfc356e34d6bb (plain)
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/******************************************************************************

  Copyright (c) 2015, Coveloz Consulting
  All rights reserved.

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions are met:

   1. Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.

   2. Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.

   3. Neither the name of the Coveloz Consulting nor the names of its
      contributors may be used to endorse or promote products derived from
      this software without specific prior written permission.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  POSSIBILITY OF SUCH DAMAGE.

******************************************************************************/

#include <iostream>
#include <fstream>

#include <stdio.h>
#include <stdint.h>
#include <sys/mman.h>
#include <sys/stat.h>        /* For mode constants */
#include <fcntl.h>           /* For O_* constants */
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <pthread.h>

#include "linux_ipc.hpp"

static inline uint64_t getCpuFrequency(void)
{
    uint64_t freq = 0;
    std::string line;
    std::ifstream cpuinfo("/proc/cpuinfo");
    if (cpuinfo.is_open())
    {
        while ( getline (cpuinfo,line) )
        {
            if(line.find("MHz") != line.npos)
                break;
        }
        cpuinfo.close();
    }
    else std::cout << "Unable to open file";

    size_t pos = line.find(":");
    if (pos != line.npos) {
        std::string mhz_str = line.substr(pos+2, line.npos - pos);
        double freq1 = strtod(mhz_str.c_str(), NULL);
        freq = freq1 * 1000000ULL;
    }
    return freq;
}

int main(int argc, char *argv[])
{
    int shm_fd = shm_open(SHM_NAME, O_RDONLY, 0666);

    if( shm_fd < 0) {
        fprintf(stderr, "shm_open(). %s\n", strerror(errno));
        return -1;
    }
    char *addr = (char*)mmap(NULL, SHM_SIZE, PROT_READ, MAP_SHARED, shm_fd, 0);

    if( addr == MAP_FAILED ) {
        fprintf(stderr, "Error on mmap. Aborting.\n");
        return -1;
    }
    fprintf(stdout, "--------------------------------------------\n");
    int buf_offset = 0;
    buf_offset += sizeof(pthread_mutex_t);
    gPtpTimeData *ptpData = (gPtpTimeData*)(addr+buf_offset);
    /*TODO: Scale to ns*/
    uint64_t freq = getCpuFrequency();
    printf("Frequency %lu Hz\n", freq);

    fprintf(stdout, "ml phoffset %ld\n", ptpData->ml_phoffset);
    fprintf(stdout, "ml freq offset %Lf\n", ptpData->ml_freqoffset);
    fprintf(stdout, "ls phoffset %ld\n", ptpData->ls_phoffset);
    fprintf(stdout, "ls freq offset %Lf\n", ptpData->ls_freqoffset);
    fprintf(stdout, "local time %llu\n\n", (unsigned long long) ptpData->local_time);

    fprintf(stdout, "gptp grandmaster id %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n",
            (unsigned int) ptpData->gptp_grandmaster_id[0], (unsigned int) ptpData->gptp_grandmaster_id[1],
            (unsigned int) ptpData->gptp_grandmaster_id[2], (unsigned int) ptpData->gptp_grandmaster_id[3],
            (unsigned int) ptpData->gptp_grandmaster_id[4], (unsigned int) ptpData->gptp_grandmaster_id[5],
            (unsigned int) ptpData->gptp_grandmaster_id[6], (unsigned int) ptpData->gptp_grandmaster_id[7]);
    fprintf(stdout, "gptp domain number %u\n\n", (unsigned int) ptpData->gptp_domain_number);

    fprintf(stdout, "clock identity %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n",
            (unsigned int) ptpData->clock_identity[0], (unsigned int) ptpData->clock_identity[1],
            (unsigned int) ptpData->clock_identity[2], (unsigned int) ptpData->clock_identity[3],
            (unsigned int) ptpData->clock_identity[4], (unsigned int) ptpData->clock_identity[5],
            (unsigned int) ptpData->clock_identity[6], (unsigned int) ptpData->clock_identity[7]);
    fprintf(stdout, "priority1 %u\n", (unsigned int) ptpData->priority1);
    fprintf(stdout, "clock_class %u\n", (unsigned int) ptpData->clock_class);
    fprintf(stdout, "offset_scaled_log_variance %d\n", (int) ptpData->offset_scaled_log_variance);
    fprintf(stdout, "clock_accuracy %u\n", (unsigned int) ptpData->clock_accuracy);
    fprintf(stdout, "priority2 %u\n", (unsigned int) ptpData->priority2);
    fprintf(stdout, "domain_number %u\n", (unsigned int) ptpData->domain_number);
    fprintf(stdout, "log_sync_interval %d\n", (int) ptpData->log_sync_interval);
    fprintf(stdout, "log_announce_interval %d\n", (int) ptpData->log_announce_interval);
    fprintf(stdout, "log_pdelay_interval %d\n", (int) ptpData->log_pdelay_interval);
    fprintf(stdout, "port_number %u\n\n", (unsigned int) ptpData->port_number);

    fprintf(stdout, "sync count %u\n", ptpData->sync_count);
    fprintf(stdout, "pdelay count %u\n", ptpData->pdelay_count);
    fprintf(stdout, "asCapable %s\n", ptpData->asCapable ? "True" : "False");
    fprintf(stdout, "Port State %d\n", (int)ptpData->port_state);
    fprintf(stdout, "process_id %d\n\n", (int)ptpData->process_id);

    return 0;
}