~ubuntu-branches/ubuntu/wily/sflphone/wily

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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
#!/usr/bin/python

import optparse
import os
import platform
import socket
import subprocess
import sys

PROG = "r" + "$Rev: 17 $".strip("$ ").replace("Rev: ", "")
PYTHON = os.path.basename(sys.executable)
build_type = ""
vs_target = ""
s60_target = ""
no_test = False
no_pjsua_test = False

#
# Get gcc version
#
def gcc_version(gcc):
    proc = subprocess.Popen(gcc + " -v", stdout=subprocess.PIPE,
                            stderr=subprocess.STDOUT, shell=True)
    ver = ""
    while True:
        s = proc.stdout.readline()
        if not s:
            break
        if s.find("gcc version") >= 0:
            ver = s.split(None, 3)[2]
            break
    proc.wait()
    return "gcc-" + ver

#
# Get Visual Studio info
#
class VSVersion:
    def __init__(self):
	    self.version = "8"
	    self.release = "2005"

	    proc = subprocess.Popen("cl", stdout=subprocess.PIPE,
				    stderr=subprocess.STDOUT)
	    while True:
		s = proc.stdout.readline()
		if s=="":
		    break
		pos = s.find("Version")
		if pos > 0:
		    proc.wait()
		    s = s[pos+8:]
		    ver = s.split(None, 1)[0]
		    major = ver[0:2]
		    if major=="12":
			self.version = "6"
			self.release = "98"
			break
		    elif major=="13":
			self.version = "7"
			self.release = "2003"
			break
		    elif major=="14":
			self.version = "8"
			self.release = "2005"
			break
		    elif major=="15":
			self.version = "9"
			self.release = "2008"
			break
		    elif major=="16":
			self.version = "10"
			self.release = "2010"
			break
		    else:
			self.version = "11"
			self.release = "2012"
			break
	    proc.wait()
	    self.vs_version = "vs" + self.version
	    self.vs_release = "vs" + self.release
    

#
# Get S60 SDK info
#
class S60SDK:
	def __init__(self):
		self.epocroot = ""
		self.sdk = ""
		self.device = ""

		# Check that EPOCROOT is set
		if not "EPOCROOT" in os.environ:
		    sys.stderr.write("Error: EPOCROOT environment variable is not set\n")
		    sys.exit(1)
		epocroot = os.environ["EPOCROOT"]
		# EPOCROOT must have trailing backslash
		if epocroot[-1] != "\\":
		    epocroot = epocroot + "\\"
		    os.environ["EPOCROOT"] = epocroot
		self.epocroot = epocroot
		self.sdk = sdk1 = epocroot.split("\\")[-2]
		self.device = "@" + self.sdk + ":com.nokia.s60"

		# Check that correct device is set
		proc = subprocess.Popen("devices", stdout=subprocess.PIPE,
					stderr=subprocess.STDOUT, shell=True)
		sdk2 = ""
		while True:
		    line = proc.stdout.readline()
		    if line.find("- default") > 0:
			sdk2 = line.split(":",1)[0]
			break
		proc.wait()

		if sdk1 != sdk2:
		    sys.stderr.write("Error: default SDK in device doesn't match EPOCROOT\n")
		    sys.stderr.write("Default device SDK = '" + sdk2 + "'\n")
		    sys.stderr.write("EPOCROOT SDK = '" + sdk1 + "'\n")
		    sys.exit(1)

		self.name = sdk2.replace("_", "-")



