-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdata.js
1765 lines (1573 loc) · 50.7 KB
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @name CeL data function
* @fileoverview 本檔案包含了 data 處理的 functions。
* @since
*/
'use strict';
// 'use asm';
// --------------------------------------------------------------------------------------------
typeof CeL === 'function' && CeL.run({
// module name
name : 'data',
require : 'data.code.compatibility.|data.native.to_fixed',
// 設定不匯出的子函式。
// no_extend : '*',
// 為了方便格式化程式碼,因此將 module 函式主體另外抽出。
code : module_code
});
function module_code(library_namespace) {
// requiring
var to_fixed = this.r('to_fixed'),
/** {Number}未發現之index。 const: 基本上與程式碼設計合一,僅表示名義,不可更改。(=== -1) */
NOT_FOUND = ''.indexOf('_');
/**
* null module constructor
*
* @class data 處理的 functions
*/
var _// JSDT:_module_
= function() {
// null module constructor
};
/**
* for JSDT: 有 prototype 才會將之當作 Class
*/
_// JSDT:_module_
.prototype = {};
/**
* <code>
eval(uneval(o)): IE 沒有 uneval
http://keithdevens.com/weblog/archive/2007/Jun/07/javascript.clone
way1:
return YAHOO.lang.JSON.parse( YAHOO.lang.JSON.stringify( obj ) );
TODO:
1.
防止交叉參照版: try
var a=function(){this.a=1,this.b={a:this.a},this.a={b:this.b};},b=cloneObject(a);
.or.
var a={},b;
a.a={a:1};
a.b={a:a.a};
a.a={b:a.b};
b=cloneObject(a);
恐須改成
=new cloneObject();
2.
equal()
</code>
*/
/**
* clone object
*
* @param object
* @param {Boolean}deep
* deep / with trivial
* @return
*
* @see Object.clone() @ data.native
* @since 2008/7/19 11:13:10, 2012/10/16 22:01:12, 2014/5/30 19:35:59.
*/
function clone(object, deep) {
if (!object || typeof object !== 'object')
// assert: is 純量 / function
return object;
if (Array.isArray(object))
if (deep) {
var target = [];
object.forEach(function(o, index) {
target[index] = clone(o, deep);
});
return target;
} else
// Array.clone: data.native.clone_Array()
return Array.clone(object);
var key = ('clone' in object)
// test 物件自帶的 clone().
&& typeof object.clone === 'function';
if (key)
// object.clone(deep);
return object.clone();
key = library_namespace.is_type(object);
if (key === 'Date')
return new Date(object.getTime());
if (key === 'RegExp')
// new object.constructor(object)
return new RegExp(object);
var value, target = {};
for (key in object)
// 不加入非本 instance,為 prototype 的東西。
if (Object.hasOwn(object, key)) {
value = object[key];
// TODO: 預防 loop, 防止交叉參照/循環參照。
target[key] = deep ? clone(value, deep) : value;
}
return target;
}
_// JSDT:_module_
.clone = clone;
// merge `new_data` to `old_data`, and return merged old_data
// merge 時,各屬性值以 `old_data` 為基礎,`new_data` 後設定者為準。
// Will modify old_data!
function deep_merge_object(old_data, options) {
var new_data;
if (Array.isArray(old_data)) {
// deep_merge_object([old_data, new_data, newer_data, ...,
// latest data ], options);
old_data.forEach(function(data, index) {
if (index === 0) {
old_data = data;
} else if (index === this.length - 1) {
new_data = data;
} else {
old_data = deep_merge_object([ old_data, data ], options);
}
});
} else {
// deep_merge_object(old_data, new_data);
new_data = options;
}
// ----------------------------
if (typeof old_data !== 'object' || old_data === null || !new_data) {
return new_data || old_data;
}
// ----------------------------
function merge_property_of_object(sub_new_data, sub_old_data) {
for ( var property in sub_new_data) {
// 將 property in sub_new_data 設定至
// old_value=sub_old_data[property];
merge_property(property, sub_new_data, sub_old_data);
}
return sub_old_data;
}
// 以 sub_old_data[property] 為基礎,將 sub_new_data[property] merge/overwrite
// 到 sub_old_data[property]
// 最終指定 sub_new_data[property] = old_value;
function merge_property(property, sub_new_data, sub_old_data) {
// assert: property in sub_new_data
var new_value = sub_new_data[property];
// assert: typeof old_value === 'object'
if (typeof new_value !== 'object' || !(property in sub_old_data)) {
// using new_value, overwrite old value
sub_old_data[property] = new_value;
return;
}
// assert: property in sub_old_data
var old_value = sub_old_data[property];
if (Array.isArray(new_value)) {
if (Array.isArray(old_value)) {
// 對於 {Object}old_value 先複製到 `old_value`
Object.keys(new_value).forEach(
// merge 像 new_value.a=1
function(sub_property) {
if (!library_namespace.is_digits(sub_property)) {
merge_property(sub_property, new_value, old_value);
}
});
old_value.append(new_value);
} else if (typeof old_value === 'object') {
// assert: library_namespace.is_Object(old_value)
merge_property_of_object(new_value, old_value);
} else {
// new_value.push(old_value);
sub_old_data[property] = new_value;
}
return;
}
// assert: library_namespace.is_Object(old_value) &&
// library_namespace.is_Object(new_value)
if (typeof old_value !== 'object') {
// 考慮 new_value 與 old_value 型態不同的情況。
sub_old_data[property] = new_value;
} else {
merge_property_of_object(new_value, old_value);
}
}
// assert: library_namespace.is_Object(old_data)
return merge_property_of_object(new_data, old_data);
}
_.deep_merge_object = deep_merge_object;
/**
* get the quote index of specified string.<br />
* 輸入('"','dh"fdgfg')得到2:指向"的位置.
*
* @param {String}string
* @param {String}quote
* ['"/],[/]可能不太適用,除非將/[/]/→/[\/]/
* @returns
* @since 2004/5/5
*/
function index_of_quote(string, quote) {
var i, l = 0, m;
if (!quote)
quote = '"';
while ((i = string.indexOf(quote, l)) > 0
&& string.charAt(i - 1) === '\\') {
m = string.slice(l, i - 2).match(/(\\+)$/);
if (m && m[1].length % 2)
break;
else
l = i + 1;
}
return i;
}
/**
* <code>
{var a=[],b,t='',i;a[20]=4,a[12]=8,a[27]=4,a[29]=4,a[5]=6,a.e=60,a.d=17,a.c=1;alert(a);b=sortValue(a);alert(a+'\n'+b);for(i in b)t+='\n'+b[i]+' '+a[b[i]];alert(t);}
</code>
*/
// 依值排出key array…起碼到現在,我還看不出此函數有啥大功用。
// array,否則會出現error! mode=1:相同value的以','合併,mode=2:相同value的以array填入
function sortValue(a, mode) {
var s = [], r = [], i, j, b, k = [];
// 使用(i in n)的方法,僅有數字的i會自動排序;這樣雖不必用sort(),但數字亦會轉成字串。
for (i in a)
if ((b = isNaN(i) ? i : parseFloat(i)),
//
typeof s[j = isNaN(j = a[i]) ? j : parseFloat(j)] === 'undefined')
k.push(j), s[j] = b;
else if (typeof s[j] === 'object')
s[j].push(b);
else
s[j] = [ s[j], b ];
// 注意:sort 方法會在原地排序 Array 物件。
for (i = 0, k.sort(library_namespace.ascending); i < k.length; i++)
if (typeof (b = s[k[i]]) === 'object')
if (mode === 1)
// b.join(',')與''+b效能相同
r.push(b.join(','));
else if (mode === 2)
r.push(b);
else
for (j in b)
r.push(b[j]);
else
r.push(b);
return r;
}
/**
* <code>
2005/7/18 21:26
依照所要求的index(sortByIndex_I)對array排序。
sortByIndex_Datatype表某index為數字/字串或function
先設定sortByIndex_I,sortByIndex_Datatype再使用array.sort(sortByIndex);
example:
var array=[
'123 avcf 334',
'131 hj 562',
'657 gfhj 435',
'131 ajy 52',
'345 fds 562',
'52 gh 435',
];
sortByIndex_I=[0,1],sortByIndex_Datatype={0:1,2:1};
for(i in array)array[i]=array[i].split(' ');
array.sort(sortByIndex);
alert(array.join('\n'));
</code>
*/
var sortByIndex_I, sortByIndex_Datatype;
function sortByIndex(a, b) {
// alert(a+'\n'+b);
for (var i = 0, n; i < sortByIndex_I.length; i++)
if (sortByIndex_Datatype[n = sortByIndex_I[i]]) {
if (typeof sortByIndex_Datatype[n] === 'function') {
if (n = sortByIndex_Datatype[n](a[n], b[n]))
return n;
} else if (n = a[n] - b[n])
return n;
} else if (a[n] != b[n])
return a[n] > b[n] ? 1 : -1;
return 0;
}
/**
* <code>
2005/7/18 21:26
依照所要求的 index 對 array 排序,傳回排序後的 index array。
**假如設定了 separator,array 的元素會先被 separator 分割!
example:
var array=[
'123 avcf 334',
'131 hj 562',
'657 gfhj 435',
'131 ajy 52',
'345 fds 562',
'52 gh 435',
];
alert(getIndexSortByIndex(array,' ',[0,1],[0,2]));
alert(array.join('\n')); // 已被 separator 分割!
</code>
*/
function getIndexSortByIndex(array, separator, indexArray, isNumberIndex) {
// 判定與事前準備(設定sortByIndex_I,sortByIndex_Datatype)
if (typeof indexArray === 'number')
sortByIndex_I = [ indexArray ];
else if (typeof indexArray !== 'object'
|| indexArray.constructor !== Array)
sortByIndex_I = [ 0 ];
else
sortByIndex_I = indexArray;
var i, sortByIndex_A = [];
sortByIndex_Datatype = Object.create(null);
if (typeof isNumberIndex === 'object') {
if (isNumberIndex.constructor === Array) {
sortByIndex_Datatype = Object.create(null);
for (i = 0; i < isNumberIndex.length; i++)
sortByIndex_Datatype[isNumberIndex[i]] = 1;
} else
sortByIndex_Datatype = isNumberIndex;
for (i in sortByIndex_Datatype)
if (isNaN(sortByIndex_Datatype[i])
|| parseInt(sortByIndex_Datatype[i]) !== sortByIndex_Datatype[i])
delete sortByIndex_Datatype[i];
}
if (typeof array !== 'object')
return;
// main work: 可以不用重造 array 資料的話..
for (i in array) {
if (separator)
array[i] = array[i].split(separator);
sortByIndex_A.push(i);
}
sortByIndex_A.sort(function(a, b) {
return sortByIndex(array[a], array[b]);
});
/**
* <code>
for: 重造array資料
var getIndexSortByIndexArray=array;
for(i in getIndexSortByIndexArray){
if(separator)getIndexSortByIndexArray[i]=getIndexSortByIndexArray[i].split(separator);
sortByIndex_A.push(i);
}
sortByIndex_A.sort(function (a,b){return sortByIndex(getIndexSortByIndexArray[a],getIndexSortByIndexArray[b]);});
</code>
*/
return sortByIndex_A;
}
/**
* <code>
simpleWrite('char_frequency report3.txt',char_frequency(simpleRead('function.js')+simpleRead('accounts.js')));
{var t=reduceCode(simpleRead('function.js')+simpleRead('accounts.js'));simpleWrite('char_frequency source.js',t),simpleWrite('char_frequency report.txt',char_frequency(t));} // 所費時間:十數秒(…太扯了吧!)
</code>
*/
_// JSDT:_module_
.
/**
* 測出各字元的出現率。 普通使用字元@0-127:9-10,13,32-126,reduce後常用:9,32-95,97-125
*
* @param {String}
* text 文檔
* @return
* @_memberOf _module_
*/
char_frequency = function char_frequency(text) {
var i, a, c = [], d, t = '' + text, l = t.length, used = '', unused = '', u1 = -1, u2 = u1;
for (i = 0; i < l; i++)
if (c[a = t.charCodeAt(i)])
c[a]++;
else
c[a] = 1;
for (i = u1; i < 256; i++)
if (c[i]) {
if (u2 + 1 === i)
used += ',' + i, unused += (u2 < 0 ? '' : '-' + u2);
u1 = i;
} else {
if (u1 + 1 === i)
unused += ',' + i, used += (u1 < 0 ? '' : '-' + u1);
u2 = i;
}
// 若是reduceCode()的程式,通常在120項左右。
for (i = 0, t = 'used:' + used.substr(1) + '\nunused:'
+ unused.substr(1) + '\n', d = sortValue(c, 2).reverse(); i < d.length; i++) {
t += NewLine
+ (a = d[i])
+ '['
+ fromCharCode(a).replace(/\0/g, '\\0').replace(/\r/g,
'\\r').replace(/\n/g, '\\n').replace(/\t/g, '\\t')
+ ']' + ': ' + (a = c[typeof a === 'object' ? a[0] : a])
+ ' ' + (100 * a / l);
// .5%以上者←選購
// if(200*v<l)break;
}
alert(t);
return t;
};
/**
* <code>
flag:
(flag&1)==0 HTML tag, 表情符號等不算一個字
(flag&1)==1 將 HTML tag 全部消掉
(flag&2)==1 連表情符號等也算一個字
可讀性/適讀性
http://en.wikipedia.org/wiki/Flesch-Kincaid_Readability_Test
http://en.wikipedia.org/wiki/Gunning_fog_index
Gunning-Fog Index:簡單的來說就是幾年的學校教育才看的懂你的文章,數字越低代表越容易閱讀,若是高於17那表示你的文章太難囉,需要研究生才看的懂,我是6.08,所以要受過6.08年的學校教育就看的懂囉。
Flesch Reading Ease:這個指數的分數越高,表示越容易了解,一般標準的文件大約介於60~70分之間。
Flesch-Kincaid grade level:和Gunning-Fog Index相似,分數越低可讀性越高,越容易使閱讀者了解,至於此指數和Gunning-Fog Index有何不同,網站上有列出計算的演算法,有興趣的人可以比較比較。
DO.normalize(): 合併所有child成一String, may crash IE6 Win! http://www.quirksmode.org/dom/tests/splittext.html
</code>
*/
_// JSDT:_module_
.
/**
* 計算字數 count words. word_count
*
* @param {String}
* text 文檔
* @param {Number}
* flag 文檔格式/處理方法
*
* @return {Number} 字數
*
* @see https://zh.wikipedia.org/wiki/User:%E5%B0%8F%E8%BA%8D/Wordcount.js
*
* @_memberOf _module_
*/
count_word = function count_word(text, flag) {
var is_HTML = flag & 1;
// is HTML object
if (typeof text === 'object')
if (text.innerText)
text = text.innerText, is_HTML = false;
else if (text.innerHTML)
text = text.innerHTML, is_HTML = true;
if (typeof text !== 'string')
return 0;
// 和perl不同,JScript常抓不到(.*?)之後還接特定字串的東西,大概因為沒有s。(.*?)得改作([\s\S]*?)?
// 或者該加/img?
if (is_HTML)
text = text.replace(/<\!--[\s\S]*?-->/g, '').replace(
/<[\s\n]*\/?[\s\n]*[a-z][^<>]*>/gi, '');
if (flag & 2)
text = text.replace(
// 連表情符號或 '(~。),' / 破折號 '——' / 刪節號 '……' 等標點符號也算一個字
/[\+\-–*\\\/?!,;.<>{}\[\]@#$%^&_|"'~`—…、,;。!?:()()「」『』“”‘’]{2,}/g,
';');
return text
// 去掉注解用的括弧、書名號、專名號、印刷符號等
.replace(/[()()《》〈〉*#]+/g, '')
// 將數字改成單一字母。
.replace(/\d*\.?\d+([^.]|$)/g, '0$1')
/**
* 將整組物理量值加計量單位略縮成單一字母。<br />
* The general rule of the International Bureau of Weights and Measures
* (BIPM) is that the numerical value always precedes the unit, and a
* space is always used to separate the unit from the number, e.g., "23
* °C" (not "23°C" or "23° C").
*
* @see <a href="http://en.wikipedia.org/wiki/ISO_31-0#Expressions"
* accessdate="2012/7/28 0:42">ISO 31-0</a>, <a
* href="http://lamar.colostate.edu/~hillger/faq.html#spacing"
* accessdate="2012/7/28 0:42">FAQ: Frequently Asked Questions
* about the metric system</a>.
*/
.replace(/\d+\s*[a-zA-Z°]+(\s*\/\s*(\d+\s*)?[a-zA-Z°]+)?/g, '0')
// 長度過長時,極耗時間。e.g., ...\d{500000}...
// .replace(/\d*\.?\d+\s*[a-zA-Z°]+(\s*\/\s*(\d*\.?\d+\s*)?[a-zA-Z°]+)?/g,'0')
// https://en.wikipedia.org/wiki/Punctuation_of_English
// Do not count punctuations of English.
.replace(/[,;:.?!\-–"'()⟨⟩«»\[\]{}<>$%#@~`^&*\\\/⁄+=|]+/g, '')
// 將英文、數字、單位等改成單一字母。[.]: 縮寫。[\/]: m/s 之類。
// a's: 1
// http://en.wikibooks.org/wiki/Unicode/Character_reference/0000-0FFF
// http://zh.wikipedia.org/wiki/Unicode%E5%AD%97%E7%AC%A6%E5%88%97%E8%A1%A8
.replace(/[\wÀ-ÖØ-öø-ȳ]{2,}/g, 'w')
// date/time or number
.replace(/[\d:+\-–\.\/,]{2,}/g, '0')
// 再去掉*全部*空白
.replace(/[\s\n]+/g, '')
// return text.length;
.length;
};
_// JSDT:_module_
.
/**
* 運算式值的二進位表示法
* 已最佳化:5.82s/100000次dec_to_bin(20,8)@300(?)MHz,2.63s/100000次dec_to_bin(20)@300(?)MHz
*
* @param {Number}
* number number
* @param places
* places,字元數,使用前置0來填補回覆值
* @return
* @example<code>
{var d=new Date,i,b;for(i=0;i<100000;i++)b=dec_to_bin(20);alert(gDate(new Date-d));}
</code>
* @_memberOf _module_
*/
dec_to_bin = function dec_to_bin(number, places) {
if (places && number + 1 < (1 << places)) {
var h = '', b = number.toString(2), i = b.length;
for (; i < places; i++)
h += '0';
return h + b;
}
// native code 還是最快!
return number.toString(2);
if (false) {
// 上兩代:慢
// 不用'1:0',型別轉換比較慢.不用i,多一個變數會慢很多
var b = '', c = 1;
for (p = p && n < (p = 1 << p) ? p : n + 1; c < p; c <<= 1)
b = (c & n ? '1' : '0') + b;
return b;
// 上一代:慢
if (p && n + 1 < (1 << p)) {
var h = '', c = 1, b = n.toString(2);
while (c <= n)
c <<= 1;
while (c < p)
c <<= 1, h += '0';
return h + (n ? n.toString(2) : '');
}
}
};
/**
* <code>
value (Array)=value,(Object)value=
[null]=value 累加=value
value=[null] value=''
type: value type ['=','][int|float|_num_]
: 前段
以[']或["]作分隔重定義指定號[=]與分隔號[,]
: 後段
數字表累加
'int'表整數int,累加1
'float'表示浮點數float,累加.1 bug:應該用.to_fixed()
不輸入或非數字表示string
mode
_.set_Object_value.F.object
_.set_Object_value.F.array(10進位/當做數字)
number: key部分之base(10進位,16進位等)
example:
set_Object_value('UTCDay','Sun,Mon,Tue,Wed,Thu,Fri,Sat','int'); // 自動從0開始設,UTCDay.Tue=2
set_Object_value('UTCDay','Sun,Mon,Tue,Wed,Thu,Fri,Sat'); // UTCDay.Sun=UTCDay.Fri=''
set_Object_value('add','a=3,b,c,d',2); // 累加2。add.b=5
set_Object_value('add','a,b,c,d',1,_.set_Object_value.F.array); // add[2]='c'
set_Object_value('add','4=a,b,c,d',2,_.set_Object_value.F.array); // 累加2。add[8]='c'
</code>
*/
_// JSDT:_module_
.
/**
* 設定object之值,輸入item=[value][,item=[value]..]。<br />
* value未設定會自動累加。<br />
* 使用前不必需先宣告…起碼在現在的JS版本中
*
* @param obj
* object name that need to operate at
* @param value
* valueto set
* @param type
* 累加 / value type
* @param mode
* mode / value type
* @return
* @_memberOf _module_
*/
set_Object_value = function set_Object_value(obj, value, type, mode) {
if (!value || typeof obj !== 'string')
return;
var a, b, i = 0, p = '=', sp = ',', e = "if(typeof " + obj
+ "!='object')" + obj + "=new " + (mode ?
// "[]":"{}"
// Array之另一種表示法:[value1,value2,..],
// Object之另一種表示法:{key1:value1,key2:value2,..}
"Array" : "Object") + ";",
// l: item, n: value to 累加
n, Tint = false, cmC = '\\u002c', eqC = '\\u003d';
if (type) {
if (typeof a === 'string') {
a = type.charAt(0);
if (a === '"' || a === "'") {
a = type.split(a);
p = a[1], sp = a[2], type = a[3];
}
}
if (type === 'int')
type = 1, Tint = true;
else if (type === 'float')
type = .1;
else if (isNaN(type))
type = 0;
else if (type === parseInt(type))
type = parseInt(type), Tint = true;
else
// t被設成累加數
type = parseFloat(type);
}
// else t = 1;
if (typeof value === 'string')
value = value.split(sp);
// escape regex characters from jQuery
cmC = new RegExp(cmC.replace(
/([\.\\\+\*\?\[\^\]\$\(\)\{\}\=\!\<\>\|\:])/g, "\\$1"), 'g'),
eqC = new RegExp(eqC.replace(
/([\.\\\+\*\?\[\^\]\$\(\)\{\}\=\!\<\>\|\:])/g, "\\$1"),
'g');
if (type)
// n: 現在count到..
n = -type;
for (; i < value.length; i++) {
if (value[i].indexOf(p) === NOT_FOUND)
// if(v[i].indexOf(p)==NOT_FOUND&&m)v[i]=p+v[i];
value[i] = mode ? p + value[i] : value[i] + p;
if (mode && value[i] === p) {
n += type;
continue;
}
a = value[i].split(p);
if (!mode && !a[0])
// 去掉不合理的(Array可能有NaN index,所以不設條件。)
continue;
a[0] = a[0].replace(cmC, ',').replace(eqC, '='), a[1] = a[1]
.replace(cmC, ',').replace(eqC, '=');
if (type)
if (mode) {
if (!a[0])
a[0] = (n += type);
else if (!isNaN(b = mode > 0 ? parseInt(a[0], mode) : a[0]))
n = Tint ? (a[0] = parseInt(b)) : parseFloat(b);
} else if (!a[1])
a[1] = (n += type);
else if (!isNaN(a[1]))
n = Tint ? parseInt(a[1]) : parseFloat(a[1]);
if (!type || Tint && isNaN(b = parseInt(a[1]))
|| isNaN(b = parseFloat(a[1])))
b = a[1];
a = a[0];
e += obj + '['
+ (!type || isNaN(a) ? library_namespace.dQuote(a) : a)
+ ']='
+ (!type || isNaN(b) ? library_namespace.dQuote(b) : b)
+ ';';
}
try {
// if(o=='kk')alert(e.slice(0,500));
// 因為沒想到其他方法可存取Global的object,只好使用eval...
// 可以試試obj=set_Object_value(0,..){this=new Aaaray/Object}
return library_namespace.eval_code(e);
} catch (e) {
library_namespace.error('Error @ ' + obj);
library_namespace.error(e);
return;
}
};
_.set_Object_value.F = {
// object is default
'object' : 0,
'array' : -1
};
_// JSDT:_module_
.
/**
* 將字串組分作 Object
*
* @param {String}
* value_set 字串組, e.g., 'a=12,b=34'
* @param assignment_char
* char to assign values, e.g., '='
* @param end_char
* end char of assignment
* @return
* @since 2006/9/6 20:55, 2010/4/12 23:06:04
* @_memberOf _module_
*/
split_String_to_Object = function split_String_to_Object(value_set,
assignment_char, end_char) {
if (typeof value_set !== 'string' || !value_set)
return {};
value_set = value_set.split(end_char || /[,;]/);
if (!assignment_char)
assignment_char = /[=:]/;
var a, o = {}, _e = 0, l = value_set.length;
for (; _e < l; _e++) {
// http://msdn.microsoft.com/library/en-us/jscript7/html/jsmthsplit.asp
a = value_set[_e].split(assignment_char, 2);
if (false)
library_namespace.debug(value_set[_e] + '\n' + a[0] + ' '
+ a[1], 2);
if (a[0] !== '')
o[a[0]] = a[1];
}
return o;
};
/**
* <code>
2003/10/1 15:46
比較string:m,n從起頭開始相同字元數
return null: 格式錯誤,-1: !m||!n
若一開始就不同:0
TODO:
test starting with
2009/2/7 7:51:58
看來測試 string 的包含,以 .indexOf() 最快。
即使是比較 s.length 為極小常數的情況亦復如此
下面是快到慢:
// long, short
var contain_substring = [ function(l, s) {
var a = 0 == l.indexOf(s);
return a;
}, function(l, s) {
return 0 == l.indexOf(s);
}, function(l, s) {
return s == l.slice(0, s.length);
}, function(l, s) {
return l.match(s);
}, function(l, s) {
for (var i = 0; i < s.length; i++)
if (s.charAt(i) != l.charAt(i))
return 0;
return 1;
} ];
function test_contain_substring() {
for (var i = 0; i < contain_substring.length; i++) {
var t = new Date;
for (var j = 0; j < 50000; j++) {
contain_substring[i]('sdfgjk;sh*dn\\fj;kgsamnd nwgu!eoh;nfgsj;g',
'sdfgjk;sh*dn\\fj;kgsamnd nwgu!');
contain_substring[i]('sdbf6a89* /23hsauru', 'sdbf6a89* /23');
}
sl(i + ': ' + (new Date - t));
}
}
// 極小常數的情況:
// long,short
var contain_substring = [ function(l, s) {
var a = 0 == l.indexOf(s);
return a;
}, function(l, s) {
return 0 == l.indexOf(s);
}, function(l, s) {
return s == l.slice(0, 1);
}, function(l, s) {
return s.charAt(0) == l.charAt(0);
}, function(l, s) {
return l.match(/^\//);
} ];
function test_contain_substring() {
for (var i = 0; i < contain_substring.length; i++) {
var t = new Date;
for (var j = 0; j < 50000; j++) {
contain_substring[i]('a:\\sdfg.dfg\\dsfg\\dsfg', '/');
contain_substring[i]('/dsfg/adfg/sadfsdf', '/');
}
sl(i + ': ' + (new Date - t));
}
}
</code>
*/
_// JSDT:_module_
.
/**
* test if 2 string is at the same length.<br />
* strcmp: String.prototype.localeCompare
*
* @param s1
* string 1
* @param s2
* string 2
* @return
* @_memberOf _module_
*/
same_length = function same_length(s1, s2) {
if (typeof m !== 'string' || typeof n !== 'string')
return;
if (!s1 || !s2)
return 0;
var i = s1.length, b = 0, s = s2.length;
if (i < s) {
if (
// m === n.slice(0, i = m.length)
0 === s2.indexOf(s1))
return i;
} else if (
// s2==s1.slice(0,i=s2.length)
i = s, 0 === s1.indexOf(s2))
return i;
// sl('*same_length: start length: '+i);
while ((i = (i + 1) >> 1) > 1 && (s = s2.substr(b, i))) {
if (false)
sl('same_length: ' + i + ',' + b + '; [' + m.substr(b) + '], ['
+ s + '] of [' + n + ']');
if (s1.indexOf(s, b) === b)
b += i;
if (false) {
sl('*same_length: ' + i + ',' + b + '; [' + m.charAt(b)
+ '], [' + n.charAt(b) + '] of [' + n + ']');
var s_l = i && m.charAt(b) == n.charAt(b) ? b + 1 : b;
sl('*same_length: ' + s_l + ':' + m.slice(0, s_l) + ',<em>'
+ m.slice(s_l) + '</em>; ' + n.slice(0, s_l) + ',<em>'
+ n.slice(s_l) + '</em>');
}
}
return i && s1.charAt(b) === s2.charAt(b) ? b + 1 : b;
};
/**
* 去除指定字串中重複字元。 remove duplicate characters in a string.
*
* @param {String}string
* 指定字串。
*
* @returns 去除重複字元後之字串。
*/
function remove_duplicate_characters(string) {
string = String(string);
if (!string)
return '';
string = string.split('');
var i = 0, length = string.length, code_array = [], code;
for (; i < length; i++) {
code = string[i].charCodeAt(0);
if (code in code_array) {
string[i] = '';
} else {
code_array[code] = 1;
}
}
return string.join('');
}
_// JSDT:_module_
.remove_duplicate_characters = remove_duplicate_characters;
// -----------------------------------------------------------------------------
/**
* 產生將數字轉為 K, M, G 等數量級(order of magnitude)表示方式的轉換器。<br />
* 原理:先設好各 symbol 使用之下限,比完大小後使用此 symbol。
*
* TODO: full test
*
* @param {Array}symbol
* array of {String}symbol
* @param {Integer}[base]
* define what power
* @param {Integer}[index_of_1]
* 純量的 index。no prefix. 這之前的算做小數。
* @param {String}intervening
* intervening string, 將插入於數字與 symbol 間。e.g.,
* @return {Function} 改變表示方式之轉換器。
* @return {undefined} 輸入有問題。
* @requires to_fixed
* @see <a href="http://www.merlyn.demon.co.uk/js-maths.htm#DTS"
* accessdate="2012/8/18 12:17">JRS - JavaScript Maths - J R Stockton</a>
* @_memberOf _module_
*/
function set_order_prefix(symbol, base, index_of_1, intervening) {
if (!Array.isArray(symbol) || !symbol.length)
return;
if (!base)
base = 10;
if (!index_of_1) {
index_of_1 = 0;
if (symbol[0])
symbol.unshift('');
}
var magnitude = 1, length = symbol.length, value = new Array(length), index = index_of_1;
// 先設定好各數量級(order of magnitude)之大小。
while (++index < length) {
magnitude *= base;
value[index] = magnitude;
}
if (index_of_1) {
index = index_of_1;
magnitude = 1;
while (index--) {
magnitude /= base;
value[index] = magnitude;
}
}
value[index_of_1] = 1;
if (intervening) {
for (index = 0; index < length; index++) {
symbol[index] = intervening + symbol[index];
}
}
library_namespace.debug('magnitude array of base ' + base + ': ['
+ value + ']', 1, 'set_order_prefix');
library_namespace.debug('prefixes of base ' + base + ': [' + symbol
+ ']', 1, 'set_order_prefix');
// cache 引入: symbol, value, length.
return (
/**
* 將數字轉為 K, M, G 等數量級(order of magnitude)表示方式。
*
* @param {Number}number