To configure the files that a stream contains, you define the stream view (Stream dialog > Advanced tab > Paths: field). The view is composed of a set of paths to which you assign path types that control their behavior. Helix Server uses stream views to generate workspace viewsA set of mappings that specifies the correspondence between file locations in the depot and the client workspace. and branch viewsA specification of the branching relationship between two codelines in the depot. Each branch view has a unique name and defines how files are mapped from the originating codeline to the target codeline. This is the same as branch mapping. for you.
Mainline, development, and release streams are only visible in the depot tree pane if the stream is populated.
A task stream is only visible in the depot tree pane if that task stream is populated, has a workspace, and that workspace is the selected workspace.
Stream views use the following path types:
The following table shows the behavior of each path type at a glance:
Path type | Merge/Copy | Branch | Sync | Submit |
---|---|---|---|---|
share | Y | Y | Y | Y |
isolate | N | N | Y | Y |
import | N | N | Y | N |
import+ | N | N | Y | Y |
exclude | N | N | N | N |
The syntax for specifying stream paths is similar to Perforce depot path syntax, with the leading //depot name and stream name removed. For example:
Depot path: //Ace/main/qa/...
Stream view path: qa/...
If you want your stream to be able to merge, copy, branch, and submit edits to qa, you'd include a share path like this in the stream view:
share qa/...
Stream views do not allow positional specifiers (%%1) or overlay mapping (+).
Helix Server rejects leading wildcards. However, it accepts a single trailing asterisk (*). For example, if you use share *
in the Paths:
field in the stream spec, Helix Server accepts it and interprets it as a wildcard for the current directory.
To search for a specific string in the stream spec, click inside the Paths:
field and then press Ctrl+F. This opens the Find dialog.
Child streams inherit folder paths and behavioral rules from their parents. When we talk about inheritance between parents and children, it helps to think in the following terms:
Permissiveness: what actions (submit, sync, etc) are permitted on a path?
Path types are inherited from parent streams, and you cannot override the effects of the path types assigned by parent streams. In other words, child streams are always as permissive or less permissive than their parents, but never more permissive. For example, if a parent stream defines a path as isolate
, its child streams cannot redefine the path as share
to enable integrations.
Inclusiveness: what paths are included in the stream?
Since children cannot, by definition, be more inclusive than their parents, you cannot include a folder path in a child that is not also included its parent. That means, for example, that you cannot add an isolate
path to a child if the folders in that path are not also included in the parent. In the following example, the incorrectly defined Dev stream, which is a child of Main
, contains an isolate
path that will not work, because it includes folders that are not included in the parent. In order to isolate the config/ folder in the Dev stream, that folder has to be included as a share
or isolate
path in Main
:
Incorrect Correct Stream: //Acme/Main Stream: //Acme/Main Parent: none Parent: none Paths: share apps/... Paths: share apps/... share tests/... share tests/... share config/... Stream: //Acme/Dev Stream: //Acme/Dev Parent: //Acme/Main Parent: //Acme/Main Paths: share apps/... Paths: share apps/... share tests/... share tests/... isolate config/... isolate config/...
This section includes simple and more complex examples of stream usage.
Let's start with a simple case: two streams, //Ace/main
and its child, //Ace/dev
.
Stream: //Ace/main Parent: none Paths: share ... Stream: //Ace/dev Parent: //Ace/main Paths: share ...
In this case, the entire stream path is shared. When you switch your workspace to the //Ace/main stream, the workspace view looks like this:
//Ace/main/... //your_ws/...
The workspace view maps the root of the //Ace/main
stream to your workspace. When you switch your workspace to the //Ace/dev
stream, the workspace view is this:
//Ace/dev/... //your_ws/...
And the branch view for //Ace/dev/
looks like this:
//Ace/dev/... //Ace/main/...
In other words, the entire dev stream can be synced to workspaces, and the entire stream can be branched, merged, and copied.
Let's look at an example where software components are housed in three separate depots, // Acme, //Red, and //Tango.
The Acme mainline is configured like this:
Stream: //Acme/Main Parent: none Paths: share apps/... share tests/... import stuff/... //Red/R6.1/stuff/... import tools/... //Tango/tools/...
If you switch your workspace to the //Acme/Main
stream, this would be your workspace view:
//Acme/Main/apps/... //your_ws/apps/... //Acme/Main/tests/... //your_ws/tests/... //Red/R6.1/stuff/... //your_ws/stuff/... //Tango/tools/... //your_ws/tools/...
The stream's Paths field lists folders relative to the root of the stream. Those are the folders you
will get in your workspace, beneath your workspace root. The shared folders are mapped to
the //Acme/Main
path, and the imported paths are mapped to their locations in the //Red
and
//Tango
depots.
Let's say that your team doesn't want to do actual development in the mainline. In this example, the XProd feature team has a development stream of their own, defined like this:
Stream: //Acme/XProd Parent: //Acme/Main Paths: import ... isolate apps/bin/... share apps/xp/... exclude tests/...
Switching your workspace to the //Acme/XProd
stream gives you this view:
//Acme/Main/apps/... //your_ws/apps/... //Acme/XProd/apps/bin/... //your_ws/apps/bin/... //Acme/XProd/apps/xp/... //your_ws/apps/xp/... //Red/R6.1/stuff/... //your_ws/stuff/... //Tango/tools/... //your_ws/tools/... -//Acme/XProd/tests/... //your_ws/tests/...
Here we see stream view inheritance at work. Imported paths are mapped to whatever they're mapped to in the parent's client view. The shared and isolated paths are mapped to the child stream; these contain the files the XProd team are working on and will be submitting changes to. And the excluded path (marked with a minus sign in the view) doesn't appear in the workspace at all.
Because the //Acme/XProd
stream has a parent, it has a branch mapping that can be used by the copy and merge commands. That branch view consists of the following, with just one path shared by the child and parent (note that you must use P4, the Perforce Command Line Client, to view stream branch views):
-//Acme/XProd/apps/... //Acme/Main/apps/... -//Acme/XProd/apps/bin/... //Acme/Main/apps/bin/... //Acme/XProd/apps/xp/... //Acme/Main/apps/xp/... -//Acme/XProd/stuff/... //Acme/Main/stuff/... -//Acme/XProd/tests/... //Acme/Main/tests/... -//Acme/XProd/tools/... //Acme/Main/tools/...
When you work in an //Acme/XProd
workspace, it feels as if you're working in a full branch of //Acme/Main
, but the actual branch is quite small.
Let's suppose that Bob, for example, creates a child stream from //Acme/XProd
. His stream spec
looks like this:
Stream: //Acme/BobDev Parent: //Acme/XProd Paths: share ...
Bob's stream has the default view template. Given that Bob's entire stream path is set to "share," you might expect that his entire workspace will be mapped to his stream. But it is not, because inherited behaviors always take precedence; sharing applies only to paths that are shared in the parent as well. A workspace for Bob's stream, with its default view template, will have this client view:
//Acme/Main/apps/... //your_ws/apps/... -//Acme/BobDev/tests/... //your_ws/tests/... //Acme/BobDev/apps/bin/... //your_ws/apps/bin/... //Acme/BobDev/apps/xp/... //your_ws/apps/xp/... //Red/R6.1/stuff/... //your_ws/stuff/... //Tango/tools/... //your_ws/tools/...
A workspace in Bob's stream is the same as a workspace in the XProd stream, with one
exception: the paths available for submit are rooted in //Acme/BobDev
. This makes sense; if
you work in Bob's stream, you expect to submit changes to his stream.
By contrast, the branch view that maps the //Acme/BobDev
stream to its parent maps only the
path that is designated as shared in both streams:
-//Acme/Main/apps/... //XProd/apps/... -//Acme/BobDev/tests/... //XProd/tests/... -//Acme/BobDev/apps/bin/... //XProd/apps/bin/... //Acme/BobDev/apps/xp/... //your_ws/apps/xp/... -//Red/R6.1/stuff/... //XProd/stuff/... -//Tango/tools/... //XProd/tools/...
The default template allows Bob to branch his own versions of the paths his team is working on, and have a workspace with the identical view of nonbranched files that he would have in the parent stream.
Files can be remapped, which enables you to place them in a workspace location that differs
from their depot location. For example, the following view specifies that the parent's docs
files
reside beneath the doctools
path in workspaces defined for this stream.
Remapped:
Remapped: docs/... doctools/docs/...
You can specify a list of file or directory names to be ignored in workspace views, which is useful for ensuring that artifacts such as object files or other interim files are never checked in or integrated. These types are excluded by the workspace view of workspaces associated with the stream. For example:
Ignored: /tmp # ignores files named "tmp" /tmp/... # ignores directories named tmp .tmp # itnores file names ending in .tmp