The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
23 views

What is an internal field count and what is SetInternalFieldCount used for?

I'm having trouble understanding what the SetInternalFieldCount() function actually does. In the v8 documentation the function is described as setting "the number of internal fields for objects ...
0
votes
0answers
35 views

The semantics of v8::ResourceConstraints?

The v8::ResourceConstraints class is defined as follows: class V8EXPORT ResourceConstraints { public: ResourceConstraints(); int max_young_space_size() const { return max_young_space_size_; } ...
1
vote
0answers
39 views

Trace-execute scripts in embedded JavaScript engine V8

While using v8 JavaScript engine I do this: script->Run(); but I want to do something like that: while (!script->Finished()) { script->NextOperation(); printf("current line: %i\n", ...
0
votes
1answer
65 views

How to free up the memory claimed by V8?

An application I'm working on embeds V8 for scripting. To conserve memory, I want to shut down the scripting component when it is not needed, but for some reason the memory is never returned to the ...
0
votes
0answers
50 views

Is there a libv8 binding for Java?

I've tested jav8 which is outdated and does not work out-of-the-box. Is there a better option? The default JavaScript engine in Java is too slow.
1
vote
1answer
114 views

How to setup Google's v8 javascript standalone engine for remote debugging?

How do I setup/build/run a Google's V8 Engine so that I can call a sample javascript file and see it interpreted step by step all the way down to C++ code?
1
vote
1answer
196 views

v8::FunctionTemplate referencing a non-global variable

Google's v8 documentation describes how to add a global function to a JavaScript context. We can implement a printf-like function quite easily using the new lambda feature from C++11: ...
3
votes
3answers
236 views

“Hello World” + JS V8 + VS2010

I downloaded and built JS V8 for using in VS2010 in Release mode. Now I try run Hello World example: #include "v8.h" int _tmain(int argc, _TCHAR* argv[]) { v8::HandleScope handle_scope; ...
2
votes
2answers
354 views

Why does v8 saves the source code of native javascript in generated binaries?

I've been studying the v8 source, particularly at how the 'mksnapshot' tool includes a compiled image of the native javascript files(runtime.js, json.js...) in the v8 binaries and noticed that it also ...
0
votes
0answers
152 views

Why is V8 crashing when wrapped in class

I am trying to wrap V8 in a class structure where there exists one object that exposes JavaScript callbacks to the C++ code, which should do some data handling. The idea was to keep context and ...
0
votes
0answers
107 views

How to merge two separated v8::ObjectTemplate s?

I'm currently generating different APIs that are dependent of the compiler flags. These APIs are on the global namespace later, using the parameter for the ObjectTemplate. Now I want to implement ...
0
votes
0answers
125 views

How to implement a console.debug() with JSON stringify a proper way with the correct v8::Context?

My implementation works, but stops all execution after being called inside the JavaScript code. console.log('...'); // prints the toString() string to stdout, correct behaviour, w/o any func being ...
1
vote
0answers
257 views

How to reuse a global_object correctly with multiple v8::Context s?

I'm refactoring my V8 with OpenGL implementation and got stuck with a problem on the execution context. The concept is the following: V8GL::initialize() This method initializes a context and the ...
0
votes
1answer
547 views

How to call a v8::Function with custom modified v8::Arguments?

I want to call JSON.stringify method from the C++ side with modified arguments, but any solution that came to my mind results in a weird segfault with all frames being at "??". I want to do the ...
0
votes
1answer
133 views

Does glBindTexture() require a GLuint pointer?

I'm trying to implement OpenGL bindings for Texture usage in OpenGL/V8/JavaScript. My question is pretty simple: Does OpenGL's glBindTexture() method require a pointer to a GLuint or does it only ...
3
votes
2answers
2k views

Calling a v8 javascript function from c++ with an argument

I am working with c++ and v8, and have run into the following challenge: I want to be able to define a function in javascript using v8, then call the function later on through c++. Additionally, I ...
1
vote
1answer
430 views

Embedding Google V8 into ANSI C Application - where to start?

I would like to embed a javascript engine into an ANSI C application. In fact, I would like to be able to run some code entered on runtime, while being able to interact with some C variables and ...
2
votes
1answer
297 views

How do scopes and thread locals work in (V8's) C++?

I am intrigued by how V8's scopes work. How can a scope object on the stack find other scope objects and contexts further up the stack? Digging into how HandleScopes worked I found that they rely on ...
4
votes
2answers
220 views

How to “Lock down” V8?

I'm new to V8 and plan on using it in a python web application. The purpose is to let users submit and execute certain JS scripts. Obviously this is a security threat so I'm looking for resources that ...
0
votes
0answers
163 views

Calling lxml's .xpath() from inside a PyV8 context with invalid xpath crashes Python. Why?

Calling lxml's .xpath() from inside a PyV8 context with invalid xpath crashes Python. Why? Is there a way I can use lxml to check if s is a valid xpath expression before attempting to use it in a ...
0
votes
2answers
563 views

Rubyracer (V8 binding for Ruby) performs really slow

So, I have a TCP server in eventmachine and therubyracer is used as a way to pre-pend operations (like filters or extensions) to the server. It all works charming when the server is not receiving a ...
3
votes
1answer
104 views

Invalidating handles that point to a deleted C++ object

When a C++ object that is exposed to v8 is deleted, how can I invalidate handles that may pointed to this object. I'm using v8 as a scripting interface to a larger application. Objects in the ...
4
votes
3answers
1k views

Access the Abstract Syntax Tree of V8 Engine

Is it possible to access the AST of the v8 engine, for a given JavaScript code? I'm working on a JavaScript Static Analyzer using V8 engine.
4
votes
1answer
719 views

Hello World example for V8 using gyp

Since SCons has been deprecated. I used the gyp to generate vs solution. I did what they told me on the build BuildingWithGYP. And the v8 project builded ok! and I got the v8_base.lib but no v8.lib. ...
2
votes
3answers
634 views

http functions in V8 javascript engine

I want to use the V8 javascript engine standalone, e.g. I will run it in command line as explained here: $> ./v8-shell -e 'print("10*10 = " + 10*10)' I want the javascript to perform some http ...
2
votes
1answer
389 views

Installing PHPv8js on Ubuntu

I'm having some trouble installing phpv8js on Ubuntu. I've made sure I have a recent version of libv8 installed and have the required version of PHP but the install fails using PECL. Here's the ...
0
votes
2answers
999 views

v8 extension for node.js - cannot set FunctionTemplate to target

I'm just starting out with writing a binding to a C library (link-grammar, to be precise) via a v8 extension (following instructions on Node.JS docs and v8 API docs). My problem is that I am getting ...
0
votes
2answers
1k views

C++ Console app, SetWindowsHookEx, Callback is never called

I have a little console application that has an embedded v8 engine, and I would like to add a hook to register key events. This all worked before when I was using Qt and QtScript, but I am porting it ...
0
votes
0answers
46 views

where to find embedded-v8 sources to build?

I tried http://v8.googlecode.com/svn/trunk/v8-read-only but I got a 404 error. I just need the library to be compiled, I am not interested in editing the source so I do not need snv, scons, and so on. ...
1
vote
4answers
1k views

Are there any HTML5 Canvas implementations for embedding in c++

I'm working on a browser based game atm and already looking into options porting it to other platforms such as consoles or devices where playing in a web browser may not be suitable. The game is ...
8
votes
1answer
3k views

How to expose “native functions” to Javascript in a web page using Chromium and Delphi 6?

I have successfully embedded Chromium into my Delphi 6 projects with the help of Delphi Chromium Embedded. Now I want to be able to execute Javascript code and the have results returned to my host ...
7
votes
2answers
455 views

Perl: Javascript::V8 templates - from the perl

Looking for template engine like HTML::Mason (or Mason), so what "compiles" source components into perl code, but instead of perl-code will "compile" components into JavaScript code and after ...
2
votes
1answer
678 views

V8 JavaScript Engine and Mac App Store

If I embed the V8 JavaScript Engine in my application (a game) is it still possible to distribute it in the Mac & iOS App Stores?
1
vote
1answer
218 views

v8 Cannot access properties from script compiled in new context

I've created a simple 'require' mechanism (https://gist.github.com/1031869), in which the included script is compiled and run in a new context. However, when I call a function in the included script ...
9
votes
3answers
5k views

How can I embed V8 in a Java application?

I'm looking for a solution for embedding the Google JavaScript engine V8 in my Java application. Have you got some solutions?
5
votes
2answers
2k views

Fastest possible Javascript object serialization with Google V8

I need to serialize moderately complex objects with 1-100's of mixed type properties. JSON was used originally, then I switched to BSON which is marginally faster. Encoding 10000 sample objects ...
2
votes
1answer
422 views

Including Google's V8 Javascript Engine in a QTCreator C++ Console Project

How do I include Google's V8 Javascript Engine in a QTCreator Console Project? I have already compiled V8 and I have played around with the example shell and d8 developer shell. I'd like to start ...
1
vote
5answers
2k views

Embedding Mono vs Google V8?

We want to add scripting to a project. We are hesitating which script engine to use. I have used in the past V8 and it's quite impressive. I have used Mono as well but in toy-projects or prototypes ...
2
votes
1answer
1k views

In V8, how would I remove wrapped C++ objects after their JavaScript counterparts are garbage-collected?

Let's say I have the code provided in this tutorial. How would I modify this so that the Point C++ object that is created has its destructor called and is deleted from memory when the GC for V8 ...
0
votes
1answer
359 views

Problem using accessors in V8

I'm writing a wrapper class around the V8 engine so that eventually I'll be able to do something like this script->createClass("Test"); ...
1
vote
5answers
913 views

Segmentation Fault when wrapping V8 in a class?

I want to use Google's Javascript Engine V8 in a project, and attempted to write a wrapper class for the engine. Parts of the Code are copied from samples/shell.cc, from the V8 Distribution. However, ...
0
votes
1answer
671 views

how to create an utf8 string in Google V8 engine

Hello Im using v8 engine embedded in C++ program and I met a string problem. Well of course v8 engine fully support utf8 string, but i just dont know how. char path[ 1024 ]; GetCurrentDirectory( ...
7
votes
2answers
1k views

JavaScript Standard Library for V8

In my application, I allow users to write plugins using JavaScript. I embed V8 for that purpose. The problem is that developers can't use things like HTTP, Sockets, Streams, Timers, Threading, ...