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
|
require 'rake'
require 'fileutils'
require 'rake/clean'
require 'google_code'
PROJECT="sip"
SRC_DIR=File.expand_path("..")
DOCS_DIR=File.expand_path("../Docs")
VERSION_FILE="#{DOCS_DIR}/#{PROJECT}_version.txt"
TYPES=[ 'ansi', 'unicode' ]
SETUP_VC='C:\Program Files\Microsoft Visual Studio 9.0\Common7\Tools\vsvars32.bat'
VC="devenv"
version=nil
def cp_relative(file, base, target)
file = File.expand_path(file)
base = File.expand_path(base)
raise "Wrong file/base : #{file} / #base" unless file.slice(0, base.length) == base
relative = file.slice(base.length, file.length - base.length)
target = File.expand_path(File.join(target, relative))
target_dir = File.dirname(target)
makedirs target_dir unless File.exists?(target_dir)
cp file, target
end
task :get_version do
File.open(VERSION_FILE, "r") do |file|
while (line = file.gets)
version = (line.match(/\d+\.\d+\.\d+\.\d+/) || [])[0]
break if version
end
end
raise "Could not read version file" unless VERSION
puts "Building version #{version} of #{PROJECT}"
end
# Build ##############################################################################
SOLUTION="#{PROJECT}.sln"
CONFIG=[ "Release", "Unicode Release" ]
BUILD_RESULT_DIR=[ "../Release", "../Unicode_Release" ]
DLL=[ "../../../bin/Release/Plugins/#{PROJECT}.dll", "../../../bin/Release Unicode/Plugins/#{PROJECT}W.dll" ]
PDB=[ "#{BUILD_RESULT_DIR[0]}/#{PROJECT}.pdb", "#{BUILD_RESULT_DIR[1]}/#{PROJECT}W.pdb" ]
(0..1).each do |i|
type = TYPES[i]
build = "build_#{type}".to_s
desc "Build #{type} project"
task build do
chdir(SRC_DIR) do
sh "#{VC} #{SOLUTION} /Build \"#{CONFIG[i]}\"" do |ok, status|
ok or fail "Failed to compile #{type} dll (#{status.exitstatus})"
end
end
end
task :build => build
CLEAN.include(File.join(BUILD_RESULT_DIR[i], '/**/*'))
CLOBBER.include(DLL[i])
end
# Source zip #########################################################################
SRC_FILES = FileList[ \
"#{SRC_DIR}/*.cpp", \
"#{SRC_DIR}/*.h", \
"#{SRC_DIR}/*.rc", \
"#{SRC_DIR}/*.sln", \
"#{SRC_DIR}/*.vcproj", \
"#{SRC_DIR}/*.dsp", \
"#{SRC_DIR}/*.dsw", \
"#{SRC_DIR}/lib/**/*.h", \
"#{SRC_DIR}/sdk/**/*.h" \
]
SRC_ZIP="#{PROJECT}_src"
SRC_ZIP_FOLDER='zip_src'
task :clean_package_src do
rmtree SRC_ZIP_FOLDER
end
task :clean => :clean_package_src
desc "Create source package"
task :package_src => :get_version do
rmtree SRC_ZIP_FOLDER
mkdir SRC_ZIP_FOLDER
SRC_FILES.each do |file|
cp_relative(file, SRC_DIR, SRC_ZIP_FOLDER)
end
zip = "#{SRC_ZIP}.#{version}.zip"
rm zip, :force => true
chdir(SRC_ZIP_FOLDER) do
sh "../zip -r -q ../#{zip} *"
end
rmtree SRC_ZIP_FOLDER
end
task :package => :package_src
CLOBBER.include("#{SRC_ZIP}.*.zip")
# Dll zips ###########################################################################
ZIP_FOLDERS=['zip_ansi', 'zip_unicode']
ZIPS=[ "#{PROJECT}", "#{PROJECT}W" ]
(0..1).each do |i|
type = TYPES[i]
clean = "clean_package_#{type}".to_s
package = "package_#{type}".to_s
task clean do
rmtree ZIP_FOLDERS[i]
rmtree ZIP_FOLDERS[i] + '_pdb'
end
task :clean => clean
desc "Create #{type} package"
task package => [ clean, :get_version, "build_#{type}".to_s ] do
rmtree ZIP_FOLDERS[i]
mkdir ZIP_FOLDERS[i]
target_dir = File.join(ZIP_FOLDERS[i], 'Docs')
docs = FileList["#{DOCS_DIR}/*"]
docs.exclude(VERSION_FILE)
docs.each do |file|
cp_relative(file, DOCS_DIR, target_dir)
end
target_dir = File.join(ZIP_FOLDERS[i], 'Plugins')
makedirs target_dir
cp DLL[i], target_dir
zip = "#{ZIPS[i]}.#{version}.zip"
rm zip, :force => true
chdir(ZIP_FOLDERS[i]) do
sh "../zip -r -q ../#{zip} *"
end
rmtree ZIP_FOLDERS[i]
rmtree ZIP_FOLDERS[i] + '_pdb'
target_dir = ZIP_FOLDERS[i] + '_pdb/Plugins'
makedirs target_dir
cp PDB[i], target_dir
chdir(ZIP_FOLDERS[i] + '_pdb') do
sh "../zip -r -q ../#{ZIPS[i]}.pdb.#{version}.zip *"
end
rmtree ZIP_FOLDERS[i] + '_pdb'
end
task :package => package
CLOBBER.include("#{ZIPS[i]}.pdb.*.zip")
CLOBBER.include("#{ZIPS[i]}.*.zip")
end
# Rebuild ############################################################################
desc "Rebuild all #{PROJECT} versions"
task :rebuild => [ :clobber, :build ]
desc "Build all #{PROJECT} versions"
task :build
# Upload #############################################################################
desc "Rebuild and upload files"
task :upload => [ :rebuild, :pack ]
def empty?(str)
return true unless str
return str.strip.length > 0
end
desc "Upload to googlecode"
task :upload_googlecode => [ :build, :pack ] do
project = nil
username = nil
password = nil
if File.exists?("googlecode.passwd")
File.open("googlecode.passwd", "r") do |file|
project,username,password = file.gets.split(':')
end
end
if empty?(project)
puts "Project name: "
project = gets.chomp
end
if empty?(username)
puts "Username: "
username = gets.chomp
end
if empty?(password)
puts "Password: "
password = gets.chomp
end
raise "Invalid googlecode data" if empty?(project) || empty?(username) || empty?(password)
puts project + ' ' + username + ' ' + password
end
task :upload => :upload_googlecode
|