Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(764)

Unified Diff: runtime/vm/object.cc

Issue 9195031: Add ByteArray interface and provide internal and external implementations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: address remaining review comments Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/object_store.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index ecd63e0205d53c58125abc328347963d8999ccc7..9a368e6624fa0cf9ce29f9c3599a568a695bf540 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -539,7 +539,7 @@ void Object::Init(Isolate* isolate) {
const Script& script = Script::Handle(Bootstrap::LoadScript());
// Allocate and initialize the Object class and type.
- // The Object and ByteBuffer classes are the only pre-allocated
+ // The Object and ExternalByteArray classes are the only pre-allocated
// non-interface classes in the core library.
cls = Class::New<Instance>();
object_store->set_object_class(cls);
@@ -550,9 +550,15 @@ void Object::Init(Isolate* isolate) {
type = Type::NewNonParameterizedType(cls);
object_store->set_object_type(type);
- cls = Class::New<ByteBuffer>();
- object_store->set_byte_buffer_class(cls);
- cls.set_name(String::Handle(String::NewSymbol("ByteBuffer")));
+ cls = Class::New<InternalByteArray>();
+ object_store->set_internal_byte_array_class(cls);
+ cls.set_name(String::Handle(core_lib.PrivateName("_InternalByteArray")));
+ cls.set_script(script);
+ core_lib.AddClass(cls);
+
+ cls = Class::New<ExternalByteArray>();
+ object_store->set_external_byte_array_class(cls);
+ cls.set_name(String::Handle(core_lib.PrivateName("_ExternalByteArray")));
cls.set_script(script);
core_lib.AddClass(cls);
@@ -596,6 +602,11 @@ void Object::Init(Isolate* isolate) {
type = Type::NewNonParameterizedType(cls);
object_store->set_list_interface(type);
+ cls = CreateAndRegisterInterface("ByteArray", script, core_lib);
+ pending_classes.Add(&Class::ZoneHandle(cls.raw()));
+ type = Type::NewNonParameterizedType(cls);
+ object_store->set_byte_array_interface(type);
+
// The classes 'Null' and 'void' are not registered in the class dictionary,
// because their names are reserved keywords. Their names are not heap
// allocated, because the classes reside in the VM isolate.
@@ -667,8 +678,11 @@ void Object::InitFromSnapshot(Isolate* isolate) {
cls = Class::New<ImmutableArray>();
object_store->set_immutable_array_class(cls);
- cls = Class::New<ByteBuffer>();
- object_store->set_byte_buffer_class(cls);
+ cls = Class::New<InternalByteArray>();
+ object_store->set_internal_byte_array_class(cls);
+
+ cls = Class::New<ExternalByteArray>();
+ object_store->set_external_byte_array_class(cls);
cls = Class::New<Instance>();
object_store->set_object_class(cls);
@@ -1226,9 +1240,12 @@ RawClass* Class::GetClass(ObjectKind kind) {
case kImmutableArray:
ASSERT(object_store->immutable_array_class() != Class::null());
return object_store->immutable_array_class();
- case kByteBuffer:
- ASSERT(object_store->byte_buffer_class() != Class::null());
- return object_store->byte_buffer_class();
+ case kInternalByteArray:
+ ASSERT(object_store->internal_byte_array_class() != Class::null());
+ return object_store->internal_byte_array_class();
+ case kExternalByteArray:
+ ASSERT(object_store->external_byte_array_class() != Class::null());
+ return object_store->external_byte_array_class();
case kStacktrace:
ASSERT(object_store->stacktrace_class() != Class::null());
return object_store->stacktrace_class();
@@ -4552,6 +4569,17 @@ bool Library::IsKeyUsed(intptr_t key) {
}
+RawString* Library::PrivateName(const char* name) {
+ ASSERT(name[0] == '_');
+ ASSERT(strchr(name, '@') == NULL);
+ String& str = String::Handle();
+ str = String::New(name);
+ str = String::Concat(str, String::Handle(this->private_key()));
+ str = String::NewSymbol(str);
+ return str.raw();
+}
+
+
void Library::Register() const {
ASSERT(Library::LookupLibrary(String::Handle(url())) == Library::null());
raw_ptr()->next_registered_ =
@@ -7433,50 +7461,79 @@ const char* ImmutableArray::ToCString() const {
}
-RawByteBuffer* ByteBuffer::New(uint8_t* data,
- intptr_t len,
- Heap::Space space) {
+intptr_t ByteArray::Length() const {
+ // ByteArray is an abstract class.
+ UNREACHABLE();
+ return 0;
+}
+
+
+const char* ByteArray::ToCString() const {
+ // ByteArray is an abstract class.
+ UNREACHABLE();
+ return "ByteArray";
+}
+
+
+RawInternalByteArray* InternalByteArray::New(intptr_t len,
+ Heap::Space space) {
Isolate* isolate = Isolate::Current();
- const Class& byte_buffer_class =
- Class::Handle(isolate->object_store()->byte_buffer_class());
- ByteBuffer& result = ByteBuffer::Handle();
+ const Class& internal_byte_array_class =
+ Class::Handle(isolate->object_store()->internal_byte_array_class());
+ InternalByteArray& result = InternalByteArray::Handle();
{
- RawObject* raw = Object::Allocate(byte_buffer_class,
- ByteBuffer::InstanceSize(),
+ RawObject* raw = Object::Allocate(internal_byte_array_class,
+ InternalByteArray::InstanceSize(len),
space);
NoGCScope no_gc;
result ^= raw;
result.SetLength(len);
- result.SetData(data);
+ memset(result.Addr<uint8_t>(0), 0, len);
}
return result.raw();
}
-bool ByteBuffer::Equals(const Instance& other) const {
- if (this->raw() == other.raw()) {
- // Both handles point to the same raw instance.
- return true;
+RawInternalByteArray* InternalByteArray::New(const uint8_t* data,
+ intptr_t len,
+ Heap::Space space) {
+ InternalByteArray& result =
+ InternalByteArray::Handle(InternalByteArray::New(len, space));
+ {
+ NoGCScope no_gc;
+ memmove(result.Addr<uint8_t>(0), data, len);
}
+ return result.raw();
+}
- if (!other.IsByteBuffer() || other.IsNull()) {
- return false;
- }
- ByteBuffer& other_array = ByteBuffer::Handle();
- other_array ^= other.raw();
+const char* InternalByteArray::ToCString() const {
+ return "_InternalByteArray";
+}
- intptr_t len = this->Length();
- if (len != other_array.Length()) {
- return false;
- }
- return memcmp(this->Addr<uint8_t>(0), other_array.Addr<uint8_t>(0), len) == 0;
+RawExternalByteArray* ExternalByteArray::New(uint8_t* data,
+ intptr_t len,
+ Heap::Space space) {
+ Isolate* isolate = Isolate::Current();
+ const Class& external_byte_array_class =
+ Class::Handle(isolate->object_store()->external_byte_array_class());
+ ExternalByteArray& result = ExternalByteArray::Handle();
+ {
+ RawObject* raw = Object::Allocate(external_byte_array_class,
+ ExternalByteArray::InstanceSize(),
+ space);
+ NoGCScope no_gc;
+ result ^= raw;
+ result.SetLength(len);
+ result.SetData(data);
+ }
+ return result.raw();
}
-const char* ByteBuffer::ToCString() const {
- return "ByteBuffer";
+const char* ExternalByteArray::ToCString() const {
+ return "_ExternalByteArray";
}
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/object_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698