2 * Copyright (C) ARM Limited 2010-2014. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9 #include "UserSpaceSource.h"
11 #include <sys/prctl.h>
15 #include "DriverSource.h"
17 #include "SessionData.h"
21 UserSpaceSource::UserSpaceSource(sem_t *senderSem) : mBuffer(0, FRAME_BLOCK_COUNTER, gSessionData->mTotalBufferSize*1024*1024, senderSem) {
24 UserSpaceSource::~UserSpaceSource() {
27 bool UserSpaceSource::prepare() {
31 void UserSpaceSource::run() {
32 prctl(PR_SET_NAME, (unsigned long)&"gatord-counters", 0, 0, 0);
34 for (int i = 0; i < ARRAY_LENGTH(gSessionData->usDrivers); ++i) {
35 gSessionData->usDrivers[i]->start();
38 int64_t monotonic_started = 0;
39 while (monotonic_started <= 0) {
42 if (gSessionData->perf.isSetup()) {
43 monotonic_started = gSessionData->mMonotonicStarted;
45 if (DriverSource::readInt64Driver("/dev/gator/started", &monotonic_started) == -1) {
46 logg->logError(__FILE__, __LINE__, "Error reading gator driver start time");
49 gSessionData->mMonotonicStarted = monotonic_started;
53 uint64_t next_time = 0;
54 while (gSessionData->mSessionIsActive) {
55 const uint64_t curr_time = getTime() - monotonic_started;
56 // Sample ten times a second ignoring gSessionData->mSampleRate
57 next_time += NS_PER_S/10;//gSessionData->mSampleRate;
58 if (next_time < curr_time) {
59 logg->logMessage("Too slow, curr_time: %lli next_time: %lli", curr_time, next_time);
60 next_time = curr_time;
63 if (mBuffer.eventHeader(curr_time)) {
64 for (int i = 0; i < ARRAY_LENGTH(gSessionData->usDrivers); ++i) {
65 gSessionData->usDrivers[i]->read(&mBuffer);
67 // Only check after writing all counters so that time and corresponding counters appear in the same frame
68 mBuffer.check(curr_time);
71 if (mBuffer.bytesAvailable() <= 0) {
72 logg->logMessage("One shot (counters)");
76 usleep((next_time - curr_time)/NS_PER_US);
82 void UserSpaceSource::interrupt() {
86 bool UserSpaceSource::isDone() {
87 return mBuffer.isDone();
90 void UserSpaceSource::write(Sender *sender) {
91 if (!mBuffer.isDone()) {
92 mBuffer.write(sender);