Skip to content

Commit 0899941

Browse files
authored
Merge pull request #394 from smartdevicelink/feature/add-crc-to-files
Feature/add crc to files
2 parents ec4bf9a + 70065ba commit 0899941

5 files changed

Lines changed: 97 additions & 2 deletions

File tree

lib/js/src/manager/file/FileManager.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,16 @@ class FileManager extends _FileManagerBase {
7777
if (file.getType() !== null && file.getType() !== undefined) {
7878
putFile.setFileType(file.getType());
7979
}
80+
81+
// putfile crc introduced in 5.0.0
82+
if (this._lifecycleManager.getSdlMsgVersion().getMajorVersion() >= 5) {
83+
// set the crc value if putfile data exists
84+
if (putFile.getFileData() !== null && putFile.getFileData() !== undefined) {
85+
// use the file data to generate a crc32 checksum from it
86+
putFile.setCrc(_FileUtils.createCrc(putFile.getFileData()));
87+
}
88+
}
89+
8090
putFile.setPersistentFile(file.isPersistent());
8191
return putFile;
8292
}

lib/js/src/manager/file/filetypes/SdlFile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class SdlFile {
9090

9191
/**
9292
* Sets the byte array that represents the content of the file
93-
* @param {String} data - a byte array representing the data of the file
93+
* @param {Uint8Array} data - a byte array representing the data of the file
9494
* @returns {SdlFile} - A reference to this instance to support method chaining.
9595
*/
9696
setFileData (data) {
@@ -100,7 +100,7 @@ class SdlFile {
100100

101101
/**
102102
* Gets the byte array that represents the content of the file
103-
* @returns {String} - a byte array representing the data of the file
103+
* @returns {Uint8Array} - a byte array representing the data of the file
104104
*/
105105
getFileData () {
106106
return this._fileData;

lib/js/src/util/_FileUtils.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,23 @@ class _FileUtils {
5959
}
6060
return null;
6161
}
62+
63+
/**
64+
* Generates a CRC32 checksum for a file data string
65+
* @param {Uint8Array} fileData - A byte array of the file contents.
66+
* @returns {Number} - The checksum
67+
*/
68+
static createCrc (fileData) {
69+
let crc = 0 ^ (-1);
70+
71+
for (let index = 0; index < fileData.length; index++) {
72+
crc = (crc >>> 8) ^ _FileUtils.CRC_TABLE[(crc ^ fileData[index]) & 0xFF];
73+
}
74+
75+
return (crc ^ (-1)) >>> 0;
76+
}
6277
}
6378

79+
_FileUtils.CRC_TABLE = [0, 1996959894, -301047508, -1727442502, 124634137, 1886057615, -379345611, -1637575261, 249268274, 2044508324, -522852066, -1747789432, 162941995, 2125561021, -407360249, -1866523247, 498536548, 1789927666, -205950648, -2067906082, 450548861, 1843258603, -187386543, -2083289657, 325883990, 1684777152, -43845254, -1973040660, 335633487, 1661365465, -99664541, -1928851979, 997073096, 1281953886, -715111964, -1570279054, 1006888145, 1258607687, -770865667, -1526024853, 901097722, 1119000684, -608450090, -1396901568, 853044451, 1172266101, -589951537, -1412350631, 651767980, 1373503546, -925412992, -1076862698, 565507253, 1454621731, -809855591, -1195530993, 671266974, 1594198024, -972236366, -1324619484, 795835527, 1483230225, -1050600021, -1234817731, 1994146192, 31158534, -1731059524, -271249366, 1907459465, 112637215, -1614814043, -390540237, 2013776290, 251722036, -1777751922, -519137256, 2137656763, 141376813, -1855689577, -429695999, 1802195444, 476864866, -2056965928, -228458418, 1812370925, 453092731, -2113342271, -183516073, 1706088902, 314042704, -1950435094, -54949764, 1658658271, 366619977, -1932296973, -69972891, 1303535960, 984961486, -1547960204, -725929758, 1256170817, 1037604311, -1529756563, -740887301, 1131014506, 879679996, -1385723834, -631195440, 1141124467, 855842277, -1442165665, -586318647, 1342533948, 654459306, -1106571248, -921952122, 1466479909, 544179635, -1184443383, -832445281, 1591671054, 702138776, -1328506846, -942167884, 1504918807, 783551873, -1212326853, -1061524307, -306674912, -1698712650, 62317068, 1957810842, -355121351, -1647151185, 81470997, 1943803523, -480048366, -1805370492, 225274430, 2053790376, -468791541, -1828061283, 167816743, 2097651377, -267414716, -2029476910, 503444072, 1762050814, -144550051, -2140837941, 426522225, 1852507879, -19653770, -1982649376, 282753626, 1742555852, -105259153, -1900089351, 397917763, 1622183637, -690576408, -1580100738, 953729732, 1340076626, -776247311, -1497606297, 1068828381, 1219638859, -670225446, -1358292148, 906185462, 1090812512, -547295293, -1469587627, 829329135, 1181335161, -882789492, -1134132454, 628085408, 1382605366, -871598187, -1156888829, 570562233, 1426400815, -977650754, -1296233688, 733239954, 1555261956, -1026031705, -1244606671, 752459403, 1541320221, -1687895376, -328994266, 1969922972, 40735498, -1677130071, -351390145, 1913087877, 83908371, -1782625662, -491226604, 2075208622, 213261112, -1831694693, -438977011, 2094854071, 198958881, -2032938284, -237706686, 1759359992, 534414190, -2118248755, -155638181, 1873836001, 414664567, -2012718362, -15766928, 1711684554, 285281116, -1889165569, -127750551, 1634467795, 376229701, -1609899400, -686959890, 1308918612, 956543938, -1486412191, -799009033, 1231636301, 1047427035, -1362007478, -640263460, 1088359270, 936918000, -1447252397, -558129467, 1202900863, 817233897, -1111625188, -893730166, 1404277552, 615818150, -1160759803, -841546093, 1423857449, 601450431, -1285129682, -1000256840, 1567103746, 711928724, -1274298825, -1022587231, 1510334235, 755167117];
6480

6581
export { _FileUtils };

lib/node/src/util/_FileUtils.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,23 @@ class _FileUtils {
6262
});
6363
});
6464
}
65+
66+
/**
67+
* Generates a CRC32 checksum for a file data string
68+
* @param {Uint8Array} fileData - A byte array of the file contents.
69+
* @returns {Number} - The checksum
70+
*/
71+
static createCrc (fileData) {
72+
let crc = 0 ^ (-1);
73+
74+
for (let index = 0; index < fileData.length; index++) {
75+
crc = (crc >>> 8) ^ _FileUtils.CRC_TABLE[(crc ^ fileData[index]) & 0xFF];
76+
}
77+
78+
return (crc ^ (-1)) >>> 0;
79+
}
6580
}
6681

