src: deduplicate CHECK_EQ/CHECK_NE macros
[platform/upstream/nodejs.git] / src / node_javascript.cc
1 // Copyright Joyent, Inc. and other Node contributors.
2 //
3 // Permission is hereby granted, free of charge, to any person obtaining a
4 // copy of this software and associated documentation files (the
5 // "Software"), to deal in the Software without restriction, including
6 // without limitation the rights to use, copy, modify, merge, publish,
7 // distribute, sublicense, and/or sell copies of the Software, and to permit
8 // persons to whom the Software is furnished to do so, subject to the
9 // following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included
12 // in all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17 // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18 // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19 // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 // USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22 #include "node.h"
23 #include "node_natives.h"
24 #include "v8.h"
25 #include "env.h"
26 #include "env-inl.h"
27
28 #include <string.h>
29 #if !defined(_MSC_VER)
30 #include <strings.h>
31 #endif
32
33 namespace node {
34
35 using v8::Handle;
36 using v8::HandleScope;
37 using v8::Local;
38 using v8::Object;
39 using v8::String;
40
41 Handle<String> MainSource(Environment* env) {
42   return OneByteString(env->isolate(), node_native, sizeof(node_native) - 1);
43 }
44
45 void DefineJavaScript(Environment* env, Handle<Object> target) {
46   HandleScope scope(env->isolate());
47
48   for (int i = 0; natives[i].name; i++) {
49     if (natives[i].source != node_native) {
50       Local<String> name = String::NewFromUtf8(env->isolate(), natives[i].name);
51       Handle<String> source = String::NewFromUtf8(env->isolate(),
52                                                   natives[i].source,
53                                                   String::kNormalString,
54                                                   natives[i].source_len);
55       target->Set(name, source);
56     }
57   }
58 }
59
60 }  // namespace node