Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

p4python: get diff2 form depot

I want to retrieve output of the next command (where p4 is standard perforce client):

p4 diff2 //depot/...#1 //depot/...#2

In terminal it is producing something like this:

==== //depot/bin/build.sh#1 (xtext) - //depot/bin/build.sh#2 (xtext) ==== content
1a2
> #added something 2
9c10
< fi---
> fi
==== //depot/bin/README#1 - <none> ===
==== //depot/bin/status_ok#1 - <none> ===

Let's assume that I have next script in python:

from P4 import P4
p4 = P4()
p4.port = "1818"
p4.host = "localhost"
p4.user = "psih"
p4.client = "build_verificator_ws2"
p4.connect()
changes = p4.run_diff2("//depot/...#1", "//depot/...#2")
print changes
p4.disconnect()

After execution python script I will receive something like that:

[{'status': 'content', 'depotFile2': '//depot/bin/build.sh', 'rev': '1', 'rev2': '2', 'type': 'xtext', 'depotFile': '//depot/bin/build.sh', 'type2': 'xtext'}, {'status': 'left only', 'type': 'text', 'rev': '1', 'depotFile': '//depot/bin/README'}, {'status': 'left only', 'type': 'text', 'rev': '1', 'depotFile': '//depot/bin/status_ok'}]

List of files in depot with revisions but no diffs.

Any suggestions?

like image 208
Anton Koval' Avatar asked Nov 28 '25 05:11

Anton Koval'


1 Answers

The answer is in using a non-tagged response:

changes = p4.run_diff2("//depot/...#1", "//depot/...#2", tagged=False)
like image 136
Anton Koval' Avatar answered Dec 01 '25 13:12

Anton Koval'



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!