Apply Upstream code (2021-03-15)
[platform/upstream/connectedhomeip.git] / src / app / zap-templates / common / StringHelper.js
1 /*
2  *
3  *    Copyright (c) 2020 Project CHIP Authors
4  *
5  *    Licensed under the Apache License, Version 2.0 (the "License");
6  *    you may not use this file except in compliance with the License.
7  *    You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *    Unless required by applicable law or agreed to in writing, software
12  *    distributed under the License is distributed on an "AS IS" BASIS,
13  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *    See the License for the specific language governing permissions and
15  *    limitations under the License.
16  */
17
18 const characterStringTypes = [ 'CHAR_STRING', 'LONG_CHAR_STRING' ];
19 const octetStringTypes     = [ 'OCTET_STRING', 'LONG_OCTET_STRING' ];
20 const stringShortTypes     = [ 'CHAR_STRING', 'OCTET_STRING' ];
21 const stringLongTypes      = [ 'LONG_CHAR_STRING', 'LONG_OCTET_STRING' ];
22
23 function isString(type)
24 {
25   return isCharString(type) || isOctetString(type);
26 }
27
28 function isCharString(type)
29 {
30   return characterStringTypes.includes(type.toUpperCase());
31 }
32
33 function isOctetString(type)
34 {
35   return octetStringTypes.includes(type.toUpperCase());
36 }
37
38 function isShortString(type)
39 {
40   return stringShortTypes.includes(type.toUpperCase());
41 }
42
43 function isLongString(type)
44 {
45   return stringLongTypes.includes(type.toUpperCase());
46 }
47
48 //
49 // Module exports
50 //
51 exports.isString      = isString;
52 exports.isCharString  = isCharString;
53 exports.isOctetString = isOctetString;
54 exports.isShortString = isShortString;
55 exports.isLongString  = isLongString;