Tagged Questions

splice copies data between two file descriptors of which one must be a pipe. Effectively, this is equivalent to a userland function that performs a read/write operation to and from a kernel-owned buffer.

learn more… | top users | synonyms

11
votes
2answers
463 views

Which file systems support splicing via Linux's splice(2)?

The man page for the splice system call says that splice may fail and set errno to EINVAL if: Target file system doesn't support splicing; neither of the descriptors refers to a pipe; or offset ...
8
votes
1answer
279 views

vmsplice() and TCP

In the original vmsplice() implementation, it was suggested that if you had a user-land buffer 2x the maximum number of pages that could fit in a pipe, a successful vmsplice() on the second half of ...
6
votes
3answers
3k views

A question about JavaScript's slice and splice methods

I came across the following code: var f = function () { var args = Array.prototype.slice.call(arguments).splice(1); // some more code }; Basically, the result in args is an array that is ...
5
votes
1answer
147 views

Funny behaviour of Array.splice()

I was experimenting with the splice() method in jconsole a = [1,2,3,4,5,6,7,8,9,10] 1,2,3,4,5,6,7,8,9,10 Here, a is a simple array from 1 to 10. b = ['a','b','c'] a,b,c And this is b ...
5
votes
1answer
1k views

Array splice throws error in IE

IE7 and IE8 are not letting me splice my array (Safari, Chrome, Firefox work): lzaCreateAd1.weatherArray = new Array(); var jWeatherIcon = $('.weatherIcon'); ...
3
votes
5answers
111 views

Removing an element from an array specifying a value in Javascript

Hi so I have read this question: JavaScript Array Delete Elements And it appears that both splice and delete require an index of the element in order to remove, so how can I easily find the index ...
3
votes
5answers
469 views

How can I splice a string?

I know I can slice a string in Python by using array notation: str[1:6], but how do I splice it? i.e., replace str[1:6] with another string, possibly of a different length?
3
votes
1answer
2k views

Split a MYSQL string from GROUP_CONCAT into an ( array, like, expression, list) that IN () can understand

This question follows on from MYSQL join results set wiped results during IN () in where clause? So, short version of the question. How do you turn the string returned by GROUP_CONCAT into a ...
3
votes
1answer
334 views

Invalid argument when calling linux splice()

I wanted to try out the splice syscall. I have this function - it should copy content of one file to another: static void test_splice( int in, int out ) { int i = 0, rcvd = 0; int ...
3
votes
2answers
1k views

How can I use Linux's splice() function to copy a file to another file?

here's another question about splice(). I'm hoping to use it to copy files, and am trying to use two splice calls joined by a pipe like the example on splice's Wikipedia page. I wrote a simple test ...
2
votes
1answer
72 views

Why splice with sockets cannot improve performance without DMA?

In Wikipedia's introduction to splice, I found: When using splice() with sockets, the network controller (NIC) must support DMA. When the NIC does not support DMA then splice() will not ...
2
votes
3answers
54 views

duplicating arrays javascript splicing

I have come across a strange bug in my code and I cannot understand why it happens. I have an array array1. I duplicate array1 by making array2 equal to array1. I then modify array2 using splice to ...
2
votes
2answers
155 views

Linux splice() returning EINVAL (“Invalid argument”)

I'm trying to experiment with using splice (man 2 splice) to copy data from a UDP socket directly to a file. Unfortunately the first call to splice() returns EINVAL. The man page states: EINVAL ...
2
votes
1answer
121 views

How to properly list items from array after splice

I have some example code: var array = []; array[0] = {id:0}; array[1] = {id:1}; array[2] = {id:2}; Now array looks like [Object{id=0}, Object{id=1}, Object{id=2}] I use splice: ...
2
votes
4answers
238 views

Javascript: How do I splice a value from an array with an index of 0?

I am attempting to remove a value from an array using splice. starting at 0 and ending at 0 splice, but it is not removing the value at index 0. I added a function getItemRow to check the species ...
2
votes
2answers
277 views

How to record / splice FLV clips?

I'm working on an application for a company that wants to create a service for their users. This company currently offers videos that are around 1.5 hours in length, and the service they want to ...
2
votes
7answers
653 views

JS string.split() without removing the delimiters

How can I split a string without removing the delimiters? Let's say I have a string: var string = "abcdeabcde"; When I do var newstring = string.split("d"), I get something like this: ...
2
votes
5answers
376 views

Howto delete every second and third element from an array in Javascript?

I want to delete every second and third element from an array in Javascript. My array looks like this: var fruits = ["Banana", "yellow", "23", "Orange", "orange", "12", "Apple", "green", "10"]; ...
2
votes
2answers
553 views

Javascript: What's the algorithmic performance of 'splice'?

That is, would I be better suited to use some kind of tree or skip list data structure if I need to be calling this function a lot for individual array insertions?
2
votes
5answers
131 views

(kind of) rotating and slicing elements of a container in C++

I have a std::vector that holds a Point struct (x,y,z and some other non-pointer types). These points are control points for drawing a bspline curve. I'm not having trouble drawing the curve, but ...
2
votes
1answer
650 views

A better way to splice an arrray into an array in javascript

Is there a better way than this to splice an array into another array in javascript var string = 'theArray.splice('+start+', '+number+',"'+newItemsArray.join('","')+'");'; eval(string);
1
vote
5answers
55 views

Splice first and last 3 digits off a short integer?

I have lots of variables in an array like this: short num = 7123;. The value is ALWAYS 4 digits long. How to go about turning this into a = 7; b = 123;? All I can think of is converting to ...
1
vote
1answer
20 views

Jquery Save Json to Two Variables and Then Splice Only One

I want to save Json into two variables so that I can manipulate one, and save the original when I need to restore and reset the data to the original. The Json has 4 items. I have my two variables, ...
1
vote
1answer
40 views

Understanding sendfile() and splice()

sendfile() can be used to transmit data from a "file" descriptor to a "socket" descriptor in order to get data from machine A to machine B. Is it possible to get the data at the receiving end from the ...
1
vote
2answers
118 views

DMA copy in splice()

I am new to linux kernel. And recently, i've went through the sendfile syscall in kernel 2.6.33. The following is the sequence of my journey: do_sendfile() => do_splice_direct() => ...
1
vote
3answers
61 views

deleting a specific object in a javascript array

im doing a test on deleting objects inside an array... since this is a test, this is rather an informal code.. <script type="text/javascript"> // initialize array and objects var fruits = new ...
1
vote
1answer
58 views

Are two typelists spliceable in a constant time?

I'm working a bit with typelists defined in Alexandrescu's Modern C++ Design. In his books, he talks about Appending a type to a typelist, but he doesn't talk about splicing two typelists... I guess ...
1
vote
3answers
168 views

Python - regex - Splitting string before word

I am trying to split a string in python before a specific word. For example, I would like to split the following string before "path:". split string before "path:" input: "path:bte00250 Alanine, ...
1
vote
5answers
109 views

javascript item splice self out of list

If I have an array of objects is there any way possible for the item to splice itself out of the array that contains it? For example: If a bad guy dies he will splice himself out of the array of ...
1
vote
4answers
144 views

Alternate method to splice function in JavaScript

Hi i am working on LIME programming which is a subset of javascript. i need to use javascript.splice to remove certain elements from my array, sad to say, LIME does not support splice function. Any ...
1
vote
1answer
531 views

Javascript Error: DOM Exception 8 using jQuery and an Array

I am getting this error: Uncaught Error: NOT_FOUND_ERR: DOM Exception 8 Here is my code (please suggest anything to make it more efficient / cleaner): Basically this is a button thats adding ...
1
vote
1answer
580 views

Question about epoll and splice

My application is going to send huge amount of data over network, so I decided (because I'm using Linux) to use epoll and splice. Here's how I see it (pseudocode): epoll_ctl (file_fd, EPOLL_CTL_ADD); ...
1
vote
1answer
233 views

Determining whether a readable file descriptor is the read end of a pipe

I would like to use splice to zero-copy data from STDIN_FILENO to a file descriptor (which could be to a regular file, char or block device, FIFO, or anything that can be opened with open). In order ...
1
vote
1answer
235 views

javascript splice() indexing problem

I have to add some value to an array. Code for example : temp[0]=new Array("0","0"); temp[1]=new Array("0","0"); temp[2]=new Array("0","0"); temp[3]=new Array("0","0"); temp[4]=new Array("0","0"); ...
1
vote
2answers
2k views

Splicing a string indexed array in JavaScript

Gday All, I have a string indexed array that I would like to remove an item from. Consider the following example code: var arr = new Array(); arr[0] = "Zero"; arr[1] = "One"; ...
0
votes
0answers
20 views

Looking for kernel patch that support splice/sendfile takes sockets as input file?

The linux kernel only supports splice from regular file to socket. I've seen some articles that talks about the patch that supports the reverse splice but I didn't find it. I would be appreciated ...
0
votes
2answers
32 views

Rapahel set.splice() throws error

The following code throws an error "s.splice is not a function": var s = this.paper.set(); s.push(this.paper.rect(10,10,100,100)); s.push(this.paper.rect(10,10,100,100)); ...
0
votes
5answers
49 views

Javascript: searching within an array for dupes

This is what I am trying to do: I present the user with a textarea and he must enter some domains, if he enters the same domain twice (a duplicate) I want to delete the dupes. So far I have come till ...
0
votes
0answers
81 views

VBA Array Manipulation

I found a macro (courtesy of Jerry Beaucaire) that splits up one worksheet into many based on unique values in a given column. This works great. However... The client has supplied a differently ...
0
votes
1answer
46 views

jQuery - Splice after first non-alpha-numerical?

I am trying to incorporate a splice such that it tests for 2 things: Characters cannot be longer than 20, removes the rest It stops at the first non-alpha-numerical, removes the rest ? How would I ...
0
votes
3answers
59 views

javascript splice - strange issue

I wonder what's wrong with this $(function() { var arr1=new Array('A','B','C','D','E','F','G'); var arr2=new Array('F','D','B'); var arr3=arr1; for(x=0; x<arr3.length; x++) { ...
0
votes
3answers
138 views

Removing item from array by value in JavaScript giving unpredictable results

I have this code for removing an item from an array by value in JS... function remove_item(index){ //log out selected array console.log('before >> ' + selected); // //log out item ...
0
votes
2answers
167 views

c++ list splicing help

I am trying to splice this list but I am getting an error saying no matching function when I call the splice. All my #includes are correct as far as I know. Error is coming from every line that calls ...
0
votes
1answer
79 views

Did (javascript's) splice somehow get changed/bugged in Firefox 4.0+?

According to http://www.hunlock.com/blogs/Mastering_Javascript_Arrays , which is what I have been using as a reference for splicing arrays, // Insert without deleting. ...
0
votes
0answers
90 views

write PHP content to socket in a optimized way

I wrote a web server that supports PHP. I used the FILE *file= popen("php -f test.php","r") and fread(buffer, fileLen, 1, file);to read the php output and sent to the socket using send() method. ...
0
votes
2answers
145 views

C# Editing a string to add newlines at certain lengths

I'm building an application that needs to deal with twitter messages. I have need of a functionality that cuts a string up at 30 characters, if the character at the 30 index isn't a space it will ...
0
votes
1answer
214 views

.splice() array with array of non-sequential indexes - javascript

I have an array like this Array['one','two','three','four','five'] and I have an array like this Array['2','4','0'] indicating the indexes of the elements in the first array I wish to remove or ...
0
votes
2answers
444 views

JavaScript splice problem

A have an array of Objects and I'd like to remove the first element from it and read some of its properties. But I can't. Here is the code: $.test = function(){ var array = [ {a: "a1", b: "b1"}, ...
0
votes
3answers
178 views

Removing specific elements from global array on checkbox check and un-check with JavaScript

I am trying to update a global array when a user checks or un-checks checkboxes in a form. The array will then be submitted to the server to update the checked options in the database. I have got as ...
0
votes
0answers
286 views

splice() from pipe to TCP buffered?

xpost from linuxquestions.org, sorry... I wrote a small test program to see if a simple proxy would benefit from using splice() but it always takes 200ms for the data that I spliced from a pipe to a ...

1 2