Tagged Questions
The resource-management tag has no wiki summary.
53
votes
50answers
3k views
When Programmers Don’t Have Enough Work, what to do?
How to utilize programmers effectively when they don’t have Enough Work?
40
votes
11answers
3k views
Please help us non-C++ developers understand what RAII is
Another question I thought for sure would have been asked before, but I don't see it in the "Related Questions" list.
Could you C++ developers please give us a good description of what RAII is, why ...
24
votes
4answers
2k views
What Automatic Resource Management alternatives exists for Scala?
I have seen many examples of ARM (automatic resource management) on the web for Scala. It seems to be a rite-of-passage to write one, though most look pretty much like one another. I did see a pretty ...
18
votes
6answers
442 views
What happens if delete[] p fails?
Suppose I have a pointer to a dynamically allocated array of 10 elements:
T* p = new T[10];
Later, I want to release that array:
delete[] p;
What happens if one of the T destructors throws an ...
17
votes
18answers
694 views
Why free resources if the program is already quitting?
Many libraries like SDL, etc, etc have in their tutorials method calls that free resources right before quitting the program, but as far as I know, most OSes free all memory from the processes when ...
11
votes
2answers
819 views
Is it possible to prevent DoSing on Google App Engine?
I'm considering developing an app for Google App Engine, which should not get too much traffic. I'd really rather not pay to exceed the free quotas. However, it seems like it would be quite easy to ...
10
votes
8answers
15k views
Where to close java PreparedStatements and ResultSets?
Consider the code:
PreparedStatement ps = null;
ResultSet rs = null;
try {
ps = conn.createStatement(myQueryString);
rs = ps.executeQuery();
// process the results...
} catch ...
9
votes
12answers
716 views
Looking for a solution to the “Dishwasher At Work” problem
I am looking for an algorithm to apply to the "dishwasher at work" problem.
While it is great to be able to put dirty coffee cups etc. in it, you quickly run into the "what is the state of the ...
8
votes
5answers
149 views
Closing nested Reader
When reading from a text file, one typically creates a FileReader and then nests that in a BufferedReader. Which of the two readers should I close when I'm done reading? Does it matter?
FileReader fr ...
8
votes
5answers
1k views
RAII in Java… is resource disposal always so ugly?
I just played with Java file system API, and came down with the following function, used to copy binary files. The original source came from the Web, but I added try/catch/finally clauses to be sure ...
7
votes
9answers
322 views
Handling IO exceptions in Java
Basically, I want to open a file, read some bytes, and then close the file. This is what I came up with:
try
{
InputStream inputStream = new BufferedInputStream(new FileInputStream(file));
...
7
votes
1answer
355 views
Why is there no ARM in Scala stdlib?
Why is there no ARM (like Clojure's with-open) provided in the Scala standard library?
7
votes
6answers
815 views
What wrapper class in C++ should I use for automated resource management?
I'm a C++ amateur. I'm writing some Win32 API code and there are handles and weirdly compositely allocated objects aplenty. So I was wondering - is there some wrapper class that would make resource ...
6
votes
3answers
299 views
What does “opening a connection” actually mean?
I was trying to explain to someone why database connections implement IDisposable, when I realized I don't really know what "opening a connection" actually mean.
So my question is - What does c# ...
6
votes
6answers
346 views
Why are file handles such an expensive resource?
In holy wars about whether garbage collection is a good thing, people often point out that it doesn't handle things like freeing file handles. Putting this logic in a finalizer is considered a bad ...
5
votes
3answers
94 views
How to deal with a class than encapsulates a disposible instance?
interface IMyInterace
{
void Open();
object Read();
void Close();
}
class MyImplementation : IMyInterface
{
public void Open() { /* instantiates disposible class */ }
//...
public void Close() { /* ...
4
votes
3answers
166 views
MySQLdb Best Practices
I'm currently developing a Python script that does a few things with some data pulled from a MySQL database. To access this data, I'm using the module MySQLdb.
This module follows the guidelines laid ...
4
votes
1answer
303 views
String resource file naming schemes and management
A trivial question perhaps, but I'm interested in the answers. I'm currently refactoring some very large monolithic string resource files (one dumpster resource file per project, in about 30 ...
4
votes
8answers
228 views
Using RAII with a character pointer
I see a lot of RAII example classes wrapping around file handles.
I have tried to adapt these examples without luck to a character pointer.
A library that I am using has functions that take the ...
4
votes
4answers
176 views
IDisposable chain
If I implement a object with IDisposable, should all objects that own that object implement it as well, even if they have no other resources to release?
4
votes
4answers
663 views
Is C++ like resource management possible in Java [closed]
In C++ we have Resource Acquisition Is Initialization (RAII) pattern, which extremely simplify the resource management. The idea is to provide some wrapping object for any kind of resources. The ...
3
votes
2answers
117 views
Early finalization and memory leaks in C++/CLI library
I'm having issues with finalizers seemingly being called early in a C++/CLI (and C#) project I'm working on. This seems to be a very complex problem and I'm going to be mentioning a lot of different ...
3
votes
2answers
71 views
Do (POSIX) Operating Systems recover resources after a process crashes?
Let's assume we have a process that allocates a socket listening on a specific port, does something with it and then terminates abnormaly. Now a second process starts and wants to allocate a socket ...
3
votes
1answer
437 views
iPhone: Is there an automated way to identify unused resources?
As I've developed my app, I have imported and incorporated a lot of images, sounds, etc. I guess I could just write a shell script that greps the source code, but I'm wondering if there's an existing ...
2
votes
1answer
41 views
How do I clean up after my Daemon?
I am running a local instance of HTTP::Daemon using a modified version of the looping structure outlined in the documentation. I have made it possible to exit the loop at the user's request, but a ...
2
votes
6answers
149 views
Closing a resource stored in Option[ ]
I have a resource object stored in an option.
private var ochan: Option[Channel] = None
At some point during program execution, ochan is set to Some(channel). I'd like to close the channel (via ...
2
votes
3answers
241 views
Why is use better than using?
According to the last sentence on this MSDN page use is to be preferred over using. I've heard it elsewhere (this answer, for example). Why is this? I realize use was added later. But what's the ...
2
votes
3answers
105 views
Do you clean before you make mess? On putting cleanup code inside finally block
I have a question concerning exception handling and resource management and I was wondering if anybody could share their opinion. I need to perform a sequence of actions: read app settings, setup the ...
2
votes
2answers
119 views
Is a million users hitting one file on the server the same as a million users hitting a million different files?
Is a million users hitting one file on the server the same as a million users hitting a million different files?
2
votes
2answers
3k views
HttpContext.GetGlobalResourceObject always returns null
I created two files in the App_GlobalResources folder:
SiteResources.en-US.resx
SiteResources.sp-SP.resx
Both contain a value for "SiteTitleSeparator".
Here is what I am trying to do (The ...
1
vote
0answers
16 views
UIWebView: Access to OS graphics/resources?
I am using a UIWebView instance to show a help page in an app. Within that HTML can I make reference to graphics provided by the OS (e.g., backgrounds, icons, etc.)? What would be the URLs to said ...
1
vote
1answer
81 views
Close Opened Hibernation sessions if exist
When a Hibernate session is opened (sessionFactory.openSession()) it might be closed. It is ok. In case it is missed to close an opened session which is used to retrieve data (not to save or update or ...
1
vote
0answers
18 views
Storing and loading internationalized resources from other storage mechanisms
We have a feature request for a Windows Forms application where we want to give the sys admin the ability to redefine application strings and other internationalizable values (control ...
1
vote
1answer
119 views
Are Locks AutoCloseable?
Are Locks AutoCloseable? That is, instead of:
Lock someLock = new ReentrantLock();
someLock.lock();
try
{
// ...
}
finally
{
someLock.unlock();
}
can I say:
try (Lock someLock = new ...
1
vote
4answers
133 views
sharing a data member with the outside world in a thread-safe manner
I would really appreciate some advise on this matter.
e.g.
class Foo
{
TData data;
public:
TData *getData() { return &data; } // How can we do this in a thread safe manner ?
};
So I ...
1
vote
1answer
72 views
Does anybody knows a software that tracks multiple projects and resources?
I am looking something that:
Allows me to create projects (with a duration) and assign needed roles for them (I don't care about tasks or a gantt chart in this tool, just a project view)
Allows me ...
1
vote
2answers
367 views
Problem with resources location difference in eclipse and JARs
I wrote a program that is based completely on a single text file: I read the file, store the information, then search the information, etc. So, for the program to work, the file just has to be present ...
1
vote
4answers
934 views
Are there examples for programming-languages support automatic management of resources besides memory?
The idea of automatic memory management has gained big support with new programming languages. I'm interested if concepts exists for automatic management of other resources like files, network-sockets ...
0
votes
2answers
74 views
What is the best way to manage handing off of closeable resources in Scala?
I'm looking at the scala-arm library, prompted by this answer, and it looks great for managing resources in most contexts.
There's one context, though, that it doesn't, on first glance, appear to ...
0
votes
1answer
31 views
Is there some standard way to explicitly close services and other resources?
For instance when using database connection, threading or IO streams (all what is required explicit closing/free up) is there some standard way of doing this? Perhaps by implementing some standard ...
0
votes
0answers
69 views
Changing ResourceManager (Make it Updatable)
I have a project in MVC 3 (Razor) For localization we are using Strongly typed resources.
We want to have possibility to update translation that already exist "on-line". It means, that it should be ...
0
votes
0answers
203 views
Create Eclipse C/C++ project and import existing source files
i have written a huge project in C++. I would like to create an Eclipse project to handle my code with a full IDE.
How can this be accomplished? My workstation uses Eclipse Galileo. I would like to ...
0
votes
2answers
206 views
Do I have to manually shut down an Executor at application exit?
Suppose I have an Executor executor; somewhere in my application. Is it sufficient to just say setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); as usual and let "the system" deal with it, or do I have ...
0
votes
2answers
102 views
Graceful handing over resources from initramfs to userspace
There are hardware devices which need userspace suppport, like daemon running and handling parts of interaction not suitable (too complex or policy-related) for kernel space.
Running such daemons is ...
0
votes
1answer
162 views
Best practices for resource management when targeting multiple iDevices?
Considering that the family of iDevices is expanding, I guess this is a problem that more people than me have started to run into:
How do you efficiently manage resources, such as 3D models, ...
0
votes
1answer
56 views
Is this a good way to manage initializations of COM?
I'm very new to anything involving Component Object Model, and I'm wondering if this method of managing calls to CoInitalize/CoUninitalize makes sense:
COM.hpp:
#pragma once
namespace WindowsAPI { ...
0
votes
4answers
132 views
close a thread against a mysql database in c#
what is the proper way of closing a tread after running a query against a MySql database from a windows form in C#.
is a simple open close enough like this?
conn.Open();
//querycode
conn.Close():
...
0
votes
1answer
79 views
How to limit the effect of client modifications to production systems
Our shop has developed a few WEB/SMS/DB solution for a dozen client installations. The applications have some real-time performance requirements, and are just good enough to function properly. The ...