Skip to content

Commit

Permalink
Update date time functions (#518)
Browse files Browse the repository at this point in the history
Co-authored-by: 5saviahv <[email protected]>
  • Loading branch information
5saviahv and 5saviahv authored Jun 27, 2024
1 parent 7a1b68e commit ba46576
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 28 deletions.
53 changes: 26 additions & 27 deletions headers/entryHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,12 @@ module.exports = function () {
extraLen: 0
};

function setTime(val) {
val = new Date(val);
_time =
(((val.getFullYear() - 1980) & 0x7f) << 25) | // b09-16 years from 1980
((val.getMonth() + 1) << 21) | // b05-08 month
(val.getDate() << 16) | // b00-04 hour
// 2 bytes time
(val.getHours() << 11) | // b11-15 hour
(val.getMinutes() << 5) | // b05-10 minute
(val.getSeconds() >> 1); // b00-04 seconds divided by 2
}

setTime(+new Date());
// casting
const uint32 = (val) => Math.max(0, val) >>> 0;
const uint16 = (val) => Math.max(0, val) & 0xffff;
const uint8 = (val) => Math.max(0, val) & 0xff;

_time = Utils.fromDate2DOS(new Date());

return {
get made() {
Expand Down Expand Up @@ -102,33 +95,41 @@ module.exports = function () {
},

get time() {
return new Date(((_time >> 25) & 0x7f) + 1980, ((_time >> 21) & 0x0f) - 1, (_time >> 16) & 0x1f, (_time >> 11) & 0x1f, (_time >> 5) & 0x3f, (_time & 0x1f) << 1);
return Utils.fromDOS2Date(this.timeval);
},
set time(val) {
setTime(val);
this.timeval = Utils.fromDate2DOS(val);
},

get timeval() {
return _time;
},
set timeval(val) {
_time = uint32(val);
},

get timeHighByte() {
return (_time >>> 8) & 0xff;
return uint8(_time >>> 8);
},
get crc() {
return _crc;
},
set crc(val) {
_crc = Math.max(0, val) >>> 0;
_crc = uint32(val);
},

get compressedSize() {
return _compressedSize;
},
set compressedSize(val) {
_compressedSize = Math.max(0, val) >>> 0;
_compressedSize = uint32(val);
},

get size() {
return _size;
},
set size(val) {
_size = Math.max(0, val) >>> 0;
_size = uint32(val);
},

get fileNameLength() {
Expand Down Expand Up @@ -163,37 +164,37 @@ module.exports = function () {
return _diskStart;
},
set diskNumStart(val) {
_diskStart = Math.max(0, val) >>> 0;
_diskStart = uint32(val);
},

get inAttr() {
return _inattr;
},
set inAttr(val) {
_inattr = Math.max(0, val) >>> 0;
_inattr = uint32(val);
},

get attr() {
return _attr;
},
set attr(val) {
_attr = Math.max(0, val) >>> 0;
_attr = uint32(val);
},

// get Unix file permissions
get fileAttr() {
return _attr ? (((_attr >>> 0) | 0) >> 16) & 0xfff : 0;
return uint16(_attr >> 16) & 0xfff;
},

get offset() {
return _offset;
},
set offset(val) {
_offset = Math.max(0, val) >>> 0;
_offset = uint32(val);
},

get encrypted() {
return (_flags & 1) === 1;
return (_flags & Constants.FLG_ENC) === Constants.FLG_ENC;
},

get centralHeaderSize() {
Expand Down Expand Up @@ -338,8 +339,6 @@ module.exports = function () {
data.writeUInt32LE(_attr, Constants.CENATX);
// LOC header offset
data.writeUInt32LE(_offset, Constants.CENOFF);
// fill all with
data.fill(0x00, Constants.CENHDR);
return data;
},

Expand Down
22 changes: 21 additions & 1 deletion test/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ describe("headers", () => {
});
});

describe("entry-header", () => {
describe("central-header", () => {
const centralHeader = require("../headers/entryHeader");
const datestamp = [1981, 3, 1, 12, 10, 10];
const readBuf = Buffer.from("504b0102140014000008080045618102efbeadde0001000000020000000000000000000000000000000000000000", "hex");
Expand Down Expand Up @@ -180,6 +180,26 @@ describe("headers", () => {
expect(head.centralHeaderSize).to.equal(446);
});

it("centralHeader date if date is specified", () => {
const head = new centralHeader();
const times = [1978, 3, 1, 12, 10, 10];

head.time = new Date(...times);
expect(head.timeval).to.equal(0);

times[0] = 1979;
head.time = new Date(...times);
expect(head.timeval).to.equal(0);

times[0] = 1980;
head.time = new Date(...times);
expect(head.timeval).to.equal(0x00816145);

times[0] = 1981;
head.time = new Date(...times);
expect(head.timeval).to.equal(0x02816145);
});

describe("local-header", () => {
const localHeader = Buffer.from("504b030414000008080045618102efbeadde000100000002000000000000", "hex");

Expand Down
14 changes: 14 additions & 0 deletions util/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,5 +318,19 @@ Utils.readBigUInt64LE = function (/*Buffer*/ buffer, /*int*/ index) {
return parseInt(`0x${slice.toString("hex")}`);
};

Utils.fromDOS2Date = function (val) {
return new Date(((val >> 25) & 0x7f) + 1980, Math.max(((val >> 21) & 0x0f) - 1, 0), Math.max((val >> 16) & 0x1f, 1), (val >> 11) & 0x1f, (val >> 5) & 0x3f, (val & 0x1f) << 1);
};

Utils.fromDate2DOS = function (val) {
let date = 0;
let time = 0;
if (val.getFullYear() > 1979) {
date = (((val.getFullYear() - 1980) & 0x7f) << 9) | ((val.getMonth() + 1) << 5) | val.getDate();
time = (val.getHours() << 11) | (val.getMinutes() << 5) | (val.getSeconds() >> 1);
}
return (date << 16) | time;
};

Utils.isWin = isWin; // Do we have windows system
Utils.crcTable = crcTable;

0 comments on commit ba46576

Please sign in to comment.