The resource-management tag has no wiki summary.
2
votes
2answers
32 views
Manually opening a Java 7 auto-managed resource
So Java 7 has a nifty feature that automatically closes an AutoCloseable class. If I have Bar implement Closeable (which in turn extends AutoCloseable), and have a way to get an open Bar from a Foo, I ...
1
vote
0answers
41 views
best way to store configurations
I'm implementing a configuration manager with full API, similar to the Windows registry.
I want it to be human readable, as in being able to open and edit it with a text editor.
I want it to be able ...
1
vote
1answer
45 views
How to ensure to close database connection in Ruby?
I am learning Ruby. I am trying to make a connection to MySQL db using mysql gem. One of my concern is connection closing.
How should I ensure the connection closing at unexpected situations such as ...
1
vote
5answers
173 views
Static variable that will not be disposed
I have a static StreamWriter variable in my class:
private static StreamWriter streamWriter = CreateStreamWriter(pathToFile);
I am not closing this StreamWriter in my app since it needs to be open ...
0
votes
2answers
135 views
Release IO resources in scala without maintaining mutable state
I need to use some Java library, which might throw some exceptions in one method and return error codes in another set of methods. So far it leads to the ugly code like
val txn = ...
5
votes
2answers
159 views
RAII wrapper for function pairs and template specialization
I've written a RAII wrapper for C function pairs which initialize and release resources and it serves me well for most cases.
#include <GL/glfw.h>
#include <string>
#include ...
0
votes
0answers
23 views
Error and Information Messages supporting multiple languages
I want to create a Windows Form Application. I know how to use changing Localization and CultureInfo. There will be too many Error messages and Information Messages shown in Message Boxes. I wonder ...
0
votes
0answers
48 views
Generating resources in ASP.NET MVC App at runtime
I need a utility that reads an existing resource file (both the main dll and the satellite) from an ASP.NET MVC app and append resources to it.
It's not so straightforward and I came to finalize ...
0
votes
1answer
103 views
Does it make no sense to have a external resource dll in ASP MVC?
I have been trying to find recommended practices for resource management in the ASP.NET MVC app.. (target .NET 4.0 )
so far I have not been able to figure out whether should I add a separate ...
0
votes
1answer
113 views
Retreving images through a .resx vs static images in asp.net web app
Our current scenario seems to be tailor made for .resx files, but my understanding is a bit murky, and I am looking for some calcification.
Our webApp is skinned differently for our different ...
4
votes
1answer
166 views
Comparing weak_ptr to raw pointer doesn't work, looking for alternative
I have a SpriteManager class that loads and caches sprites for me, and removes unused sprites from the cache. That's the idea anyways, I'm a bit stuck. I have a ...
9
votes
1answer
149 views
Why does Enumerable.Range Implement IDisposable?
Just wondering why Enumerable.Range implements IDisposable.
I understand why IEnumerator<T> does, but IEnumerable<T> doesn't require it.
(I discovered this while playing with my ...
1
vote
1answer
84 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 ...
0
votes
2answers
138 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
83 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 ...
20
votes
18answers
858 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 ...
2
votes
1answer
155 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 ...
1
vote
0answers
39 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 ...
0
votes
0answers
191 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 ...
3
votes
2answers
271 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 ...
4
votes
2answers
559 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 ...
5
votes
3answers
501 views
MySQLdb Best Practices [closed]
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 ...
3
votes
2answers
86 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 ...
18
votes
6answers
593 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 ...
9
votes
9answers
1k 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));
...
2
votes
6answers
162 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 ...
3
votes
2answers
419 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 ...
4
votes
3answers
534 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 ...
10
votes
5answers
461 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 ...
5
votes
3answers
104 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() { /* ...
1
vote
4answers
176 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
2answers
192 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
233 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, ...
2
votes
3answers
120 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 ...
7
votes
1answer
455 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
3answers
600 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# ...
5
votes
7answers
1k views
What is the relationship between the using keyword and the IDisposable interface?
If I am using the using keyword, do I still have to implement IDisposable?
5
votes
5answers
482 views
When not to use RAII for resource management [closed]
Can anyone provide me with one or more concrete examples in which RAII was not the most efficient method for resource management, and why?
1
vote
3answers
100 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 ...
2
votes
2answers
152 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?
5
votes
1answer
619 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 ...
9
votes
6answers
1k 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 ...
0
votes
1answer
70 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 { ...
36
votes
4answers
4k 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 ...
4
votes
8answers
321 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 ...
6
votes
6answers
555 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 ...
1
vote
2answers
586 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 ...
0
votes
4answers
198 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
87 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 ...
5
votes
4answers
250 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?