#!/usr/bin/env perl $p4 = "p4 -Ztag -u arthur"; # Task: determine which client specs have the # option 'nocompress'set. # # status: tested on Win/NT using perl 5.6 # num of calls to 'p4': 1 # room for optimization/improvement: add getopts call # # Copyright 2004 Perforce Corporation, Inc. All rights reserved. require "ztag.pl"; #----------------------------------------------------------- # only call to P4: 'p4 clients' #----------------------------------------------------------- $client_tagged_cmd = "$p4 clients"; @ret = readinZtag($client_tagged_cmd); # Now, look through each client for the 'options' field, # and see what it's set to. foreach $c (@ret) { $options = $c->{'Options'}; $clientName = $c->{'client'}; if ($options =~ /nocompress/) { print "$clientName: *no* compression of data\n"; } else { print "$clientName: compression of data (default)\n"; } }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 4312 | Jeff Bowles |
Adding a number of example scripts that show how to get to Perforce data for a variety of scripting languages and variety of simple tasks. Note that Perl/Python/Ruby (and variants) are included, but shell/batch/DCL/applescript are not. (Am trying to stick with somewhat-portable approaches, to make comparisons easier.) Each program is written in the following languages/configurations: 1. Perl, calling "p4 -Ztag" for data 2. Perl, calling Tony Smith's "P4Perl" module 3. Python, calling "p4 -G" for data 4. Ruby, calling "p4 -R" for data 5. Ruby, calling Tony Smith's "P4Ruby" module The programs do the following: a. compare client specs to users (find old clients) b. compare two labels c. determine which client specs use compression. d. determine which files need to be "p4 add'ed." e. output list of 'opened' files, using local pathnames. |