aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/deleteOldData.js
blob: f21963346981511aae96e8b251149557a6cca69c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
============LICENSE_START==========================================
===================================================================
Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
===================================================================

Unless otherwise specified, all software contained herein is licensed
under the Apache License, Version 2.0 (the License);
you may not use this software except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

============LICENSE_END============================================ */
//... deleteOldData.js - to be started by parent server process
const fs = require('fs');

var logger = require('./srvlogger');

var clName= "deleteOldData";
var cdt_home = ".";

  this.thePid= process.pid;
  console.log(clName+": thePid="+this.thePid );

  console.log(clName+
    ": execArgv:["+process.execArgv+"]\n argv:["+process.argv+"]");
  var taskIdArgstr= process.argv[ 2 ];
  var CDT_HOME= process.argv[ 3 ];
  var LOG_DIR= process.argv[ 4 ];
  console.log( clName+": argv: CDT_HOME:["+CDT_HOME+"]" );
  var LogF= LOG_DIR+"/ndserver.log";
  logger.addLog( clName+": start: CDT_HOME:["+CDT_HOME+"]\n",LogF);

  var indT= taskIdArgstr.indexOf('=', 0);
  if( indT < 0 ) {
    this.taskId= taskIdArgstr;
  } else {
    this.taskId= taskIdArgstr.substr( indT+1 );
  }
  console.log(clName+": taskId:["+this.taskId+"]\n");
  logger.addLog( clName+": taskId:["+this.taskId+"]\n",LogF);
  if(  this.taskId == null || this.taskId == undefined || this.taskId.length < 1 )
  {
    var errMsg= clName+": Error: taskId is empty !\n";
    console.log( errMsg );
    throw new Error( errMsg );
  };
  var inpFilePfx= CDT_HOME+"/posted_data_";
  var outFilePfx= CDT_HOME+"/sync_template_res_";
  var parmFilePfx= CDT_HOME+"/template_params_";
  var pstatfNamePfx= CDT_HOME+"/proc_status_";

  let timeStamp = new Date().toISOString();
 // console.log(clName+": timeStamp:["+timeStamp+"]\n");
  logger.addLog( clName+": timeStamp:["+timeStamp+"]\n",LogF);

  var inpFile= inpFilePfx +this.taskId +".txt";
 // console.log(clName+": deleting inpFile:\n"+inpFile );
  logger.addLog( clName+": deleting inpFile:\n"+inpFile+"\n",LogF);

  fs.unlink( inpFile, (err) => {
    if( err) {
      console.log(clName+
        ": Error while deleting "+inpFile+"\n "+err.message+"]\n");
    }
  });

  timeStamp = new Date().toISOString();
  console.log(clName+": timeStamp:["+timeStamp+"]\n");

  var pstatfName= pstatfNamePfx +this.taskId+".json";
  console.log(clName+": deleting proc.status File:\n"+pstatfName );

  fs.unlink( pstatfName, (err) => {
    if( err) {
      console.log(clName+
        ": Error while deleting "+pstatfName+"\n "+err.message+"]\n");
    }
  });

  timeStamp = new Date().toISOString();
  console.log(clName+": timeStamp:["+timeStamp+"]\n");

  var outFile= outFilePfx+ this.taskId+".txt";
  console.log(clName+": deleting proc.result File:\n"+outFile );

  fs.unlink( outFile, (err) => {
    if( err) {
      console.log(clName+
        ": Error while deleting "+outFile+"\n "+err.message+"]\n");
    }
  });

  timeStamp = new Date().toISOString();
  console.log(clName+": timeStamp:["+timeStamp+"]\n");

  var parmFile= parmFilePfx+ this.taskId+".txt";
  console.log(clName+": deleting parameters File:\n"+parmFile+"]\n");

  fs.unlink( parmFile, (err) => {
    if( err) {
      console.log(clName+
        ": Error while deleting "+parmFile+"\n "+err.message+"]\n");
    }
  });

  timeStamp = new Date().toISOString();
  console.log(clName+": timeStamp:["+timeStamp+"]\n");

  console.log(clName+": finish.");