917. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/3/2017 11:16:05 AM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

917.1 Files compared

# Location File Last Modified
1 ehmp.zip\ehmp\ehmp\product\production\vx-sync\tools\rpc rpc-operational-subscribe.js Mon Jul 10 17:46:22 2017 UTC
2 ehmp.zip\ehmp\ehmp\product\production\vx-sync\tools\rpc rpc-operational-subscribe.js Tue Oct 3 13:37:19 2017 UTC

917.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 142
Changed 2 8
Inserted 0 0
Removed 0 0

917.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

917.4 Active regular expressions

No regular expressions were active.

917.5 Comparison detail

  1   'use stric t';
  2  
  3   require('. ./../env-s etup');
  4   var inspec t = requir e('util'). inspect;
  5   var rpcUti l = requir e(global.V X_UTILS +  '/rpc-util ');
  6  
  7   var argv =  require(' yargs')
  8           .u sage('Usag e: $0 [opt ions...]')
  9           .d emand(['ho st', 'port '])
  10           .d escribe('h ost', 'IP  Address of  the VistA  host')
  11           .d escribe('p ort', 'Por t of the V istA host' )
  12           .d escribe('a ccessCode' , 'Value t o use for  accessCode  for valid ation. Def aults to  REDACTED ')
  13           .d escribe('v erifyCode' , 'Value t o use for  verifyCode  for valid ation. Def aults to  REDACTED ')
  14           .n args('acce ssCode', 1 )
  15           .n args('veri fyCode', 1 )
  16           .d escribe('l ocalIP', ' Value to u se for the  localIP p arameter i n the RPC  call. Defa ults to 12 7.0.0.1')
  17           .d escribe('l ocalAddres s', 'Value  to use fo r the loca lAddress p arameter i n the RPC  call. Defa ults to lo calhost')
  18           .d escribe('c onnectTime out', 'Val ue in mill iseconds t o use for  the connec tTimeout p arameter i n the RPC  call. Defa ults to 30 00')
  19           .d escribe('s endTimeout ', 'Value  in millise conds to u se for the  sendTimeo ut paramet er in the  RPC call.  Defaults t o 10000')
  20           .d escribe('c ontext', ' Context to  set for r unning the  RPC. Defa ults to HM P SYNCHRON IZATION CO NTEXT')
  21           .d escribe('h mpServerId ', 'Value  for the hm pServerId  parameter.  Defaults  to hmp-dev elopment-b ox')
  22           .d escribe('v pr', 'Use  the VPR na mespace. D efaults to  the HMP n amespace.' )
  23           .d escribe('l ogLevel',  'bunyan lo g levels,  one of: tr ace, debug , info, wa rn, error,  fatal. De faults to  error.')
  24           .a rgv;
  25  
  26  
  27   var logger  = require ('bunyan') .createLog ger({
  28           na me: 'rpc',
  29           le vel: argv. logLevel | | 'error'
  30   });
  31  
  32   var prefix  = argv.vp r ? 'VPR'  : 'HMP';
  33  
  34  
  35   var rpc =  'VPRDJFS A PI'.replac e('VPR', p refix);
  36   var params  = {
  37           '" server"':  argv.hmpSe rverId ||  'hmp-devel opment-box ',
  38           '" command"':  'startOpe rationalDa taExtract'
  39   };
  40  
  41  
  42   var config  = {
  43           ho st: argv.h ost,
  44           po rt: argv.p ort,
  45           ac cessCode:  argv.acces sCode ||  REDACTED ',
  46           ve rifyCode:  argv.verif yCode || ' REDACTED ',
  47           lo calIP: arg v.localIP  || '127.0. 0.1',
  48           lo calAddress : argv.loc alAddress  || 'localh ost',
  49           co ntext: arg v.context  || 'VPR SY NCHRONIZAT ION CONTEX T'.replace ('VPR', pr efix),
  50           co nnectTimeo ut: argv.c onnectTime out || 300 0,
  51           se ndTimeout:  argv.send Timeout ||  10000
  52   };
  53  
  54   rpcUtil.st andardRPCC all(logger , config,  rpc, param s, null, f unction(er ror, respo nse) {
  55           lo gger.debug ('Complete d calling  Subscribe  RPC for df n: %s; res ult: %j',  argv.dfn,  response);
  56           if  (error) {
  57                    cons ole.log('E rror calli ng Subscri be for dfn : %s', arg v.dfn);
  58                    cons ole.log(er ror);
  59                    if ( response)  {
  60                             consol e.log(resp onse);
  61                    }
  62                    proc ess.exit(1 );
  63           }
  64  
  65           co nsole.log( 'Called Su bscribe fo r dfn: %s' , argv.dfn );
  66           co nsole.log( 'Response: ');
  67           tr y {
  68                    cons ole.log(in spect(JSON .parse(res ponse), {
  69                             depth:  null
  70                    }));
  71           }  catch (err ) {
  72                    cons ole.log(re sponse);
  73           }
  74           pr ocess.exit (0);
  75   });