82+
_FileUtils.CRC_TABLE = [0, 1996959894, -301047508, -1727442502, 124634137, 1886057615, -379345611, -1637575261, 249268274, 2044508324, -522852066, -1747789432, 162941995, 2125561021, -407360249, -1866523247, 498536548, 1789927666, -205950648, -2067906082, 450548861, 1843258603, -187386543, -2083289657, 325883990, 1684777152, -43845254, -1973040660, 335633487, 1661365465, -99664541, -1928851979, 997073096, 1281953886, -715111964, -1570279054, 1006888145, 1258607687, -770865667, -1526024853, 901097722, 1119000684, -608450090, -1396901568, 853044451, 1172266101, -589951537, -1412350631, 651767980, 1373503546, -925412992, -1076862698, 565507253, 1454621731, -809855591, -1195530993, 671266974, 1594198024, -972236366, -1324619484, 795835527, 1483230225, -1050600021, -1234817731, 1994146192, 31158534, -1731059524, -271249366, 1907459465, 112637215, -1614814043, -390540237, 2013776290, 251722036, -1777751922, -519137256, 2137656763, 141376813, -1855689577, -429695999, 1802195444, 476864866, -2056965928, -228458418, 1812370925, 453092731, -2113342271, -183516073, 1706088902, 314042704, -1950435094, -54949764, 1658658271, 366619977, -1932296973, -69972891, 1303535960, 984961486, -1547960204, -725929758, 1256170817, 1037604311, -1529756563, -740887301, 1131014506, 879679996, -1385723834, -631195440, 1141124467, 855842277, -1442165665, -586318647, 1342533948, 654459306, -1106571248, -921952122, 1466479909, 544179635, -1184443383, -832445281, 1591671054, 702138776, -1328506846, -942167884, 1504918807, 783551873, -1212326853, -1061524307, -306674912, -1698712650, 62317068, 1957810842, -355121351, -1647151185, 81470997, 1943803523, -480048366, -1805370492, 225274430, 2053790376, -468791541, -1828061283, 167816743, 2097651377, -267414716, -2029476910, 503444072, 1762050814, -144550051, -2140837941, 426522225, 1852507879, -19653770, -1982649376, 282753626, 1742555852, -105259153, -1900089351, 397917763, 1622183637, -690576408, -1580100738, 953729732, 1340076626, -776247311, -1497606297, 1068828381, 1219638859, -670225446, -1358292148, 906185462, 1090812512, -547295293, -1469587627, 829329135, 1181335161, -882789492, -1134132454, 628085408, 1382605366, -871598187, -1156888829, 570562233, 1426400815, -977650754, -1296233688, 733239954, 1555261956, -1026031705, -1244606671, 752459403, 1541320221, -1687895376, -328994266, 1969922972, 40735498, -1677130071, -351390145, 1913087877, 83908371, -1782625662, -491226604, 2075208622, 213261112, -1831694693, -438977011, 2094854071, 198958881, -2032938284, -237706686, 1759359992, 534414190, -2118248755, -155638181, 1873836001, 414664567, -2012718362, -15766928, 1711684554, 285281116, -1889165569, -127750551, 1634467795, 376229701, -1609899400, -686959890, 1308918612, 956543938, -1486412191, -799009033, 1231636301, 1047427035, -1362007478, -640263460, 1088359270, 936918000, -1447252397, -558129467, 1202900863, 817233897, -1111625188, -893730166, 1404277552, 615818150, -1160759803, -841546093, 1423857449, 601450431, -1285129682, -1000256840, 1567103746, 711928724, -1274298825, -1022587231, 1510334235, 755167117];
6783