def replace_vars(text):
	global vs_target, s60_target, build_type, no_test, no_pjsua_test
	suffix = ""

        os_info = platform.system() + platform.release() + "-" + platform.machine()

	# osinfo
	s60sdk_var = None
	if build_type == "s60":
		s60sdk_var = S60SDK()
		os_info = s60sdk_var.name
	elif platform.system().lower() == "windows" or platform.system().lower() == "microsoft":
		if platform.system().lower() == "microsoft":
			os_info = platform.release() + "-" + platform.version() + "-" + platform.win32_ver()[2]
	elif platform.system().lower() == "linux":
                os_info =  "-" + "-".join(platform.linux_distribution()[0:2])

	# vs_target
	if not vs_target and text.find("$(VSTARGET)") >= 0:
		if build_type != "vs":
			sys.stderr.write("Warning: $(VSTARGET) only valid for Visual Studio\n")
		print "Enter Visual Studio vs_target name (e.g. Release, Debug) [Release]: ",
		vs_target = sys.stdin.readline().replace("\n", "").replace("\r", "")
		if not vs_target:
			vs_target = "Release"

	# s60_target
	if not s60_target and text.find("$(S60TARGET)") >= 0:
		if build_type != "s60":
			sys.stderr.write("Warning: $(S60TARGET) only valid for S60\n")
		print "Enter S60 target name (e.g. \"gcce urel\") [gcce urel]: ",
		s60_target = sys.stdin.readline().replace("\n", "").replace("\r", "")
		if not s60_target:
			s60_target = "gcce urel"
    
	# Suffix
	if build_type == "vs":
		suffix = "i386-Win32-vc8-" + vs_target
	elif build_type == "s60":
		suffix = s60sdk_var.name + "-" + s60_target.replace(" ", "-")
	elif build_type == "gnu":
		proc = subprocess.Popen("sh config.guess", cwd="../..",
					shell=True, stdout=subprocess.PIPE)
		suffix = proc.stdout.readline().rstrip(" \r\n")
	else:
		sys.stderr.write("Error: unsupported build type '" + build_type + "'\n")
		sys.exit(1)

        while True:
                if text.find("$(PJSUA-TESTS)") >= 0:
			if no_test==False and no_pjsua_test==False:
				# Determine pjsua exe to use
				exe = "../../pjsip-apps/bin/pjsua-" + suffix
				proc = subprocess.Popen(PYTHON + " runall.py --list-xml -e " + exe, 
							cwd="../pjsua",
							shell=True, stdout=subprocess.PIPE)
				content = proc.stdout.read()
			else:
				content = ""
                        text = text.replace("$(PJSUA-TESTS)", content)
                elif text.find("$(GCC)") >= 0:
                        text = text.replace("$(GCC)", gcc_version("gcc"))
                elif text.find("$(VS)") >= 0:
			vsver = VSVersion()
                        text = text.replace("$(VS)", VSVersion().vs_release)
                elif text.find("$(VSTARGET)") >= 0:
                        text = text.replace("$(VSTARGET)", vs_target)
                elif text.find("$(S60TARGET)") >= 0:
                        text = text.replace("$(S60TARGET)", s60_target)
                elif text.find("$(S60TARGETNAME)") >= 0:
                        text = text.replace("$(S60TARGETNAME)", s60_target.replace(" ", "-"))
                elif text.find("$(S60DEVICE)") >= 0:
                        text = text.replace("$(S60DEVICE)", s60sdk_var.device)
                elif text.find("$(EPOCROOT)") >= 0:
                        text = text.replace("$(EPOCROOT)", s60sdk_var.epocroot)
                elif text.find("$(DISABLED)") >= 0:
                        text = text.replace("$(DISABLED)", "0")
                elif text.find("$(IPPROOT)") >= 0:
                        if not os.environ.has_key("IPPROOT"):
                                sys.stderr.write("Error: environment variable IPPROOT is needed but not set\n")
                                sys.exit(1)
                        text = text.replace("$(IPPROOT)", os.environ["IPPROOT"])
                elif text.find("$(IPPSAMPLES)") >= 0:
                        if not os.environ.has_key("IPPSAMPLES"):
                                sys.stderr.write("Error: environment variable IPPSAMPLES is needed but not set\n")
                                sys.exit(1)
                        text = text.replace("$(IPPSAMPLES)", os.environ["IPPSAMPLES"])
                elif text.find("$(IPPARCH)") >= 0:
                        if not os.environ.has_key("IPPARCH"):
                                text = text.replace("$(IPPARCH)", "")
                        else:
                                text = text.replace("$(IPPARCH)", os.environ["IPPARCH"])
                elif text.find("$(OS)") >= 0:
                        text = text.replace("$(OS)", os_info)
                elif text.find("$(SUFFIX)") >= 0:
			text = text.replace("$(SUFFIX)", suffix)
                elif text.find("$(HOSTNAME)") >= 0:
                        text = text.replace("$(HOSTNAME)", socket.gethostname())
                elif text.find("$(PJDIR)") >= 0:
                        wdir = os.path.join(os.getcwd(), "../..")
                        wdir = os.path.normpath(wdir)
                        text = text.replace("$(PJDIR)", wdir)
                elif text.find("$(NOP)") >= 0:
			if platform.system().lower() == "windows" or platform.system().lower() == "microsoft":
				cmd = "CMD /C echo Success"
			else:
				cmd = "echo Success"
                        text = text.replace("$(NOP)", cmd)
                elif text.find("$(NOTEST)") >= 0:
			if no_test:
				str = '"1"'
			else:
				str = '"0"'
                        text = text.replace("$(NOTEST)", str)
                else:
                        break
        return text


