File: PhoneHome.cpp

package info (click to toggle)
libstatgen 1.0.15-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,588 kB
  • sloc: cpp: 49,624; ansic: 1,408; makefile: 320; sh: 60
file content (225 lines) | stat: -rw-r--r-- 6,053 bytes parent folder | download | duplicates (4)
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
/*
 *  Copyright (C) 2013  Regents of the University of Michigan
 *
 *   This program is free software: you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation, either version 3 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "PhoneHome.h"
#include "knetfile.h"

#include <time.h>
#include <iostream>
#include <string.h>

int PhoneHome::allThinning = 50;
int PhoneHome::ourNumber = -1;

bool PhoneHome::ourEnableCompletionStatus = false;
std::string PhoneHome::ourBaseURL = "http://csgph.sph.umich.edu/ph/";
std::string PhoneHome::ourURL = ourBaseURL;
char PhoneHome::ourPrefixChar = '?';
String PhoneHome::ourReturnString = "";
String PhoneHome::ourToolName = "";

void PhoneHome::enableCompletionStatus(const char* programName)
{
    if(programName != NULL)
    {
        add("pgm", programName);
    }
    ourEnableCompletionStatus = true;
}


void PhoneHome::disableCompletionStatus()
{
    ourEnableCompletionStatus = false;
}


bool PhoneHome::checkVersion(const char* programName, const char* version,
                             const char* params)
{
    enableCompletionStatus();
    add("pgm", programName);
    add("vsn", version);
    add("args", params);

    connect();

    // Look for this program in the returned string.
    int start = ourReturnString.Find(ourToolName+"\t");
    if(start < 0)
    {
        // Parse the toolName, and check for the program name
        // just up to a ':'
        int colStart = ourToolName.FastFindChar(':');
        if(colStart >= 0)
        {
            ourToolName.SetLength(colStart);
            start = ourReturnString.Find(ourToolName+"\t");
        }
    }

    if(start < 0)
    {
        // This program name was not found in the version file,
        // so it is a program for which version is not tracked,
        // just return true.
        return(true);
    }

    // Found this program, so extract the version.
    start += ourToolName.Length();
    while((start < ourReturnString.Length()) && 
           isspace(ourReturnString[start]))
    {
        // Consume whitespace
        ++start;
    }

    // Start now contains the position of the start of the version
    String thisVersion = version;
    String latestVersion;
    int end = start;
    while((end < ourReturnString.Length()) && 
          !isspace(ourReturnString[end]))
    {
        latestVersion += ourReturnString[end];
        ++end;
    }

    //    std::cerr << "latest version = " << latestVersion << "\nthis version = " << thisVersion.c_str() << "\n";

    if(latestVersion.FastCompare(thisVersion) > 0)
    {
        std::cerr << "\n**************************************************************************************\n"
                  << "A new version, " << latestVersion 
                  << ", of " << ourToolName
                  << " is available (currently running " 
                  << thisVersion.c_str() << ")"
                  << "\n**************************************************************************************\n\n";
        return(false);
    }
    return(true);
}

void PhoneHome::completionStatus(const char* status, const char* programName)
{
    if(programName != NULL)
    {
        add("pgm", programName);
        enableCompletionStatus();
    }
    if(ourEnableCompletionStatus)
    {
        add("status", status);
        connect();
    }
}


void PhoneHome::resetURL()
{
    ourURL = ourBaseURL;
    ourPrefixChar = '?';
}


void PhoneHome::add(const char* name, const char* val)
{
    if((name != NULL) && (strlen(name) != 0) &&
       (val != NULL) && (strlen(val) != 0))
    {
        // Check if the value is already set.
        if(ourURL.find(name) != std::string::npos)
        {
            // value already set, so do not set it.
            return;
        }

        // A value was passed in, so add it to the URL.
        ourURL += ourPrefixChar;
        ourURL += name;
        ourURL += '=';
        // If it is a tool name, trim anything before the last '/'
        if(strstr(name, "pgm") != NULL)
        {
            // toolname, so trim the val.
            const char* toolVal = strrchr(val, '/');
            if(toolVal != NULL)
            {
                toolVal++;
            }
            else
            {
                toolVal = val;
            }
            ourURL.append(toolVal);
            ourToolName =  toolVal;
        }
        else
        {
            ourURL += val;
        }
        ourPrefixChar = '&';
    }
}


bool PhoneHome::connect()
{
    if(ourNumber == -1)
    {
        srand (time(NULL));
        ourNumber = rand();
        String numString;
        numString = ourNumber;
        String thinningString;
        thinningString = allThinning;
        add("uniqNum", numString);
        add("thinning", thinningString);
    }
    if((ourNumber % 100) >= allThinning)
    {
        // Skip phoneHome.
        return(true);
    }

    // std::cerr << "url = " << ourURL << std::endl;
    ourReturnString.Clear();
    //  return(true);
#ifndef _NO_PHONEHOME
    knet_silent(1);
    knetFile *file = knet_open(ourURL.c_str(), "r");
    if (file == 0) return(false);

    const int BUF_SIZE = 100;
    char buf[BUF_SIZE];

    ssize_t readLen = BUF_SIZE-1;
    ssize_t numRead = readLen;
    while(numRead == readLen)
    {
        numRead = knet_read(file, buf, readLen);
        buf[numRead] = '\0';
        ourReturnString += buf;
    }

    knet_close(file);
    knet_silent(0);
    // std::cerr << "PhoneHome URL = " << ourReturnString.c_str() << std::endl;
#endif
    return(true);
}