home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / Vyzkuste / gs / gs650w32.exe / gs6.50 / lib / gs_setpd.ps < prev    next >
Text File  |  2000-12-05  |  24KB  |  765 lines

  1. %    Copyright (C) 1994, 2000 Aladdin Enterprises.  All rights reserved.
  2. % This file is part of AFPL Ghostscript.
  3. % AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author or
  4. % distributor accepts any responsibility for the consequences of using it, or
  5. % for whether it serves any particular purpose or works at all, unless he or
  6. % she says so in writing.  Refer to the Aladdin Free Public License (the
  7. % "License") for full details.
  8. % Every copy of AFPL Ghostscript must include a copy of the License, normally
  9. % in a plain ASCII text file named PUBLIC.  The License grants you the right
  10. % to copy, modify and redistribute AFPL Ghostscript, but only under certain
  11. % conditions described in the License.  Among other things, the License
  12. % requires that the copyright notice and this notice be preserved on all
  13. % copies.
  14.  
  15. % $Id: gs_setpd.ps,v 1.5.2.2 2000/11/09 18:54:57 rayjj Exp $
  16. % The current implementation of setpagedevice has the following limitations:
  17. %    - It doesn't attempt to "interact with the user" for Policy = 2.
  18.  
  19. languagelevel 1 .setlanguagelevel
  20. level2dict begin
  21.  
  22. % ---------------- Redefinitions ---------------- %
  23.  
  24. % Redefine .beginpage and .endpage so that they call BeginPage and
  25. % EndPage respectively if appropriate.
  26.  
  27. % We have to guard against the BeginPage procedure not popping its operand.
  28. % This is really stupid, but the Genoa CET does it.
  29. /.beginpage {        % - .beginpage -
  30.   .currentshowpagecount {
  31.     .currentpagedevice pop
  32.     dup null ne { /BeginPage .knownget } { pop false } ifelse {
  33.         % Stack: ... pagecount proc
  34.        count 2 .execn
  35.         % Stack: ... ..???.. oldcount
  36.        count 1 add exch sub { pop } repeat
  37.     } {
  38.       pop
  39.     } ifelse
  40.   } if
  41. } bind odef
  42.  
  43. % Guard similarly against EndPage not popping its operand.
  44. /.endpage {        % <reason> .endpage <print_bool>
  45.   .currentshowpagecount {
  46.     1 index .currentpagedevice pop
  47.     dup null ne { /EndPage .knownget } { pop false } ifelse {
  48.         % Stack: ... reason pagecount reason proc
  49.       count 2 .execn
  50.         % Stack: ... ..???.. print oldcount
  51.       count 2 add exch sub { exch pop } repeat
  52.     } {
  53.       pop pop 2 ne
  54.     } ifelse
  55.   } {
  56.     2 ne
  57.   } ifelse
  58. } bind odef
  59.  
  60. % Define interpreter callouts for handling gstate-saving operators,
  61. % to make sure that they create a page device dictionary for use by
  62. % the corresponding gstate-restoring operator.
  63. % We'd really like to avoid the cost of doing this, but we don't see how.
  64. % The names %gsavepagedevice, %savepagedevice, %gstatepagedevice,
  65. % %copygstatepagedevice, and %currentgstatepagedevice are known to the
  66. % interpreter.
  67.  
  68. (%gsavepagedevice) cvn
  69.  { currentpagedevice pop gsave
  70.  } bind def
  71.  
  72. (%savepagedevice) cvn
  73.  { currentpagedevice pop save
  74.  } bind def
  75.  
  76. (%gstatepagedevice) cvn
  77.  { currentpagedevice pop gstate
  78.  } bind def
  79.  
  80. (%copygstatepagedevice) cvn
  81.  { currentpagedevice pop copy
  82.  } bind def
  83.  
  84. (%currentgstatepagedevice) cvn
  85.  { currentpagedevice pop currentgstate
  86.  } bind def
  87.  
  88. % Define interpreter callouts for handling gstate-restoring operators
  89. % when the current page device needs to be changed.
  90. % The names %grestorepagedevice, %grestoreallpagedevice,
  91. % %restorepagedevice, and %setgstatepagedevice are known to the interpreter.
  92.  
  93. /.installpagedevice
  94.  {    % Since setpagedevice doesn't create new device objects,
  95.     % we must (carefully) reinstall the old parameters in
  96.     % the same device.
  97.    .currentpagedevice pop null currentdevice null .trysetparams
  98.    dup type /booleantype eq
  99.     { pop pop }
  100.     {        % This should never happen!
  101.       DEBUG { (Error in .trysetparams!) = pstack flush } if
  102.       cleartomark pop pop pop
  103.       /.installpagedevice cvx /rangecheck signalerror
  104.     }
  105.    ifelse pop pop
  106.     % A careful reading of the Red Book reveals that an erasepage
  107.     % should occur, but *not* an initgraphics.
  108.    erasepage .beginpage
  109.  } bind def
  110.  
  111. /.uninstallpagedevice
  112.  { 2 .endpage { .currentnumcopies false .outputpage } if
  113.    nulldevice
  114.  } bind def
  115.  
  116. (%grestorepagedevice) cvn
  117.  { .uninstallpagedevice grestore .installpagedevice
  118.  } bind def
  119.  
  120. (%grestoreallpagedevice) cvn
  121.  { .uninstallpagedevice grestore .installpagedevice grestoreall
  122.  } bind def
  123.  
  124. (%restorepagedevice) cvn
  125.  { .uninstallpagedevice grestore .installpagedevice restore
  126.  } bind def
  127.  
  128. (%setgstatepagedevice) cvn
  129.  { .uninstallpagedevice setgstate .installpagedevice
  130.  } bind def
  131.  
  132. % Redefine .currentnumcopies so it consults the NumCopies device parameter.
  133. /.numcopiesdict mark
  134.   /NumCopies dup
  135. .dicttomark readonly def
  136.  
  137. /.currentnumcopies
  138.  { currentdevice //.numcopiesdict .getdeviceparams
  139.    dup type /integertype eq
  140.     { exch pop exch pop }
  141.     { cleartomark #copies }
  142.    ifelse
  143.  } bind odef
  144.  
  145. % Redefine .currentpagedevice and .setpagedevice so they convert between
  146. % null and a fixed empty directionary.
  147. /.nullpagedevice 0 dict readonly def
  148. /.currentpagedevice {
  149.   //.currentpagedevice exch dup null eq { pop //.nullpagedevice } if exch
  150. } bind odef
  151. /.setpagedevice {
  152.   dup //.nullpagedevice eq { pop null } if //.setpagedevice
  153. } bind odef
  154.  
  155. % ---------------- Auxiliary definitions ---------------- %
  156.  
  157. % Define the required attributes of all page devices, and their default values.
  158. % We don't include attributes such as .MediaSize, which all devices
  159. % are guaranteed to supply on their own.
  160. /.defaultpolicies mark
  161.   /PolicyNotFound 1
  162.   /PageSize 0
  163.   /PolicyReport {pop} bind
  164. .dicttomark readonly def
  165. % Note that the values of .requiredattrs are executed, not just fetched.
  166. /.requiredattrs mark
  167.   /PageDeviceName null
  168.   /PageOffset [0 0] readonly
  169. % We define InputAttributes and OutputAttributes with a single
  170. % dummy media type that handles pages of any size.
  171. % Devices that care will override this.
  172.   /InputAttributes {
  173.     mark 0
  174.     % Since sizes match within 5 user units, we need to set the smallest
  175.     % PageSize to 6 units so that [0 0] will fail.
  176.     mark /PageSize [6 dup 16#7ffff dup] .dicttomark
  177.     .dicttomark
  178.   }
  179.   (%MediaSource) 0
  180.   /OutputAttributes {
  181.     mark 0 mark .dicttomark readonly .dicttomark
  182.   }
  183.   (%MediaDestination) 0
  184.   /Install {{.callinstall}} bind
  185.   /BeginPage {{.callbeginpage}} bind
  186.   /EndPage {{.callendpage}} bind
  187.   /Policies .defaultpolicies
  188. .dicttomark readonly def
  189.  
  190. % Define currentpagedevice so it creates the dictionary on demand if needed,
  191. % adding all the required entries defined just above.
  192. % We have to deal specially with entries that the driver may change
  193. % on its own.
  194. /.dynamicppkeys mark
  195.   /.MediaSize dup        % because it changes when PageSize is set
  196.   /PageCount dup
  197. .dicttomark readonly def
  198. /.makecurrentpagedevice {    % - .makecurrentpagedevice <dict>
  199.   currentdevice null .getdeviceparams
  200.     % Make the dictionary large enough to add defaulted entries.
  201.   counttomark 2 idiv .requiredattrs length add dict
  202.   counttomark 2 idiv { dup 4 2 roll put } repeat exch pop
  203.     % Add any missing required attributes.
  204.     % Make a writable and (if possible) local copy of any default
  205.     % dictionaries, to work around a bug in the output of WordPerfect,
  206.     % which assumes that these dictionaries are writable and local.
  207.   .currentglobal exch dup gcheck .setglobal
  208.   .requiredattrs {
  209.     2 index 2 index known {
  210.       pop pop
  211.     } {
  212.       exec 2 index 3 1 roll put
  213.     } ifelse
  214.   } forall exch .setglobal
  215.   dup .setpagedevice
  216. } bind def
  217. /currentpagedevice {
  218.   .currentpagedevice {
  219.     dup length 0 eq {
  220.       pop .makecurrentpagedevice
  221.     } {
  222.         % If any of the dynamic keys have changed,
  223.         % we must update the page device dictionary.
  224.       currentdevice //.dynamicppkeys .getdeviceparams .dicttomark {
  225.         % Stack: current key value
  226.         2 index 2 index .knownget { 1 index ne } { true } ifelse
  227.          { 2 index wcheck not
  228.         {    % This is the first entry being updated.
  229.             % Copy the dictionary to make it writable.
  230.           3 -1 roll dup length dict .copydict
  231.           3 1 roll
  232.         }
  233.            if
  234.            2 index 3 1 roll put
  235.          }
  236.          { pop pop
  237.          }
  238.         ifelse
  239.       } forall
  240.         % If the dictionary was global and is now local, copy
  241.         % any global subsidiary dictionaries to local VM.  This
  242.         % too is to work around the Word Perfect bug (see above).
  243.       dup gcheck not {
  244.     dup {
  245.       dup type /dicttype eq { dup gcheck } { false } ifelse {
  246.         % Copy-on-write, see above.
  247.         2 index wcheck not {
  248.           3 -1 roll dup length dict .copydict
  249.           3 1 roll
  250.         } if
  251.         .copytree 2 index 3 1 roll put
  252.       } {
  253.         pop pop
  254.       } ifelse
  255.     } forall
  256.       } if
  257.         % We would like to do a .setpagedevice so we don't keep
  258.         % re-creating the dictionary.  Unfortunately, the effect
  259.         % of this is that if any dynamic key changes (PageCount
  260.         % in particular), we will do the equivalent of a
  261.         % setpagedevice at the next restore or grestore.
  262.         % Therefore, we make the dictionary read-only, but
  263.         % we don't store it away.  I.e., NOT:
  264.         % dup wcheck { .setpagedevice .currentpagedevice pop } if
  265.       readonly
  266.     } ifelse
  267.   } if
  268. } bind odef
  269.  
  270. % Copy a dictionary recursively.
  271. /.copytree {    % <dict> .copytree <dict'>
  272.   dup length dict exch {
  273.     dup type /dicttype eq { .copytree } if 2 index 3 1 roll put
  274.   } forall
  275. } bind def
  276.  
  277. % The implementation of setpagedevice is quite complex.  Currently,
  278. % everything but the media matching algorithm is implemented here.
  279.  
  280. % By default, we only present the requested changes to the device,
  281. % but there are some parameters that require special merging action.
  282. % Define those parameters here, with the procedures that do the merging.
  283. % The procedures are called as follows:
  284. %    <merged> <key> <new_value> -proc- <merged> <key> <new_value'>
  285. /.mergespecial mark
  286.   /InputAttributes
  287.    { dup null eq
  288.       { pop null
  289.       }
  290.       { 3 copy pop .knownget
  291.      { dup null eq
  292.         { pop dup length dict }
  293.         { dup length 2 index length add dict .copydict }
  294.        ifelse
  295.      }
  296.      { dup length dict
  297.      }
  298.         ifelse .copydict readonly
  299.       }
  300.      ifelse
  301.    } bind
  302.   /OutputAttributes 1 index
  303.   /Policies
  304.     { 3 copy pop .knownget
  305.        { dup length 2 index length add dict .copydict }
  306.        { dup length dict }
  307.       ifelse copy readonly
  308.     } bind
  309. .dicttomark readonly def
  310.  
  311. % Define the keys used in input attribute matching.
  312. /.inputattrkeys [
  313.   /PageSize /MediaColor /MediaWeight /MediaType /InsertSheet
  314.     % The following are documented in Adobe's supplement for v2017.
  315.   /LeadingEdge /MediaClass
  316. ] readonly def
  317. % Define other keys used in media selection.
  318. /.inputselectionkeys [
  319.   /MediaPosition /Orientation
  320. ] readonly def
  321.  
  322. % Define the keys used in output attribute matching.
  323. /.outputattrkeys [
  324.   /OutputType
  325. ] readonly def
  326.  
  327. % Define all the parameters that should always be copied to the merged
  328. % dictionary.
  329. /.copiedkeys [
  330.   /OutputDevice
  331.   .mergespecial { pop } forall
  332.   .inputattrkeys aload pop
  333.   .inputselectionkeys aload pop
  334.   .outputattrkeys aload pop
  335. ] readonly def
  336.  
  337. % Define the parameters that should not be presented to the device.
  338. % The procedures are called as follows:
  339. %    <merged> <key> <value> -proc-
  340. % The procedure leaves all its operands on the stack and returns
  341. % true iff the key/value pair should be presented to .putdeviceparams.
  342. /.presentspecial mark
  343.   .dynamicppkeys { pop false } forall
  344.             % We must ignore an explicit request for .MediaSize,
  345.             % because media matching always handles this.
  346.   /.MediaSize false
  347.   /Name false
  348.   /OutputDevice false
  349.   /PageDeviceName false
  350.   /PageOffset false
  351.   /PageSize false        % obsolete alias for .MediaSize
  352.   /InputAttributes false
  353.   .inputattrkeys
  354.     { dup /PageSize eq
  355.        { pop }
  356.        { { 2 index /InputAttributes .knownget { null eq } { true } ifelse } }
  357.       ifelse
  358.     }
  359.   forall
  360.   .inputselectionkeys { false } forall
  361.   /OutputAttributes false
  362.   .outputattrkeys
  363.     { { 2 index /OutputAttributes .knownget { null eq } { true } ifelse } }
  364.   forall
  365.   /Install false
  366.   /BeginPage false
  367.   /EndPage false
  368.   /Policies false
  369.     % Our extensions:
  370.   /HWColorMap
  371.     {            % HACK: don't transmit the color map, because
  372.             % window systems can change the color map on their own
  373.             % incrementally.  Someday we'll have a better
  374.             % solution for this....
  375.       false
  376.     }
  377.   /ViewerPreProcess false
  378. .dicttomark readonly def
  379.  
  380. % Define access to device defaults.
  381. /.defaultdeviceparams
  382.  { finddevice null .getdeviceparams
  383.  } bind def
  384.  
  385. % Select media (input or output).  The hard work is done in an operator:
  386. %    <pagedict> <attrdict> <policydict> <keys> .matchmedia <key> true
  387. %    <pagedict> <attrdict> <policydict> <keys> .matchmedia false
  388. %    <pagedict> null <policydict> <keys> .matchmedia null true
  389. /.selectmedia        % <orig> <request> <merged> <failed>     <-- retained
  390.             %   <attrdict> <policydict> <attrkeys> <mediakey>
  391.             %   .selectmedia
  392.  { 5 index 5 -2 roll 4 index .matchmedia
  393.         % Stack: orig request merged failed attrkeys mediakey
  394.         %   (key true | false)
  395.     { 4 index 3 1 roll put pop
  396.     }
  397.     {    % Adobe's implementations have a "big hairy heuristic"
  398.     % to choose the set of keys to report as having failed the match.
  399.     % For the moment, we report any keys that are in the request
  400.     % and don't have the same value as in the original dictionary.
  401.       5 index 1 index .knownget
  402.        { 4 index 3 1 roll put }
  403.        { 3 index exch .undef }
  404.       ifelse
  405.        {    % Stack: <orig> <request> <merged> <failed> <attrkey>
  406.      3 index 1 index .knownget
  407.       { 5 index 2 index .knownget { ne } { pop true } ifelse }
  408.       { true }
  409.      ifelse        % Stack: ... <failed> <attrkey> <report>
  410.       { 2 copy /rangecheck put }
  411.      if pop
  412.        }
  413.       forall
  414.     }
  415.    ifelse
  416.  } bind def
  417.  
  418. % Apply Policies to any unprocessed failed requests.
  419. % As we process each request entry, we replace the error name
  420. % in the <failed> dictionary with the policy value,
  421. % and we replace the key in the <merged> dictionary with its prior value
  422. % (or remove it if it had no prior value).
  423. /.policyprocs mark
  424. % These procedures are called with the following on the stack:
  425. %   <orig> <merged> <failed> <Policies> <key> <policy>
  426. % They are expected to consume the top 2 operands.
  427. % NOTE: we currently treat all values other than 0, 1, or 7 (for PageSize)
  428. % the same as 0, i.e., we signal an error.
  429.   0 {        % Set errorinfo and signal a configurationerror.
  430.     pop dup 4 index exch get 2 array astore
  431.     $error /errorinfo 3 -1 roll put
  432.     cleartomark
  433.     /setpagedevice load /configurationerror signalerror
  434.   } bind
  435.   1 {        % Roll back the failed request to its previous status.
  436. DEBUG { (Rolling back.) = pstack flush } if
  437.     3 index 2 index 3 -1 roll put
  438.     4 index 1 index .knownget
  439.      { 4 index 3 1 roll put }
  440.      { 3 index exch .undef }
  441.     ifelse
  442.   } bind
  443.   7 {        % For PageSize only, just impose the request.
  444.     1 index /PageSize eq
  445.      { pop pop 1 index /PageSize 7 put }
  446.      { .policyprocs 0 get exec }
  447.     ifelse
  448.   } bind
  449. .dicttomark readonly def
  450. /.applypolicies        % <orig> <merged> <failed> .applypolicies
  451.             %   <orig> <merged'> <failed'>
  452.  { 1 index /Policies get 1 index
  453.     { type /integertype eq
  454.        { pop        % already processed
  455.        }
  456.        { 2 copy .knownget not { 1 index /PolicyNotFound get } if
  457.             % Stack: <orig> <merged> <failed> <Policies> <key>
  458.             %   <policy>
  459.      .policyprocs 1 index .knownget not { .policyprocs 0 get } if exec
  460.        }
  461.       ifelse
  462.     }
  463.    forall pop
  464.  } bind def
  465.  
  466. % Prepare to present parameters to the device, by spreading them onto the
  467. % operand stack and removing any that shouldn't be presented.
  468. /.prepareparams        % <params> .prepareparams -mark- <key1> <value1> ...
  469.  { mark exch dup
  470.     {            % Stack: -mark- key1 value1 ... merged key value
  471.       .presentspecial 2 index .knownget
  472.        { exec { 3 -1 roll } { pop pop } ifelse }
  473.        { 3 -1 roll }
  474.       ifelse
  475.     }
  476.    forall pop
  477.  } bind def
  478.  
  479. % Put device parameters without resetting currentpagedevice.
  480. % (.putdeviceparams clears the current page device.)
  481. /.putdeviceparamsonly    % <device> <Policies|null> <require_all> -mark-
  482.             %   <key1> <value1> ... .putdeviceparamsonly
  483.             % On success: <device> <eraseflag>
  484.             % On failure: <device> <Policies|null> <req_all> -mark-
  485.             %   <key1> <error1> ...
  486.  { .currentpagedevice
  487.     { counttomark 4 add 1 roll .putdeviceparams
  488.       dup type /booleantype eq { 3 } { counttomark 5 add } ifelse -1 roll
  489.       .setpagedevice
  490.     }
  491.     { pop .putdeviceparams
  492.     }
  493.    ifelse
  494.  } bind def
  495.  
  496. % Try setting the device parameters from the merged request.
  497. /.trysetparams        % <merged> <(ignored)> <device> <Policies>
  498.             %   .trysetparams
  499.  { true 4 index .prepareparams
  500.             % Add the computed .MediaSize.
  501.             % Stack: merged (ignored) device Policies -true-
  502.             %   -mark- key1 value1 ...
  503.    counttomark 5 add index .computemediasize
  504.    exch pop exch pop /.MediaSize exch
  505. DEBUG { (Putting.) = pstack flush } if
  506.    .putdeviceparamsonly
  507. DEBUG { (Result of putting.) = pstack flush } if
  508.  } bind def
  509.  
  510. % Compute the media size and initial matrix from a merged request (after
  511. % media selection).
  512. /.computemediasize    % <request> .computemediasize
  513.             %   <request> <matrix> <[width height]>
  514.  { dup /PageSize get                    % requested page size
  515.    1 index /InputAttributes get
  516.      2 index (%MediaSource) get get /PageSize get    % media size
  517.                             % (may be a range)
  518.    2 index /Policies get
  519.      dup /PageSize .knownget
  520.       { exch pop } { /PolicyNotFound get } ifelse    % PageSize policy,
  521.                             % affects scaling
  522.    3 index /Orientation .knownget not { null } if
  523.    4 index /RollFedMedia .knownget not { false } if
  524.    matrix .matchpagesize not {
  525.         % This is a "can't happen" condition!
  526.      /setpagedevice load /rangecheck signalerror
  527.    } if
  528.    2 array astore
  529.  } bind def
  530.  
  531. % ---------------- setpagedevice itself ---------------- %
  532.  
  533. /setpagedevice
  534.  {        % We mustn't pop the argument until the very end,
  535.         % so that the pseudo-operator machinery can restore the stack
  536.         % if an error occurs.
  537.    mark 1 index currentpagedevice
  538.  
  539.         % Check whether we are changing OutputDevice;
  540.         % also handle the case where the current device
  541.         % is not a page device.
  542.         % Stack: mark <request> <current>
  543. DEBUG { (Checking.) = pstack flush } if
  544.  
  545.    dup /OutputDevice .knownget
  546.     {        % Current device is a page device.
  547.       2 index /OutputDevice .knownget
  548.        {    % A specific OutputDevice was requested.
  549.      2 copy eq
  550.       { pop pop null }
  551.       { exch pop }
  552.      ifelse
  553.        }
  554.        { pop null
  555.        }
  556.       ifelse
  557.     }
  558.     {        % Current device is not a page device.
  559.         % Use the default device.
  560.       1 index /OutputDevice .knownget not { .defaultdevicename } if
  561.     }
  562.    ifelse
  563.    dup null eq
  564.     { pop
  565.     }
  566.     { exch pop .defaultdeviceparams
  567.         % In case of duplicate keys, .dicttomark takes the entry
  568.         % lower on the stack, so we can just append the defaults here.
  569.       .requiredattrs { exec } forall .dicttomark
  570.     }
  571.    ifelse
  572.  
  573.         % Check whether a viewer wants to intervene.
  574.         % We must check both the request (which takes precedence)
  575.         % and the current dictionary.
  576.         % Stack: mark <request> <orig>
  577.    exch dup /ViewerPreProcess .knownget
  578.     { exec }
  579.     { 1 index /ViewerPreProcess .knownget { exec } if }
  580.    ifelse exch
  581.  
  582.         % Construct a merged request from the actual request plus
  583.         % any keys that should always be propagated.
  584.         % Stack: mark <request> <orig>
  585. DEBUG { (Merging.) = pstack flush } if
  586.  
  587.    exch 1 index length 1 index length add dict
  588.    .copiedkeys
  589.     {        % Stack: <orig> <request> <merged> <key>
  590.       3 index 1 index .knownget { 3 copy put pop } if pop
  591.     }
  592.    forall
  593.         % Stack: <orig> <request> <merged>
  594.    dup 2 index
  595.     {        % stack: <orig> <request> <merged> <merged> <rkey> <rvalue>
  596.       .mergespecial 2 index .knownget { exec } if
  597.       put dup
  598.     }
  599.    forall pop
  600.         % Hack: if FIXEDRESOLUTION is true, discard any attempt to
  601.         % change HWResolution.
  602.    FIXEDRESOLUTION { dup /HWResolution .undef } if
  603.         % Hack: if FIXEDMEDIA is true, discard any attempt to change
  604.         % PageSize or HWSize.
  605.    FIXEDMEDIA
  606.     { dup /PageSize 4 index /PageSize get put
  607.       dup /HWSize 4 index /HWSize get put
  608.     } if
  609.         % Hack: to work around some files that take a PageSize
  610.         % from InputAttributes and impose it, discard any attempt
  611.         % to set PageSize to a 4-element value.
  612.         % Stack: mark <orig> <request> <merged>
  613.     dup /PageSize .knownget {
  614.       length 2 ne {
  615.     dup /PageSize 4 index /PageSize get put
  616.       } if
  617.     } if
  618.  
  619.         % Select input and output media.
  620.         % Stack: mark <orig> <request> <merged>
  621. DEBUG { (Selecting.) = pstack flush } if
  622.  
  623.    0 dict    % <failed>
  624.    1 index /InputAttributes .knownget
  625.     { 2 index /Policies get
  626.       .inputattrkeys (%MediaSource) cvn .selectmedia
  627.     } if
  628.    1 index /OutputAttributes .knownget
  629.     { 2 index /Policies get
  630.       .outputattrkeys (%MediaDestination) cvn .selectmedia
  631.      } if
  632.    3 -1 roll 4 1 roll        % temporarily swap orig & request
  633.    .applypolicies
  634.    3 -1 roll 4 1 roll        % swap back
  635.  
  636.         % Construct the new device, and attempt to set its attributes.
  637.         % Stack: mark <orig> <request> <merged> <failed>
  638. DEBUG { (Constructing.) = pstack flush } if
  639.  
  640.    currentdevice .devicename 2 index /OutputDevice get eq
  641.     { currentdevice }
  642.     { 1 index /OutputDevice get finddevice }
  643.    ifelse
  644.         %**************** We should copy the device here,
  645.         %**************** but since we can't close the old device,
  646.         %**************** we don't.  This is WRONG.
  647.     %****************copydevice
  648.    2 index /Policies get
  649.    .trysetparams
  650.    dup type /booleantype ne
  651.     {        % The request failed.
  652.         % Stack: ... <orig> <request> <merged> <failed> <device>
  653.         %   <Policies> true mark <name> <errorname> ...
  654. DEBUG { (Recovering.) = pstack flush } if
  655.       counttomark 4 add index
  656.       counttomark 2 idiv { dup 4 -2 roll put } repeat
  657.       pop pop pop
  658.         % Stack: mark ... <orig> <request> <merged> <failed> <device>
  659.         %   <Policies>
  660.       6 2 roll 3 -1 roll 4 1 roll
  661.       .applypolicies
  662.       3 -1 roll 4 1 roll 6 -2 roll
  663.       .trysetparams        % shouldn't fail!
  664.       dup type /booleantype ne
  665.        { 2 { counttomark 1 add 1 roll cleartomark } repeat
  666.          /setpagedevice load exch signalerror
  667.        }
  668.       if
  669.     }
  670.    if
  671.  
  672.         % The attempt succeeded.  Install the new device.
  673.         % Stack: mark ... <merged> <failed> <device> <eraseflag>
  674. DEBUG { (Installing.) = pstack flush } if
  675.  
  676.    pop 2 .endpage
  677.     { 1 true .outputpage
  678.       (>>setpagedevice, press <return> to continue<<\n) .confirm
  679.     }
  680.    if
  681.         % .setdevice clears the current page device!
  682.    .currentpagedevice pop exch
  683.    .setdevice pop
  684.    .setpagedevice
  685.  
  686.         % Merge the request into the current page device,
  687.         % unless we're changing the OutputDevice.
  688.         % Stack: mark ... <merged> <failed>
  689.    exch currentpagedevice dup length 2 index length add dict
  690.         % Stack: mark ... <failed> <merged> <current> <newdict>
  691.    2 index /OutputDevice .knownget {
  692.      2 index /OutputDevice .knownget not { null } if eq
  693.    } {
  694.      true
  695.    } ifelse {
  696.         % Same OutputDevice, merge the dictionaries.
  697.      .copydict
  698.    } {
  699.         % Different OutputDevice, discard the old dictionary.
  700.      exch pop
  701.    } ifelse .copydict
  702.         % Initialize the default matrix, taking media matching
  703.         % into account.
  704.    .computemediasize pop initmatrix concat
  705.    dup /PageOffset .knownget
  706.     {        % Translate by the given number of 1/72" units in device X/Y.
  707.       dup 0 get exch 1 get
  708.       2 index /HWResolution get dup 1 get exch 0 get
  709.       4 -1 roll mul 72 div   3 1 roll mul 72 div
  710.       idtransform translate
  711.     }
  712.    if
  713.         % We must install the new page device dictionary
  714.         % before calling the Install procedure.
  715.   dup .setpagedevice
  716.   .setdefaultscreen    % Set the default screen before calling Install.
  717.   dup /Install .knownget {
  718.     { .execinstall } stopped { .postinstall stop } { .postinstall } ifelse
  719.   } {
  720.     .postinstall
  721.   } ifelse
  722. } odef
  723.  
  724. % We break out the code after calling the Install procedure into a
  725. % separate procedure, since it is executed even if Install causes an error.
  726. % By making .execinstall a separate operator procedure, we get the stacks
  727. % restored if it fails.
  728.  
  729. /.execinstall {        % <proc> .execinstall -
  730.     % Because the interpreter optimizes tail calls, we can't just let
  731.     % the body of this procedure be 'exec', because that would lose
  732.     % the stack protection that is the whole reason for having the
  733.     % procedure in the first place.  We hack this by adding a couple
  734.     % of extra tokens to ensure that the operator procedure is still
  735.     % on the stack during the exec.
  736.   exec
  737.   0 pop    % See above.
  738. } odef
  739. /.postinstall {        % mark ... <failed> <merged> .postinstall -
  740.    matrix currentmatrix .setdefaultmatrix
  741.         % Erase and initialize the page.
  742.    erasepage initgraphics
  743.    .beginpage
  744.  
  745.         % Clean up, calling PolicyReport if needed.
  746.         % Stack: mark ... <failed> <merged>
  747. DEBUG { (Finishing.) = pstack flush } if
  748.  
  749.    exch dup length 0 ne
  750.     { 1 index /Policies get /PolicyReport get
  751.       counttomark 1 add 2 roll cleartomark
  752.       exec
  753.     }
  754.     { cleartomark
  755.     }
  756.    ifelse pop
  757.  
  758. } odef
  759.  
  760. end                % level2dict
  761. .setlanguagelevel
  762.