Tagged Questions
0
votes
1answer
101 views
Embedded scripting language with C/C++ API for multithreading environment [closed]
I'm looking for an embedded scripting language.
I don't need anything fancy, just basic constructs like conditionals, loops, logic and arithmetic operations etc.
I have the following requirements
...
3
votes
1answer
85 views
Constant folding in the preprocessing stage
I have a piece of C code I need to deobfuscate. It contains a bunch of tricky macros. I ran the code through C preprocessor and indent and now it looks similar to this:
switch (9263 + 1505) {
case ...
1
vote
1answer
105 views
gwan -r dosn't read newest file
I've been using Gwan v4.1.18 and for development purposes I often use
./gwan -r [somefile]
However often I find that when I update the file I am running the updates are found when I execute the ...
-1
votes
3answers
261 views
How to return value from C Program to a Shell Script?
I have written a C Program for Bubble Sort, which takes two command-line arguments : name of a file & number of values(numbers) in that file, and the main() function of this program returns the ...
3
votes
2answers
321 views
GDB-Python scripting: any samples iterating through C/C++ struct fields
The new GDB-Python scripting API looks quite powerful and should be very useful. However writing a useful script to iterate through the fields in a struct of C or C++ is not trivial. Does any one know ...
0
votes
1answer
159 views
Encapsulating one-line AppleScript with C system() call using fgets() and echo
If I have condensed an AppleScript into one line, how can I encapsulate it to run in an echo system call from a C program? All the formatting I have tried result in errors: (single quotes, double ...
-3
votes
1answer
56 views
search for integer (version number) in file using script [closed]
I have a file as given below, I need to access a particular string from the below given text file.
** The gSOAP code generator for C and C++, soapcpp2 release 2.8.12
** Copyright (C) 2000-2012, ...
0
votes
0answers
63 views
How to implement background compilation feature in an IDE? [closed]
I'm creating a custom IDE for a custom scripting language. Existing compiler (/interpreter) for this particular language gives only 1 syntax error at a time. So, I can't use the existing compiler for ...
0
votes
0answers
181 views
Loading and running a small script on a microcontroller with limited functionality?
I am doing a project with a fairly powerful 32-bit microcontroller, the STM32F4 (with 192K RAM and 1024K Flash). I am using C. The system I wish to create consists of this controller (I'll call it the ...
6
votes
1answer
249 views
Using C/C++ as scripting language
I am trying to create an architecture that would use C/C++ as "scripting language". I already have a prototype working based on:
http://www.codeproject.com/Articles/29999/Compiling-C-code-at-runtime
...
2
votes
3answers
210 views
Is it possible to write scripting language that translates to C code?
I have an idea to create scripting language which will make people to program easier doing a lot of macros, functions, simpler function names everything more simpler for simple person to work with. ...
1
vote
0answers
164 views
Embedding Angelscript in a C application and exposing C++ like objects to host (C) application
I am writing a C application which I want to add scripting functionality to. I have decided to use AngelScript since it satisfies my requirements and can also be embedded in a C application, using its ...
0
votes
2answers
286 views
Login and management over telnet in embedded linux
We are moving over from C on AVR to an embedded Linux platform.
Appreciate some 'best practice' suggestions on how we should program (e.g. bash scripting/c program) a telnet 'management console' to ...
0
votes
3answers
57 views
How to respond requests with the windows host file?
Using the windows host file located in
windows/system32/drivers/etc/host
Is it possible to respond a request from an application like when it is offline(not connected to the Internet)? Could ...
6
votes
6answers
723 views
Scripting language interpreter source code to learn from
I want to read, and learn from, the source code of a scripting language's interpreter/compiler. What scripting language interpreter/compiler has the simplest, cleanest, and easiest to read source ...
1
vote
2answers
65 views
writing an install file for my code
I have written a C code on ubuntu linux and would like to make an install file for it. Unfortunately I don't know where to start :(
my code using other packages found online, I want the install file ...
3
votes
2answers
75 views
How to handle labels in a scripting language I'm writing?
So I've been stewing over this for a long time, thinking about it. Here's a code example first, and then I'll explain it.
:main
dostuff
otherlabel
:otherlabel
dostuff
Alright so in ...
7
votes
8answers
3k views
What is a good scripting language for a small embedded system?
I am looking for a scripting language that can be included in an embedded system to allow the user to pre-configure the unit behaviour based on the system events (I/O port changes, time events...). ...
-1
votes
1answer
73 views
bash : input word becomes null with is inputed to a C binary
I have C binary program that receives one-word input. I have a file which contains a list of the words to be inputted to the program, one at a time.
so my script looks something like this"
while ...
2
votes
3answers
62 views
Arithmetical operations in certain script language
I am working on certain script language. Values containing structure is
struct myvar
{
char name[NAMELEN];
int type;
void* value;
}
type = 0 --> int* value
type = 1 --> char* value
type ...
3
votes
2answers
132 views
Responsibility between script and host application
I've been trying to decide how to embed Lua into my application for scripting and extension purposes.
I have a class which handles objects that have structures which resemble Lua tables. (specifically ...
-1
votes
1answer
54 views
Which way would be better? [closed]
I'm using shell scripting for various tasks. Is it better to stick with shell scripting? or is it better to call c programs from that scripts to do the same tasks?
Better is defined as performance by ...
1
vote
3answers
530 views
String Comparision without Special Character
I have strings having special characters e.g.
"ravi", "Ravi" ,"!ravi","ravi...","RaVi)" etc..
I want all these to be treated as same. How to achieve this.
Can be in shell script, C,C++,JAVA.
...
8
votes
6answers
564 views
Can I use C as a scripting language for my engine?
I have a game engine right now and I'm looking for a scripting language for it. I tried Lua and find it quite good but I want to have my script to look like C or better C++ or look like unreal ...
7
votes
2answers
213 views
(Embedding Mono) Parallel activation of domains
I'm wondering if it's possible to activate multiple Mono domains and execute them in parallel from native code:
I use the following code to activate a domain:
///Create a new domain.
m_domain = ...
0
votes
2answers
385 views
When running a perl script on C program, I get GLOB(0x1a6a8830) as my output
For one of my projects, we had to write a multi-threaded program in C. Everything seemed to be going well. The professor then gave us a perl script to run with our C code once we were finished. ...
3
votes
1answer
2k views
How can I run this DTrace script to profile my application?
I was searching online for something to help me do assembly line profiling. I searched and found something on http://www.webservertalk.com/message897404.html
There are two parts of to this problem; ...
2
votes
5answers
380 views
Shell script to test command line program
I have a program written in C that operates similar to the below output.
WELCOME TO PROGRAM.
Hit 1 to do task 1.
Hit 2 to do task 2.
Hit q to quit.
What i need is a bash shell script that start ...
1
vote
3answers
103 views
Hack C, Call scripting func instead of C func?
The situation is a bit strange but bear with me. I need a scripting language that can easily be called in C (not cpp, C). preferably the script function can be called as a regular C function. I need ...
6
votes
6answers
3k views
Setting the global LUA_PATH variable from C++/C?
I'm trying to set my global LUA_PATH variable directly from C/C++, I'm using Lua from my iPhone applications, so my path tends does change between applications ( each iPhone app has a separate folder ...
1
vote
2answers
99 views
What's a good Wordpress extension for coloring C/C++/script code?
My research group uses a Wordpress blog. Frequently I want post snippets or even entire short programs I've been working on to it, with most of my code being written in C/C++ or scripting languages ...
1
vote
2answers
121 views
How to save “history” automatically depending on the directory
I work extensively using the shell. When I continue working on some project one week later, I go to some "folder" and realize that I do not remember what I was doing. Sometimes and before stopping ...
0
votes
2answers
99 views
Adding program arguments to C
How can I load the batch file console to my C console?
I know in batch The command is Showme.bat /B and it'll load the console into whatever console you called that file from.
What would that be in ...
8
votes
7answers
2k views
How to Write a Scripting Language using C?
How to Write a Scripting Language using C?
Any Idea? Links?
1
vote
3answers
100 views
supplying inputs to stdin programatically line by line?
I have a test program which prompts for input from user(stdin), and depending on inputs, it asks for other inputs, which also need to be entered.
is there a way I can have a script do all this work ...
1
vote
3answers
110 views
Automatically touch all files that use a certain #define (#ifdef foo / #endif)
Say you have a C project with tons of files, and tons of configurations managed by usign the -D option in GCC to define some flags.
In my particular case, I have loads of files with that kind of ...
0
votes
5answers
370 views
Looking for a script to convert multiline “block” comments in C/C++ to single line comments
A simple find/replace will not work for code commented out like this:
ex:
/* templine1
templine2
templine3 */
Got any ideas?
4
votes
1answer
405 views
Footprint of Lua on a PPC Micro
We're developing some code on Freescale PPC micros (5517 and 5668 at the moment), and I was wondering if we could put Lua on them.
The devices need to be easily programmed/reconfigured in the field, ...
0
votes
4answers
464 views
Making web server in C with native scripting support
I'm an intermediate C developer, trying to get better. I want to make a very basic and lightweight HTTP server with its own scripting language.
Could I use something like Lua for scripting? If not, ...
3
votes
5answers
634 views
What is the fastest way to compare two list of items?
I have two folders with approximately 10,000 files each. I'd like to write a script or program that can tell me if these folders are in sync and then tell me which files are missing from each to make ...
2
votes
1answer
926 views
How to get the incoming ssh/telnets clients local IP address from a shell script or C
I need a way to obtain a local (not WAN) address of an incoming telnet or ssh
session using a shell script or C.
0
votes
3answers
463 views
A scripting language to simply compile
I'm looking for a simple script language which I can compile easily by just
putting the .h files under an include folder and the .c/.cpp files under a source directory. Something without any Makefile.
...
-1
votes
10answers
920 views
Speedup writing C programs using a subset of the Python syntax
I am constantly trying to optimize my time. Writing a C code takes a lot of time and requires much more keyboard touches than say writing a Python program.
However, in order to speed up the time ...
0
votes
3answers
460 views
add current/selected user to a group
can anyone tell me how can I (programatically) add the current/selected user to a group (like power user, backup opetarors)
any function/info/code is welcomed
0
votes
2answers
61 views
Monitor the data in a table
How to write a shell script/process which runs like a daemon on Unix and continuously monitors a field in the table and sleeps for 30 sec's. The field value will regularly increase to a maximum value ...
9
votes
10answers
3k views
Scripting language for C/C++?
Is there a scripting language for C++ (like perl) which can be used for rapid development and use some tool which can convert into C/C++ program to get higher performance for deployment?
EDIT:
...
4
votes
2answers
1k views
Which javascript interpreter is the easiest to embedd in a C application?
There are a few available and i want to support many platforms so i guess V8 isn't that good unless someone has written an interpreter patch for it.
12
votes
8answers
2k views
How to implement a scripting language into a C application?
I have a C application and I want to include a Scripting Language to put certain functionality into scripts. I just have no experience with that and don't know exactly where to start (Still learning C ...
1
vote
3answers
96 views
Script to create a listing of: <Method Name> <Num of times called> for a particular project directory
Anyone know of a script to get a listing that will be able to tell me the most frequently called functions for a C project?
method1 391
method2 23
method3 12
Even better have it be customizable to ...
0
votes
4answers
474 views
Recommendations for encrypting/decrypting scripts elegantly?[Now on Sourceforge]
Update2:
Thanks for the input. I have implemented the algorithm and it is available for download at SourceForge. It is my first open source project so be merciful.
Update:
I am not sure I was ...
