1 | |
---|
2 | ################################################################################ |
---|
3 | #This software was developed by the University of Tennessee as part of the |
---|
4 | #Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
5 | #project funded by the US National Science Foundation. |
---|
6 | # |
---|
7 | #See the license text in license.txt |
---|
8 | # |
---|
9 | #copyright 2010, University of Tennessee |
---|
10 | ################################################################################ |
---|
11 | |
---|
12 | |
---|
13 | import sys, time |
---|
14 | import subprocess, os |
---|
15 | import getopt |
---|
16 | from threading import Thread |
---|
17 | |
---|
18 | ## Maximum number of seconds to wait for an answer from the server |
---|
19 | MAX_WAIT_TIME = 20 |
---|
20 | ## Local storage file name |
---|
21 | VERSION_FILE = '.current_version' |
---|
22 | |
---|
23 | class VersionChecker(object): |
---|
24 | """ |
---|
25 | Class of objects used to obtain the current version of an application |
---|
26 | from the deployment server. |
---|
27 | A sub process is started to read the URL associated with the version number. |
---|
28 | The version number is written on file locally before the reading process |
---|
29 | ends, then read when the version number is requested. |
---|
30 | |
---|
31 | The reading of the URL is put in a separate process so that it doesn't |
---|
32 | affect the performance of the application and can be managed and stopped at any time. |
---|
33 | """ |
---|
34 | ## Process used to obtain the current application version from the server |
---|
35 | _process = None |
---|
36 | ## Start time of the process of obtaining a version number |
---|
37 | _t_0 = None |
---|
38 | |
---|
39 | def __init__(self, version_url): |
---|
40 | """ |
---|
41 | Start the sub-process used to read the version URL |
---|
42 | """ |
---|
43 | self._process = subprocess.Popen([sys.executable, __file__, '-g', '-u%s' % version_url]) |
---|
44 | self._t_0 = time.time() |
---|
45 | |
---|
46 | def is_complete(self): |
---|
47 | """ |
---|
48 | Method used to poll the reading process. The process will be killed |
---|
49 | if the wait time is longer than a predefined maximum. |
---|
50 | This method should always be called before get_version() to ensure |
---|
51 | accuracy of the version number that is returned. |
---|
52 | """ |
---|
53 | if(time.time()-self._t_0<MAX_WAIT_TIME): |
---|
54 | if self._process.poll() is not None: |
---|
55 | return True |
---|
56 | return False |
---|
57 | else: |
---|
58 | self._process.kill() |
---|
59 | return True |
---|
60 | |
---|
61 | def get_version(self): |
---|
62 | """ |
---|
63 | Returns the last version number that was read from the server. |
---|
64 | """ |
---|
65 | try: |
---|
66 | f = open(VERSION_FILE, 'r') |
---|
67 | return f.read() |
---|
68 | except: |
---|
69 | return '0.0.0' |
---|
70 | |
---|
71 | class VersionThread(Thread): |
---|
72 | """ |
---|
73 | Thread used to start the process of reading the current version of an |
---|
74 | application from the deployment server. |
---|
75 | |
---|
76 | The VersionChecker is user in a Thread to allow the main application |
---|
77 | to continue dealing with UI requests from the user. The main application |
---|
78 | provides a call-back method for when the version number is obtained. |
---|
79 | """ |
---|
80 | def __init__ (self, url, call_back=None, baggage=None): |
---|
81 | Thread.__init__(self) |
---|
82 | self._url = url |
---|
83 | self._call_back = call_back |
---|
84 | self._baggage = baggage |
---|
85 | |
---|
86 | def run(self): |
---|
87 | """ |
---|
88 | Execute the process of reading the current application version number. |
---|
89 | """ |
---|
90 | checker = VersionChecker(self._url) |
---|
91 | while(not checker.is_complete()): |
---|
92 | time.sleep(1) |
---|
93 | self._call_back(checker.get_version(), self._baggage) |
---|
94 | |
---|
95 | def write_version(version, filename=VERSION_FILE): |
---|
96 | """ |
---|
97 | Store the version number |
---|
98 | This could be put into a DB if the application has one. |
---|
99 | """ |
---|
100 | f = open(filename, 'w') |
---|
101 | f.write(version) |
---|
102 | f.close() |
---|
103 | |
---|
104 | def _get_version_from_server(url): |
---|
105 | """ |
---|
106 | Method executed in the independent process used to read the |
---|
107 | current version number from the server. |
---|
108 | |
---|
109 | :param url: URL to read the version number from |
---|
110 | |
---|
111 | """ |
---|
112 | import urllib, re |
---|
113 | try: |
---|
114 | h = urllib.urlopen(url) |
---|
115 | for line in h.readlines(): |
---|
116 | version = line.strip() |
---|
117 | if len(re.findall('\d+\.\d+\.\d+$', version))>0: |
---|
118 | write_version(version) |
---|
119 | return |
---|
120 | write_version('0.0.0') |
---|
121 | except: |
---|
122 | write_version('0.0.0') |
---|
123 | |
---|
124 | if __name__ == "__main__": |
---|
125 | _get_version = False |
---|
126 | _url = 'http://danse.chem.utk.edu/prview_version.php' |
---|
127 | |
---|
128 | opts, args = getopt.getopt(sys.argv[1:], "gu:", ["get", "url="]) |
---|
129 | for opt, arg in opts: |
---|
130 | if opt in ("-u", "--url"): |
---|
131 | _url = arg |
---|
132 | elif opt in ("-g", "--get"): |
---|
133 | _get_version = True |
---|
134 | |
---|
135 | if _get_version: |
---|
136 | # Get the version number from the URL. |
---|
137 | _get_version_from_server(_url) |
---|
138 | else: |
---|
139 | # Test execution of the reading process |
---|
140 | def _process(version, baggage=None): |
---|
141 | print "Received:", version |
---|
142 | checker = VersionThread(_url, _process) |
---|
143 | checker.start() |
---|
144 | |
---|