6884
export { _FileUtils };

tests/managers/file/FileManagerTests.js

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -468,5 +468,58 @@ module.exports = function (appClient) {
468468
Validator.assertTrue(fileManager.hasUploadedFile(file));
469469
sdlManager.removeRpcListener(SDL.rpc.enums.FunctionID.ListFiles, expectSuccess);
470470
});
471+
472+
it('testCrcUndefinedVersion4', async function () {
473+
const stub = sinon.stub(lifecycleManager, 'getSdlMsgVersion')
474+
.callsFake(() => {
475+
return new SDL.rpc.structs.SdlMsgVersion()
476+
.setMajorVersion(4)
477+
.setMinorVersion(5);
478+
});
479+
480+
const file = new SDL.manager.file.filetypes.SdlFile()
481+
.setName('hello')
482+
.setFilePath('./test_icon_1.png')
483+
.setType(SDL.rpc.enums.FileType.GRAPHIC_PNG)
484+
.setPersistent(true);
485+
486+
const putFile = await fileManager._createPutFile(file);
487+
488+
Validator.assertNull(putFile.getCrc());
489+
stub.restore();
490+
});
491+
492+
it('testCrcAssignmentFilePath', async function () {
493+
const file = new SDL.manager.file.filetypes.SdlFile()
494+
.setName('hello')
495+
.setFilePath('./test_icon_1.png')
496+
.setType(SDL.rpc.enums.FileType.GRAPHIC_PNG)
497+
.setPersistent(true);
498+
499+
const putFile = await fileManager._createPutFile(file);
500+
501+
Validator.assertNotNullUndefined(putFile.getCrc());
502+
});
503+
504+
it('testCorrectCrcValue', async function () {
505+
// set the file data to an input with an output that we expect to know
506+
const file1 = new SDL.manager.file.filetypes.SdlFile()
507+
.setName('hello')
508+
.setType(SDL.rpc.enums.FileType.GRAPHIC_PNG)
509+
.setFileData(SDL.util._JsonRpcMarshaller._encode('abcde'))
510+
.setPersistent(true);
511+
512+
const putFile1 = await fileManager._createPutFile(file1);
513+
Validator.assertEquals(putFile1.getCrc(), 2240272485);
514+
515+
const file2 = new SDL.manager.file.filetypes.SdlFile()
516+
.setName('hello')
517+
.setType(SDL.rpc.enums.FileType.GRAPHIC_PNG)
518+
.setFileData(SDL.util._JsonRpcMarshaller._encode('it is Wednesday my dudes'))
519+
.setPersistent(true);
520+
521+
const putFile2 = await fileManager._createPutFile(file2);
522+
Validator.assertEquals(putFile2.getCrc(), 801050498);
523+
});
471524
});
472525
};

0 commit comments

Comments
 (0)