Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DeschampsThomasSobook - check file integrity #28

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

Dominick-Peluso-Bose
Copy link

  • Better log (called with a function) => readability/easy to improve later
  • Some minor fixes in test and syntax (space, simple/double quote...)
  • Added a "check file integrity" function => return true if file exist and file has arrived
  • Added time parameters for "Has arrived" and "TimeFired"

Better log (called with a function) => readability/easy to improve later
Some minor fixes in test and syntax (space, simple/double quote...)
Added a "check file integrity" function => return true if file exist and file has arrived
Added time parameters for "Has arrived" and "TimeFired"
//STAGING
//Replacement for old log
function debugLog(s, message) {
const debug = s.getPropertyValue("Debug") === "Yes"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wow, SwitchScripter has changed, huh? Is it using ES6 now?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm... the scripter manual says it still only supports a partial implementation of ES4... Not sure how you can use const then.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Worked totally fine :)

function debugLog(s, message) {
const debug = s.getPropertyValue("Debug") === "Yes"
if (debug === true) {
s.log(1, message);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you need to do this? When I used Switch a long time ago, it supported log levels. So you could always log to debug and it would only propagate to the logger is the system enabled debug logging globally on the system.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changed in a new version, loggin is back to -1


//Check if file exist and has arrived
function isFileUsable (s, file) {
const stableTime = s.getPropertyValue("stableTime");

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you update the readme.md with what the stableTime is?

malformedTicket = File.read(jobTicketPath, "UTF-8");
job.log(3, "Malformed ticket: "+ malformedTicket);
// Fail the dummy job
job.fail("Job ticket could not be restored and the job could not be processed.");

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might be confusing have two of the same log messages in different blocks. For debugging purposes, I'd change this one in some way so you distinguish between the two.

var tempFolder = channelFolder + getDirectorySeperator(s) + "temp" + getDirectorySeperator(s);

// Set the timerInterval on start
var scanInterval = s.getPropertyValue("scanInterval");

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you update the readme.md with what the scanInterval is?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants