vx-common 0.2.0.pre28
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +3 -0
- data/Gemfile +5 -0
- data/LICENSE.txt +276 -0
- data/Rakefile +12 -0
- data/lib/vx/common/amqp_setup.rb +41 -0
- data/lib/vx/common/env_file.rb +24 -0
- data/lib/vx/common/error_notifier.rb +32 -0
- data/lib/vx/common/helper/middlewares.rb +30 -0
- data/lib/vx/common/helper/shell.rb +83 -0
- data/lib/vx/common/helper/upload_sh_command.rb +22 -0
- data/lib/vx/common/output_buffer.rb +73 -0
- data/lib/vx/common/tagged_logging.rb +81 -0
- data/lib/vx/common/version.rb +5 -0
- data/lib/vx/common.rb +20 -0
- data/lib/vx/scm/git/git_ssh.rb +58 -0
- data/lib/vx/scm/git.rb +105 -0
- data/spec/lib/common/helper/middlewares_spec.rb +43 -0
- data/spec/lib/common/helper/shell_spec.rb +137 -0
- data/spec/lib/common/helper/upload_sh_command_spec.rb +39 -0
- data/spec/lib/common/output_buffer_spec.rb +42 -0
- data/spec/lib/scm/git_spec.rb +170 -0
- data/spec/spec_helper.rb +11 -0
- data/vx-common.gemspec +31 -0
- metadata +186 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: a5dd4334b8a22f8fb8a52fd8a352850b91b9c1b1
|
4
|
+
data.tar.gz: 29f94a208e9d39b7ed594f75388d204fae4d42dd
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: acf2a9fb9345c459cfb5fbffa536691b6a0990a4547eaf5dd3c86eb8d647fa5ae16b738c3663ef977e12fd06b98fa6f3ee6862ba0bfd9ff3cd91e5fe77ddfd83
|
7
|
+
data.tar.gz: f8ce58a67838ee63b6ee5e4ea10768f0fa2f7c22415b21f320ca440209e4762ebadfe2e979333c1e01fcab5c09b6c5c08228186187943be64719692123b5a755
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,276 @@
|
|
1
|
+
Copyright (c) 2013 Dmitry Galinsky
|
2
|
+
|
3
|
+
The GNU General Public License, Version 2, June 1991 (GPLv2)
|
4
|
+
============================================================
|
5
|
+
|
6
|
+
> Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
7
|
+
> 59 Temple Place, Suite 330
|
8
|
+
> Boston, MA 02111-1307 USA
|
9
|
+
|
10
|
+
Everyone is permitted to copy and distribute verbatim copies of this license
|
11
|
+
document, but changing it is not allowed.
|
12
|
+
|
13
|
+
|
14
|
+
Preamble
|
15
|
+
--------
|
16
|
+
|
17
|
+
The licenses for most software are designed to take away your freedom to share
|
18
|
+
and change it. By contrast, the GNU General Public License is intended to
|
19
|
+
guarantee your freedom to share and change free software--to make sure the
|
20
|
+
software is free for all its users. This General Public License applies to most
|
21
|
+
of the Free Software Foundation's software and to any other program whose
|
22
|
+
authors commit to using it. (Some other Free Software Foundation software is
|
23
|
+
covered by the GNU Library General Public License instead.) You can apply it to
|
24
|
+
your programs, too.
|
25
|
+
|
26
|
+
When we speak of free software, we are referring to freedom, not price. Our
|
27
|
+
General Public Licenses are designed to make sure that you have the freedom to
|
28
|
+
distribute copies of free software (and charge for this service if you wish),
|
29
|
+
that you receive source code or can get it if you want it, that you can change
|
30
|
+
the software or use pieces of it in new free programs; and that you know you can
|
31
|
+
do these things.
|
32
|
+
|
33
|
+
To protect your rights, we need to make restrictions that forbid anyone to deny
|
34
|
+
you these rights or to ask you to surrender the rights. These restrictions
|
35
|
+
translate to certain responsibilities for you if you distribute copies of the
|
36
|
+
software, or if you modify it.
|
37
|
+
|
38
|
+
For example, if you distribute copies of such a program, whether gratis or for a
|
39
|
+
fee, you must give the recipients all the rights that you have. You must make
|
40
|
+
sure that they, too, receive or can get the source code. And you must show them
|
41
|
+
these terms so they know their rights.
|
42
|
+
|
43
|
+
We protect your rights with two steps: (1) copyright the software, and (2) offer
|
44
|
+
you this license which gives you legal permission to copy, distribute and/or
|
45
|
+
modify the software.
|
46
|
+
|
47
|
+
Also, for each author's protection and ours, we want to make certain that
|
48
|
+
everyone understands that there is no warranty for this free software. If the
|
49
|
+
software is modified by someone else and passed on, we want its recipients to
|
50
|
+
know that what they have is not the original, so that any problems introduced by
|
51
|
+
others will not reflect on the original authors' reputations.
|
52
|
+
|
53
|
+
Finally, any free program is threatened constantly by software patents. We wish
|
54
|
+
to avoid the danger that redistributors of a free program will individually
|
55
|
+
obtain patent licenses, in effect making the program proprietary. To prevent
|
56
|
+
this, we have made it clear that any patent must be licensed for everyone's free
|
57
|
+
use or not licensed at all.
|
58
|
+
|
59
|
+
The precise terms and conditions for copying, distribution and modification
|
60
|
+
follow.
|
61
|
+
|
62
|
+
|
63
|
+
Terms And Conditions For Copying, Distribution And Modification
|
64
|
+
---------------------------------------------------------------
|
65
|
+
0. This License applies to any program or other work which contains a notice
|
66
|
+
placed by the copyright holder saying it may be distributed under the terms
|
67
|
+
of this General Public License. The "Program", below, refers to any such
|
68
|
+
program or work, and a "work based on the Program" means either the Program
|
69
|
+
or any derivative work under copyright law: that is to say, a work
|
70
|
+
containing the Program or a portion of it, either verbatim or with
|
71
|
+
modifications and/or translated into another language. (Hereinafter,
|
72
|
+
translation is included without limitation in the term "modification".)
|
73
|
+
Each licensee is addressed as "you".
|
74
|
+
|
75
|
+
Activities other than copying, distribution and modification are not
|
76
|
+
covered by this License; they are outside its scope. The act of running the
|
77
|
+
Program is not restricted, and the output from the Program is covered only
|
78
|
+
if its contents constitute a work based on the Program (independent of
|
79
|
+
having been made by running the Program). Whether that is true depends on
|
80
|
+
what the Program does.
|
81
|
+
|
82
|
+
1. You may copy and distribute verbatim copies of the Program's source code as
|
83
|
+
you receive it, in any medium, provided that you conspicuously and
|
84
|
+
appropriately publish on each copy an appropriate copyright notice and
|
85
|
+
disclaimer of warranty; keep intact all the notices that refer to this
|
86
|
+
License and to the absence of any warranty; and give any other recipients
|
87
|
+
of the Program a copy of this License along with the Program.
|
88
|
+
|
89
|
+
You may charge a fee for the physical act of transferring a copy, and you
|
90
|
+
may at your option offer warranty protection in exchange for a fee.
|
91
|
+
|
92
|
+
2. You may modify your copy or copies of the Program or any portion of it,
|
93
|
+
thus forming a work based on the Program, and copy and distribute such
|
94
|
+
modifications or work under the terms of Section 1 above, provided that you
|
95
|
+
also meet all of these conditions:
|
96
|
+
|
97
|
+
a) You must cause the modified files to carry prominent notices stating
|
98
|
+
that you changed the files and the date of any change.
|
99
|
+
|
100
|
+
b) You must cause any work that you distribute or publish, that in whole
|
101
|
+
or in part contains or is derived from the Program or any part thereof,
|
102
|
+
to be licensed as a whole at no charge to all third parties under the
|
103
|
+
terms of this License.
|
104
|
+
|
105
|
+
c) If the modified program normally reads commands interactively when run,
|
106
|
+
you must cause it, when started running for such interactive use in the
|
107
|
+
most ordinary way, to print or display an announcement including an
|
108
|
+
appropriate copyright notice and a notice that there is no warranty (or
|
109
|
+
else, saying that you provide a warranty) and that users may
|
110
|
+
redistribute the program under these conditions, and telling the user
|
111
|
+
how to view a copy of this License. (Exception: if the Program itself
|
112
|
+
is interactive but does not normally print such an announcement, your
|
113
|
+
work based on the Program is not required to print an announcement.)
|
114
|
+
|
115
|
+
These requirements apply to the modified work as a whole. If identifiable
|
116
|
+
sections of that work are not derived from the Program, and can be
|
117
|
+
reasonably considered independent and separate works in themselves, then
|
118
|
+
this License, and its terms, do not apply to those sections when you
|
119
|
+
distribute them as separate works. But when you distribute the same
|
120
|
+
sections as part of a whole which is a work based on the Program, the
|
121
|
+
distribution of the whole must be on the terms of this License, whose
|
122
|
+
permissions for other licensees extend to the entire whole, and thus to
|
123
|
+
each and every part regardless of who wrote it.
|
124
|
+
|
125
|
+
Thus, it is not the intent of this section to claim rights or contest your
|
126
|
+
rights to work written entirely by you; rather, the intent is to exercise
|
127
|
+
the right to control the distribution of derivative or collective works
|
128
|
+
based on the Program.
|
129
|
+
|
130
|
+
In addition, mere aggregation of another work not based on the Program with
|
131
|
+
the Program (or with a work based on the Program) on a volume of a storage
|
132
|
+
or distribution medium does not bring the other work under the scope of
|
133
|
+
this License.
|
134
|
+
|
135
|
+
3. You may copy and distribute the Program (or a work based on it, under
|
136
|
+
Section 2) in object code or executable form under the terms of Sections 1
|
137
|
+
and 2 above provided that you also do one of the following:
|
138
|
+
|
139
|
+
a) Accompany it with the complete corresponding machine-readable source
|
140
|
+
code, which must be distributed under the terms of Sections 1 and 2
|
141
|
+
above on a medium customarily used for software interchange; or,
|
142
|
+
|
143
|
+
b) Accompany it with a written offer, valid for at least three years, to
|
144
|
+
give any third party, for a charge no more than your cost of physically
|
145
|
+
performing source distribution, a complete machine-readable copy of the
|
146
|
+
corresponding source code, to be distributed under the terms of
|
147
|
+
Sections 1 and 2 above on a medium customarily used for software
|
148
|
+
interchange; or,
|
149
|
+
|
150
|
+
c) Accompany it with the information you received as to the offer to
|
151
|
+
distribute corresponding source code. (This alternative is allowed only
|
152
|
+
for noncommercial distribution and only if you received the program in
|
153
|
+
object code or executable form with such an offer, in accord with
|
154
|
+
Subsection b above.)
|
155
|
+
|
156
|
+
The source code for a work means the preferred form of the work for making
|
157
|
+
modifications to it. For an executable work, complete source code means all
|
158
|
+
the source code for all modules it contains, plus any associated interface
|
159
|
+
definition files, plus the scripts used to control compilation and
|
160
|
+
installation of the executable. However, as a special exception, the source
|
161
|
+
code distributed need not include anything that is normally distributed (in
|
162
|
+
either source or binary form) with the major components (compiler, kernel,
|
163
|
+
and so on) of the operating system on which the executable runs, unless
|
164
|
+
that component itself accompanies the executable.
|
165
|
+
|
166
|
+
If distribution of executable or object code is made by offering access to
|
167
|
+
copy from a designated place, then offering equivalent access to copy the
|
168
|
+
source code from the same place counts as distribution of the source code,
|
169
|
+
even though third parties are not compelled to copy the source along with
|
170
|
+
the object code.
|
171
|
+
|
172
|
+
4. You may not copy, modify, sublicense, or distribute the Program except as
|
173
|
+
expressly provided under this License. Any attempt otherwise to copy,
|
174
|
+
modify, sublicense or distribute the Program is void, and will
|
175
|
+
automatically terminate your rights under this License. However, parties
|
176
|
+
who have received copies, or rights, from you under this License will not
|
177
|
+
have their licenses terminated so long as such parties remain in full
|
178
|
+
compliance.
|
179
|
+
|
180
|
+
5. You are not required to accept this License, since you have not signed it.
|
181
|
+
However, nothing else grants you permission to modify or distribute the
|
182
|
+
Program or its derivative works. These actions are prohibited by law if you
|
183
|
+
do not accept this License. Therefore, by modifying or distributing the
|
184
|
+
Program (or any work based on the Program), you indicate your acceptance of
|
185
|
+
this License to do so, and all its terms and conditions for copying,
|
186
|
+
distributing or modifying the Program or works based on it.
|
187
|
+
|
188
|
+
6. Each time you redistribute the Program (or any work based on the Program),
|
189
|
+
the recipient automatically receives a license from the original licensor
|
190
|
+
to copy, distribute or modify the Program subject to these terms and
|
191
|
+
conditions. You may not impose any further restrictions on the recipients'
|
192
|
+
exercise of the rights granted herein. You are not responsible for
|
193
|
+
enforcing compliance by third parties to this License.
|
194
|
+
|
195
|
+
7. If, as a consequence of a court judgment or allegation of patent
|
196
|
+
infringement or for any other reason (not limited to patent issues),
|
197
|
+
conditions are imposed on you (whether by court order, agreement or
|
198
|
+
otherwise) that contradict the conditions of this License, they do not
|
199
|
+
excuse you from the conditions of this License. If you cannot distribute so
|
200
|
+
as to satisfy simultaneously your obligations under this License and any
|
201
|
+
other pertinent obligations, then as a consequence you may not distribute
|
202
|
+
the Program at all. For example, if a patent license would not permit
|
203
|
+
royalty-free redistribution of the Program by all those who receive copies
|
204
|
+
directly or indirectly through you, then the only way you could satisfy
|
205
|
+
both it and this License would be to refrain entirely from distribution of
|
206
|
+
the Program.
|
207
|
+
|
208
|
+
If any portion of this section is held invalid or unenforceable under any
|
209
|
+
particular circumstance, the balance of the section is intended to apply
|
210
|
+
and the section as a whole is intended to apply in other circumstances.
|
211
|
+
|
212
|
+
It is not the purpose of this section to induce you to infringe any patents
|
213
|
+
or other property right claims or to contest validity of any such claims;
|
214
|
+
this section has the sole purpose of protecting the integrity of the free
|
215
|
+
software distribution system, which is implemented by public license
|
216
|
+
practices. Many people have made generous contributions to the wide range
|
217
|
+
of software distributed through that system in reliance on consistent
|
218
|
+
application of that system; it is up to the author/donor to decide if he or
|
219
|
+
she is willing to distribute software through any other system and a
|
220
|
+
licensee cannot impose that choice.
|
221
|
+
|
222
|
+
This section is intended to make thoroughly clear what is believed to be a
|
223
|
+
consequence of the rest of this License.
|
224
|
+
|
225
|
+
8. If the distribution and/or use of the Program is restricted in certain
|
226
|
+
countries either by patents or by copyrighted interfaces, the original
|
227
|
+
copyright holder who places the Program under this License may add an
|
228
|
+
explicit geographical distribution limitation excluding those countries, so
|
229
|
+
that distribution is permitted only in or among countries not thus excluded.
|
230
|
+
In such case, this License incorporates the limitation as if written in
|
231
|
+
the body of this License.
|
232
|
+
|
233
|
+
9. The Free Software Foundation may publish revised and/or new versions of the
|
234
|
+
General Public License from time to time. Such new versions will be similar
|
235
|
+
in spirit to the present version, but may differ in detail to address new
|
236
|
+
problems or concerns.
|
237
|
+
|
238
|
+
Each version is given a distinguishing version number. If the Program
|
239
|
+
specifies a version number of this License which applies to it and "any
|
240
|
+
later version", you have the option of following the terms and conditions
|
241
|
+
either of that version or of any later version published by the Free
|
242
|
+
Software Foundation. If the Program does not specify a version number of
|
243
|
+
this License, you may choose any version ever published by the Free
|
244
|
+
Software Foundation.
|
245
|
+
|
246
|
+
10. If you wish to incorporate parts of the Program into other free programs
|
247
|
+
whose distribution conditions are different, write to the author to ask for
|
248
|
+
permission. For software which is copyrighted by the Free Software
|
249
|
+
Foundation, write to the Free Software Foundation; we sometimes make
|
250
|
+
exceptions for this. Our decision will be guided by the two goals of
|
251
|
+
preserving the free status of all derivatives of our free software and of
|
252
|
+
promoting the sharing and reuse of software generally.
|
253
|
+
|
254
|
+
|
255
|
+
No Warranty
|
256
|
+
-----------
|
257
|
+
|
258
|
+
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
|
259
|
+
THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
260
|
+
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
261
|
+
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
262
|
+
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
263
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO
|
264
|
+
THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM
|
265
|
+
PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
|
266
|
+
CORRECTION.
|
267
|
+
|
268
|
+
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
|
269
|
+
ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE
|
270
|
+
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
271
|
+
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
272
|
+
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
273
|
+
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
274
|
+
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
275
|
+
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
276
|
+
SUCH DAMAGES.
|
data/Rakefile
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'bundler'
|
3
|
+
Bundler.require
|
4
|
+
require "bundler/gem_tasks"
|
5
|
+
require 'rspec/core/rake_task'
|
6
|
+
|
7
|
+
RSpec::Core::RakeTask.new(:spec)
|
8
|
+
|
9
|
+
task :default => [:spec]
|
10
|
+
task :travis do
|
11
|
+
exec "bundle exec rake SPEC_OPTS='--format documentation --order=rand'"
|
12
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
require 'vx/common/amqp'
|
2
|
+
require 'vx/common/error_notifier'
|
3
|
+
|
4
|
+
module Vx
|
5
|
+
module Common
|
6
|
+
|
7
|
+
module AMQP
|
8
|
+
extend self
|
9
|
+
|
10
|
+
def setup(logger, options = {})
|
11
|
+
Vx::Common::AMQP.configure do |c|
|
12
|
+
|
13
|
+
c.before_subscribe do |e|
|
14
|
+
logger.warn "[#{e[:name]}] subsribing #{e[:exchange].name}"
|
15
|
+
end
|
16
|
+
|
17
|
+
c.after_subscribe do |e|
|
18
|
+
logger.warn "[#{e[:name]}] shutdown"
|
19
|
+
end
|
20
|
+
|
21
|
+
c.before_recieve do |e|
|
22
|
+
logger.warn "[#{e[:name]}] payload recieved #{e[:payload].inspect[0..60]}"
|
23
|
+
end
|
24
|
+
|
25
|
+
c.after_recieve do |e|
|
26
|
+
logger.warn "[#{e[:name]}] commit message"
|
27
|
+
end
|
28
|
+
|
29
|
+
c.on_error do |e|
|
30
|
+
Vx::Common::ErrorNotifier.notify(e)
|
31
|
+
end
|
32
|
+
|
33
|
+
c.content_type = 'application/x-protobuf'
|
34
|
+
c.logger = nil
|
35
|
+
c.url = options[:url]
|
36
|
+
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
module Vx
|
2
|
+
module Common
|
3
|
+
module EnvFile
|
4
|
+
|
5
|
+
def read_env_file(file = nil)
|
6
|
+
file ||= '/etc/vexor/ci'
|
7
|
+
file = File.expand_path(file)
|
8
|
+
|
9
|
+
if File.readable?(file)
|
10
|
+
buf = File.read(file)
|
11
|
+
|
12
|
+
buf.split("\n").each do |line|
|
13
|
+
next if line.strip.empty?
|
14
|
+
|
15
|
+
env, value = line.split("=").map(&:strip)
|
16
|
+
::ENV[env] = value
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'airbrake'
|
2
|
+
|
3
|
+
module Vx
|
4
|
+
module Common
|
5
|
+
|
6
|
+
class ErrorNotifier
|
7
|
+
|
8
|
+
class << self
|
9
|
+
def notify(error)
|
10
|
+
if setup
|
11
|
+
::Airbrake.notify(error)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def setup
|
16
|
+
@configured ||= begin
|
17
|
+
return false unless ENV['AIRBRAKE_API_KEY']
|
18
|
+
|
19
|
+
::Airbrake.configure do |config|
|
20
|
+
config.api_key = ENV['AIRBRAKE_API_KEY']
|
21
|
+
config.host = ENV['AIRBRAKE_HOST']
|
22
|
+
config.port = ENV['AIRBRAKE_PORT'] || 80
|
23
|
+
config.secure = config.port == 443
|
24
|
+
end
|
25
|
+
true
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'vx/common/rack/builder'
|
2
|
+
|
3
|
+
module Vx
|
4
|
+
module Common
|
5
|
+
module Helper
|
6
|
+
module Middlewares
|
7
|
+
|
8
|
+
def self.included(base)
|
9
|
+
base.send :extend, ClassMethods
|
10
|
+
end
|
11
|
+
|
12
|
+
def run_middlewares(*args, &block)
|
13
|
+
self.class.builder.to_app(block).call(*args)
|
14
|
+
end
|
15
|
+
private :run_middlewares
|
16
|
+
|
17
|
+
module ClassMethods
|
18
|
+
|
19
|
+
attr_reader :builder
|
20
|
+
|
21
|
+
def middlewares(&block)
|
22
|
+
@builder = Vx::Common::Rack::Builder.new(&block)
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,83 @@
|
|
1
|
+
require 'pathname'
|
2
|
+
require 'fileutils'
|
3
|
+
require 'tempfile'
|
4
|
+
require 'shellwords'
|
5
|
+
|
6
|
+
require 'vx/common/spawn'
|
7
|
+
|
8
|
+
module Vx
|
9
|
+
module Common
|
10
|
+
module Helper
|
11
|
+
|
12
|
+
module Shell
|
13
|
+
|
14
|
+
private
|
15
|
+
|
16
|
+
include Vx::Common::Spawn
|
17
|
+
|
18
|
+
def path(name)
|
19
|
+
Pathname.new(name)
|
20
|
+
end
|
21
|
+
|
22
|
+
def mkdir(name)
|
23
|
+
FileUtils.mkdir_p name.to_s
|
24
|
+
end
|
25
|
+
|
26
|
+
def rm(name)
|
27
|
+
FileUtils.rm_rf name.to_s
|
28
|
+
end
|
29
|
+
|
30
|
+
def recreate(name)
|
31
|
+
rm name
|
32
|
+
mkdir name
|
33
|
+
end
|
34
|
+
|
35
|
+
def write_file(name, content, perm = 0644)
|
36
|
+
File.open(name, 'w', perm) do |io|
|
37
|
+
io.write content
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
def write_tmp_file(name, content, perm = 0600)
|
42
|
+
tmp = ::Tempfile.new name
|
43
|
+
tmp.write content
|
44
|
+
tmp.rewind
|
45
|
+
tmp.flush
|
46
|
+
tmp.close
|
47
|
+
FileUtils.chmod perm, tmp.path
|
48
|
+
tmp
|
49
|
+
end
|
50
|
+
|
51
|
+
def read_file(name)
|
52
|
+
if File.readable?(name)
|
53
|
+
File.read name
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def expand_path(path)
|
58
|
+
File.expand_path path.to_s
|
59
|
+
end
|
60
|
+
|
61
|
+
def bash(*args, &block)
|
62
|
+
raise ArgumentError, 'block required' unless block_given?
|
63
|
+
|
64
|
+
options = args.last.is_a?(Hash) ? args.pop : {}
|
65
|
+
command = args.first
|
66
|
+
|
67
|
+
cmd = "/usr/bin/env -i HOME=${HOME} bash"
|
68
|
+
|
69
|
+
if file = options.delete(:file)
|
70
|
+
cmd << " #{file}"
|
71
|
+
else
|
72
|
+
cmd << " -c " << Shellwords.escape(command)
|
73
|
+
end
|
74
|
+
|
75
|
+
runner = options.delete(:ssh) || self
|
76
|
+
runner.send(:spawn, cmd, options, &block)
|
77
|
+
end
|
78
|
+
|
79
|
+
end
|
80
|
+
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'base64'
|
2
|
+
|
3
|
+
module Vx
|
4
|
+
module Common
|
5
|
+
module Helper
|
6
|
+
module UploadShCommand
|
7
|
+
|
8
|
+
def upload_sh_command(path, content, options = {})
|
9
|
+
encoded = ::Base64.encode64(content).gsub("\n", '')
|
10
|
+
"(echo #{encoded} | #{upload_sh_base64_command options}) > #{path}"
|
11
|
+
end
|
12
|
+
|
13
|
+
private
|
14
|
+
|
15
|
+
def upload_sh_base64_command(options)
|
16
|
+
%{base64 --decode}
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,73 @@
|
|
1
|
+
require 'thread'
|
2
|
+
|
3
|
+
module Vx
|
4
|
+
module Common
|
5
|
+
class OutputBuffer
|
6
|
+
|
7
|
+
attr_reader :interval
|
8
|
+
|
9
|
+
def initialize(interval = 1, &block)
|
10
|
+
@interval = interval.to_f
|
11
|
+
@buffer = ""
|
12
|
+
@write = block
|
13
|
+
@mutex = Mutex.new
|
14
|
+
@closed = false
|
15
|
+
|
16
|
+
start_watching
|
17
|
+
end
|
18
|
+
|
19
|
+
def << (str)
|
20
|
+
closed!
|
21
|
+
|
22
|
+
@mutex.synchronize do
|
23
|
+
@buffer << str
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
def close
|
28
|
+
@closed = true
|
29
|
+
@thread.join
|
30
|
+
end
|
31
|
+
|
32
|
+
def flush
|
33
|
+
closed!
|
34
|
+
@mutex.synchronize { write }
|
35
|
+
end
|
36
|
+
|
37
|
+
def empty?
|
38
|
+
@buffer.size == 0
|
39
|
+
end
|
40
|
+
|
41
|
+
class ClosedBuffer < Exception ; end
|
42
|
+
|
43
|
+
private
|
44
|
+
|
45
|
+
def write
|
46
|
+
unless empty?
|
47
|
+
@write.call @buffer.dup
|
48
|
+
@buffer.clear
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
def closed!
|
53
|
+
raise ClosedBuffer if @closed
|
54
|
+
end
|
55
|
+
|
56
|
+
def start_watching
|
57
|
+
@thread = Thread.new do
|
58
|
+
loop do
|
59
|
+
sleep interval
|
60
|
+
|
61
|
+
unless empty?
|
62
|
+
@mutex.synchronize { write }
|
63
|
+
end
|
64
|
+
|
65
|
+
break if @closed
|
66
|
+
end
|
67
|
+
end
|
68
|
+
@thread.abort_on_exception = true
|
69
|
+
end
|
70
|
+
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|