123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file 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.
- */
- module.exports = {
- pad: function(str, len, pad, dir) {
- var STR_PAD_LEFT = 1;
- var STR_PAD_RIGHT = 2;
- var STR_PAD_BOTH = 3;
- if (typeof(len) == "undefined") { var len = 0; }
- if (typeof(pad) == "undefined") { var pad = ' '; }
- if (typeof(dir) == "undefined") { var dir = STR_PAD_RIGHT; }
- if (len + 1 >= str.length) {
- switch (dir){
- case STR_PAD_LEFT:
- str = Array(len + 1 - str.length).join(pad) + str;
- break;
- case STR_PAD_BOTH:
- var right = Math.ceil((padlen = len - str.length) / 2);
- var left = padlen - right;
- str = Array(left+1).join(pad) + str + Array(right+1).join(pad);
- break;
- default:
- str = str + Array(len + 1 - str.length).join(pad);
- break;
- } // switch
- }
- return str;
- },
- underScoreToCamelCase: function(name){
- var new_name = name.replace(/_\w/g,replacer);
- function replacer(str, p1, p2, offset, s)
- {
- return str[1].toUpperCase();
- }
- return new_name;
- },
- /**
- * Compare two versions by following rules:
- * first higher than second then return 1
- * first lower than second then return -1
- * first equal to second then return 0
- * @param first {string}
- * @param second {string}
- * @return {number}
- */
- compareVersions: function(first, second){
- if (!(typeof first === 'string' && typeof second === 'string')) {
- return false;
- }
- var firstNumbers = first.split('.');
- var secondNumbers = second.split('.');
- var length = 0;
- var i = 0;
- var result = false;
- if(firstNumbers.length === secondNumbers.length) {
- length = firstNumbers.length;
- } else if(firstNumbers.length < secondNumbers.length){
- length = secondNumbers.length;
- } else {
- length = firstNumbers.length;
- }
- while(i < length && !result){
- firstNumbers[i] = (firstNumbers[i] === undefined) ? 0 : window.parseInt(firstNumbers[i]);
- secondNumbers[i] = (secondNumbers[i] === undefined) ? 0 : window.parseInt(secondNumbers[i]);
- if(firstNumbers[i] > secondNumbers[i]){
- result = 1;
- break;
- } else if(firstNumbers[i] === secondNumbers[i]){
- result = 0;
- } else if(firstNumbers[i] < secondNumbers[i]){
- result = -1;
- break;
- }
- i++;
- }
- return result;
- },
- isSingleLine: function(string){
- return string.trim().indexOf("\n") == -1;
- },
- /**
- * transform array of objects into CSV format content
- * @param array
- * @return {Array}
- */
- arrayToCSV: function(array){
- var content = "";
- array.forEach(function(item){
- var row = [];
- for(var i in item){
- if(item.hasOwnProperty(i)){
- row.push(item[i]);
- }
- }
- content += row.join(',') + '\n';
- });
- return content;
- },
- /**
- * Extracts filename from linux/unix path
- * @param path
- * @return {string}: filename
- */
- getFileFromPath: function(path) {
- if (!path || typeof path !== 'string') {
- return '';
- }
- return path.toString().replace(/^.*[\/]/, '');
- }
- }
|