def main(args):
	global vs_target, s60_target, build_type, no_test, no_pjsua_test
        output = sys.stdout
        usage = """Usage: configure.py [OPTIONS] scenario_template_file

Where OPTIONS:
  -o FILE               Output to file, otherwise to stdout.
  -t TYPE		Specify build type. If not specified, it will be
			asked if necessary. Values are: 
			    vs:    Visual Studio
			    gnu:   Makefile based
			    s60:   Symbian S60
  -vstarget TARGETNAME	Specify Visual Studio target name if build type is set
			to vs. If not specified then it will be asked.
			Sample target names:
			    - Debug
			    - Release
			    - or any other target in the project file
  -s60target TARGETNAME Specify S60 target name if build type is set to s60.
                        If not specified then it will be asked. Sample target
			names:
			    - "gcce udeb"
			    - "gcce urel"
  -notest               Disable all tests in the scenario.
  -nopjsuatest          Disable pjsua tests in the scenario.
"""

        args.pop(0)
	while len(args):
                if args[0]=='-o':
                        args.pop(0)
                        if len(args):
                                output = open(args[0], "wt")
                                args.pop(0)
                        else:
                                sys.stderr.write("Error: needs value for -o\n")
                                sys.exit(1)
		elif args[0]=='-vstarget':
			args.pop(0)
			if len(args):
				vs_target = args[0]
				args.pop(0)
			else:
				sys.stderr.write("Error: needs value for -vstarget\n")
				sys.exit(1)
		elif args[0]=='-s60target':
			args.pop(0)
			if len(args):
				s60_target = args[0]
				args.pop(0)
			else:
				sys.stderr.write("Error: needs value for -s60target\n")
				sys.exit(1)
		elif args[0]=='-t':
			args.pop(0)
			if len(args):
				build_type = args[0].lower()
				args.pop(0)
			else:
				sys.stderr.write("Error: needs value for -t\n")
				sys.exit(1)
			if not ["vs", "gnu", "s60"].count(build_type):
				sys.stderr.write("Error: invalid -t argument value\n")
				sys.exit(1)
		elif args[0]=='-notest' or args[0]=='-notests':
			args.pop(0)
			no_test = True
		elif args[0]=='-nopjsuatest' or args[0]=='-nopjsuatests':
			args.pop(0)
			no_pjsua_test = True
		else:
			break

        if len(args) != 1:
                sys.stderr.write(usage + "\n")
                return 1
        
	if not build_type:
	    defval = "vs"
	    if "SHELL" in os.environ:
		shell = os.environ["SHELL"]
		if shell.find("sh") > -1:
		    defval = "gnu"
	    print "Enter the build type (values: vs, gnu, s60) [%s]: " % (defval),
	    build_type = sys.stdin.readline().replace("\n", "").replace("\r", "")
	    if not build_type:
		   build_type = defval
		

        tpl_file = args[len(args)-1]
        if not os.path.isfile(tpl_file):
                print "Error: unable to find template file '%s'" % (tpl_file)
                return 1
                
        f = open(tpl_file, "r")
        tpl = f.read()
        f.close()
        
        tpl = replace_vars(tpl)
        output.write(tpl)
        if output != sys.stdout:
                output.close()
        return 0


if __name__ == "__main__":
    rc = main(sys.argv)
    sys.exit(rc)