27
27
namespace node {
28
28
29
29
using v8::Array;
30
+ using v8::ArrayBuffer;
30
31
using v8::Context;
31
32
using v8::EscapableHandleScope;
33
+ using v8::Float64Array;
32
34
using v8::Function;
33
35
using v8::FunctionCallbackInfo;
34
36
using v8::FunctionTemplate;
@@ -528,6 +530,37 @@ Local<Value> BuildStatsObject(Environment* env, const uv_stat_t* s) {
528
530
return handle_scope.Escape (stats);
529
531
}
530
532
533
+ void FillStatsArray (double * fields, const uv_stat_t * s) {
534
+ fields[0 ] = s->st_dev ;
535
+ fields[1 ] = s->st_mode ;
536
+ fields[2 ] = s->st_nlink ;
537
+ fields[3 ] = s->st_uid ;
538
+ fields[4 ] = s->st_gid ;
539
+ fields[5 ] = s->st_rdev ;
540
+ #if defined(__POSIX__)
541
+ fields[6 ] = s->st_blksize ;
542
+ #else
543
+ fields[6 ] = -1 ;
544
+ #endif
545
+ fields[7 ] = s->st_ino ;
546
+ fields[8 ] = s->st_size ;
547
+ #if defined(__POSIX__)
548
+ fields[9 ] = s->st_blocks ;
549
+ #else
550
+ fields[9 ] = -1 ;
551
+ #endif
552
+ // Dates.
553
+ #define X (idx, name ) \
554
+ fields[idx] = (static_cast <double >(s->st_ ##name.tv_sec ) * 1000 ) + \
555
+ (static_cast <double >(s->st_ ##name.tv_nsec / 1000000 )); \
556
+
557
+ X (10 , atim)
558
+ X (11 , mtim)
559
+ X (12 , ctim)
560
+ X (13 , birthtim)
561
+ #undef X
562
+ }
563
+
531
564
// Used to speed up module loading. Returns the contents of the file as
532
565
// a string or undefined when the file cannot be opened. The speedup
533
566
// comes from not creating Error objects on failure.
@@ -618,12 +651,15 @@ static void Stat(const FunctionCallbackInfo<Value>& args) {
618
651
BufferValue path (env->isolate (), args[0 ]);
619
652
ASSERT_PATH (path)
620
653
621
- if (args[1 ]->IsObject ()) {
622
- ASYNC_CALL (stat, args[1 ], UTF8, *path)
623
- } else {
654
+ if (args[1 ]->IsFloat64Array ()) {
655
+ Local<Float64Array> array = args[1 ].As <Float64Array>();
656
+ CHECK_EQ (array->Length (), 14 );
657
+ Local<ArrayBuffer> ab = array->Buffer ();
658
+ double * fields = static_cast <double *>(ab->GetContents ().Data ());
624
659
SYNC_CALL (stat, *path, *path)
625
- args.GetReturnValue ().Set (
626
- BuildStatsObject (env, static_cast <const uv_stat_t *>(SYNC_REQ.ptr )));
660
+ FillStatsArray (fields, static_cast <const uv_stat_t *>(SYNC_REQ.ptr ));
661
+ } else if (args[1 ]->IsObject ()) {
662
+ ASYNC_CALL (stat, args[1 ], UTF8, *path)
627
663
}
628
664
}
629
665
@@ -636,12 +672,15 @@ static void LStat(const FunctionCallbackInfo<Value>& args) {
636
672
BufferValue path (env->isolate (), args[0 ]);
637
673
ASSERT_PATH (path)
638
674
639
- if (args[1 ]->IsObject ()) {
640
- ASYNC_CALL (lstat, args[1 ], UTF8, *path)
641
- } else {
675
+ if (args[1 ]->IsFloat64Array ()) {
676
+ Local<Float64Array> array = args[1 ].As <Float64Array>();
677
+ CHECK_EQ (array->Length (), 14 );
678
+ Local<ArrayBuffer> ab = array->Buffer ();
679
+ double * fields = static_cast <double *>(ab->GetContents ().Data ());
642
680
SYNC_CALL (lstat, *path, *path)
643
- args.GetReturnValue ().Set (
644
- BuildStatsObject (env, static_cast <const uv_stat_t *>(SYNC_REQ.ptr )));
681
+ FillStatsArray (fields, static_cast <const uv_stat_t *>(SYNC_REQ.ptr ));
682
+ } else if (args[1 ]->IsObject ()) {
683
+ ASYNC_CALL (lstat, args[1 ], UTF8, *path)
645
684
}
646
685
}
647
686
@@ -655,12 +694,15 @@ static void FStat(const FunctionCallbackInfo<Value>& args) {
655
694
656
695
int fd = args[0 ]->Int32Value ();
657
696
658
- if (args[1 ]->IsObject ()) {
659
- ASYNC_CALL (fstat, args[1 ], UTF8, fd)
660
- } else {
697
+ if (args[1 ]->IsFloat64Array ()) {
698
+ Local<Float64Array> array = args[1 ].As <Float64Array>();
699
+ CHECK_EQ (array->Length (), 14 );
700
+ Local<ArrayBuffer> ab = array->Buffer ();
701
+ double * fields = static_cast <double *>(ab->GetContents ().Data ());
661
702
SYNC_CALL (fstat, 0 , fd)
662
- args.GetReturnValue ().Set (
663
- BuildStatsObject (env, static_cast <const uv_stat_t *>(SYNC_REQ.ptr )));
703
+ FillStatsArray (fields, static_cast <const uv_stat_t *>(SYNC_REQ.ptr ));
704
+ } else if (args[1 ]->IsObject ()) {
705
+ ASYNC_CALL (fstat, args[1 ], UTF8, fd)
664
706
}
665
707
}
666
708
0 commit comments