summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPaul Allen <pallen@perforce.com>2014-06-24 13:57:30 +0100
committerPaul Allen <pallen@perforce.com>2014-06-24 13:57:30 +0100
commite1aa644dd075c275dd22d85cdc03c88dda029d87 (patch)
treeb4c1a055758bce7e019da8c152d9825c048d185e /lib
parent457035ec1c15df0d53abf7232dad63b2722b1720 (diff)
Support streams and fix Marshal for 'p4 cstat'
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/provider/vcsrepo/p4.rb76
1 files changed, 64 insertions, 12 deletions
diff --git a/lib/puppet/provider/vcsrepo/p4.rb b/lib/puppet/provider/vcsrepo/p4.rb
index 612cc56..da9c953 100644
--- a/lib/puppet/provider/vcsrepo/p4.rb
+++ b/lib/puppet/provider/vcsrepo/p4.rb
@@ -7,7 +7,7 @@ Puppet::Type.type(:vcsrepo).provide(:p4, :parent => Puppet::Provider::Vcsrepo) d
def create
# create or update client
- create_client(client_name, @resource.value(:path))
+ create_client(client_name)
# if source provided, sync client
source = @resource.value(:source)
@@ -63,13 +63,19 @@ Puppet::Type.type(:vcsrepo).provide(:p4, :parent => Puppet::Provider::Vcsrepo) d
def revision
args = ['cstat']
args.push(@resource.value(:source))
- hash = p4(args)
+ hash = p4(args, {:marshal => false})
+ hash = marshal_cstat(hash)
- if hash['status'] == "have"
- return hash['change'].to_i
- else
- return 0
+ revision = 0
+ if hash && hash['code'] != 'error'
+ hash['data'].each do |c|
+ if c['status'] == 'have'
+ change = c['change'].to_i
+ revision = change if change > revision
+ end
+ end
end
+ return revision
end
def revision=(desired)
@@ -93,7 +99,7 @@ Puppet::Type.type(:vcsrepo).provide(:p4, :parent => Puppet::Provider::Vcsrepo) d
Puppet.debug "Syncing: #{source}"
args = ['sync']
if revision
- args.push(source + "@" + revision)
+ args.push(source + "@#{revision}")
else
args.push(source)
end
@@ -127,11 +133,29 @@ Puppet::Type.type(:vcsrepo).provide(:p4, :parent => Puppet::Provider::Vcsrepo) d
# Params:
# +client+:: Name of client workspace
# +path+:: The Root location of the Perforce client workspace
- def create_client(client, path)
+ def create_client(client)
Puppet.debug "Creating client: #{client}"
+
+ # fetch client spec
hash = parse_client(client)
- hash['Root'] = path
+ hash['Root'] = @resource.value(:path)
hash['Description'] = "Generated by Puppet VCSrepo"
+
+ # check is source is a Stream
+ source = @resource.value(:source)
+ if source
+ parts = source.split(/\//)
+ if parts && parts.length >= 4
+ source = "//" + parts[2] + "/" + parts[3]
+ streams = p4(['streams', source], {:raise => false})
+ if streams['code'] == "stat"
+ hash['Stream'] = streams['Stream']
+ notice "Streams" + streams['Stream'].inspect
+ end
+ end
+ end
+
+ # save client spec
save_client(hash)
end
@@ -212,9 +236,11 @@ Puppet::Type.type(:vcsrepo).provide(:p4, :parent => Puppet::Provider::Vcsrepo) d
end
# Raise errors, Perforce or Exec
- if(opts[:raise])
- p4_err = "P4: " + hash['data'] if(hash['code'] == 'error')
- raise Puppet::DevError, "#{p4_err}\n#{e.read}\nExit: #{t.value}" if(t.value != 0)
+ if(opts[:raise] && !e.eof && t.value != 0)
+ raise Puppet::Error, "\nP4: #{e.read}"
+ end
+ if(opts[:raise] && hash['code'] == 'error' && t.value != 0)
+ raise Puppet::Error, "\nP4: #{hash['data']}"
end
end
@@ -222,4 +248,30 @@ Puppet::Type.type(:vcsrepo).provide(:p4, :parent => Puppet::Provider::Vcsrepo) d
return hash
end
+ # helper method as cstat does not Marshal
+ def marshal_cstat(hash)
+ data = hash['data']
+ code = 'error'
+
+ list = Array.new
+ change = Hash.new
+ data.each_line do |l|
+ p = /^\.\.\. (.*) (.*)$/
+ m = p.match(l)
+ if m
+ change[m[1]] = m[2]
+ if m[1] == 'status'
+ code = 'stat'
+ list.push change
+ change = Hash.new
+ end
+ end
+ end
+
+ hash = Hash.new
+ hash.store 'code', code
+ hash.store 'data', list
+ return hash
+ end
+
end