Defensive programming is a form of defensive design intended to ensure the continuing function of a piece of software in spite of unforeseeable usage of said software. Defensive programming techniques are used especially when a piece of software could be misused mischievously or inadvertently to ...
2
votes
4answers
59 views
Carried throws declarations for RuntimeExceptions
Suppose I have a method or a constructor that uses another method or constructor internally that declares a RuntimeException can be thrown.
// Example:
public MyClass(Object arg) {
setVar(arg);
...
2
votes
2answers
74 views
defensive programming on a menu. what type of input should I have?
I tried to have defensive programming having input as an integer but the program would go into infinite loop if I entered a character.
I then switched to having input as a character, but it does the ...
0
votes
6answers
139 views
Copy constructors and defensive copying
What is a copy constructor? Can someone share a small example that can be helpful to understand along with defensive copying?
1
vote
2answers
28 views
Secure-by-default django ORM layer---how?
I'm running a Django shop where we serve each our clients an object graph which is completely separate from the graphs of all the other clients. The data is moderately sensitive, so I don't want any ...
3
votes
1answer
66 views
Objective-C defensive copying in accessor methods
Coming from a Java background, I'm having trouble figuring out ways to program defensively in Objective-C.
Assuming SomeClass is mutable and provides a copy method, this is a typical piece of code I'd ...
-1
votes
6answers
123 views
Is there nothing wrong with digits in identifier name?
Since in C\C++\Java -
int 2a ; //invalid suffix "a" on integer constant
Is there nothing wrong with digits in the rest of variant name although it's valid syntax ?
Like -
int num1 ;
int ...
3
votes
2answers
345 views
XmlSerializer - How can I set a default when deserializing an enum?
I have a class that looks like this (heavily simplified):
public class Foo
{
public enum Value
{
ValueOne,
ValueTwo
}
[XmlAttribute]
public Value Bar { get; set; ...
3
votes
4answers
123 views
Does User.Identity.Name ever throw?
I notice User.Identity.Name appears to return the empty string when there is no user authenticated, rather than throwing a null reference exception.
It is valid to assume User.Identity.Name will ...
3
votes
2answers
107 views
Adding *copies* of entries from Java Map<String, Object> propertyMap
I would like to add copies of a propertyMap to my propertyMap:
public void addProperties(Map<String, Object> propertyMap) {
for (Map.Entry<String, Object> propertyEntry : ...
0
votes
2answers
84 views
Proper form in C++ [duplicate]
Possible Duplicate:
What is the difference between these (bCondition == NULL) and (NULL==bCondition)?
From this question it says "const object on left side of comparison" is some how ...
236
votes
19answers
12k views
What's the purpose of using { … } for a single line?
I'm reading some lecture notes of my C++ lecturer and he wrote the following:
Use Indentation // OK
Never rely on operator precedence - Always use parentheses // OK
Always use a { } block ...
11
votes
7answers
181 views
How can I declare derived “shell” classes that do nothing but act as renames?
I have two different kinds of strings I'm passing around and using in my code, and the two are closely related, but should not be confused for one another. I thought I could help myself avoid errors ...
0
votes
2answers
180 views
Can I prevent a derived class from calling its own functions? (C++)
Consider the following base class, which will count how many times I call CallDerivedFunction:
class B {
public:
B() {numCalls = 0;}
void CallDerivedFunction() {numCalls++; ...
3
votes
5answers
137 views
Defensive anti-multithreading class implementation
I have an object that is not safe for multithreaded applications (in several ways), and I want to provide an internal check to make sure that critical methods are not accessed concurrently.
Question
...
6
votes
1answer
618 views
Logging with Vala
I am new to Vala programming and have experiences with Java and .NET yet I haven't been able to find anything useful on how to log with Vala. Is there any useful logging facility like log4j or log4net ...
4
votes
9answers
419 views
Should I leave an unreachable break in a case where I throw an exception?
Is it silly of me to leave unreachable break statements in a case that just throws an Exception anyway? The defensive part of me wants to leave it there in the event that the logic changes. Another ...
-1
votes
3answers
130 views
validating content of input file
I have this defensive-programming issue that I don't really know how to solve.
I have this function that takes file path and size of table (rows / columns count) as arguments and I'm looking for ...
1
vote
2answers
179 views
Is this defensive programming? [closed]
I've always thought defensive programming was evil (and I still do), because typically defensive programming in my experience has always involved some sort of unreasonable sacrifices based on ...
1
vote
4answers
262 views
Clojure : Maps of Lists of Maps of … How to wrangle anyonymous data structures
Hi guys : In java we've all had the experience of using our ide to "traverse" down the depths of a complex data type :
dog.getCollar().getCollarTag().getName();
However, in Clojure, this becomes ...
1
vote
3answers
163 views
GSON vulnerabilities or exploits on deserialization to avoid
I am planning to use gson's fromJson() method to parse a string coming from the browser. Are there any potential vulnerabilities associated with doing that? The data type I am converting to is ...
7
votes
2answers
431 views
Defensive programming and exception handling
A couple days ago, I have following theoretical questions on the exam:
(a) Explain what is meant by defensive programming when dealing with
exceptional circumstances that may occur during the ...
4
votes
7answers
204 views
C Syntax Question
Is it considered bad coding to put a break in the default part of a switch statement? A book I was reading said that it was optional but the teacher counted off for using it.
19
votes
2answers
562 views
How to combine defensive programming techniques together?
The question I want to ask you is quite wide but in the same time it's very concrete. First, I have to say, that I mostly interested in answers which are applicable in the .net environment.
Well, I ...
1
vote
3answers
321 views
C++ defensive programming: reading from a buffer with type safety
Let's say I have a class that I don't own: DataBuffer. It provides various get member functions:
get(uint8_t *value);
get(uint16_t *value);
...
When reading from a structure contained in this ...
3
votes
5answers
202 views
C# anonymous backing fields with non-auto properties
I want to make a private member variable that is private even to the class that owns it, and can ONLY be accessed by its getters and setters.
I know you can do this with auto-properties like
private ...
10
votes
4answers
5k views
Is it possible that Java String.split can return a null String[]
Is it possible for split to return a null String[]? I am curious as I want to try to be as defensive as possible in my code without having unnecessary checks. The code is as follows:
String[] ...
0
votes
3answers
121 views
What happens if I post to a site a million times repeatedly? [closed]
I was just trying to post something to a website via my localhost to retrieve some data, and suddenly, this idea came to my mind: What happens if I create a post, put it into a for loop that runs over ...
0
votes
1answer
205 views
Improving setValueForKeyPath robustness
I have created an extension to NSObject to allow for object properties to be set from data contained in a PLIST or dictionary. I did use setValuesForKeysWithDictionary but this only works for keys ...
4
votes
2answers
204 views
How well are Cocoa UI and general framework elements protected against malicious attacks?
So far I had little concern about overall security considerations, because I have been developing only promotional and uncritical iPhone apps.
Currently, however, I'm working on a Mac application ...
0
votes
1answer
129 views
Parasoft rulewizard
I'm trying to create a static rule to check the token passing for defensive programming in a SIL4 application.
The rule is the following: "Each functions shall have a const uint_32 as last parameter"
...
0
votes
4answers
52 views
Is it a good practice to add extra checks in disabled GUI options?
I'm referring to the following:
void setup_gui()
{
if (some_condition)
some_button.disable();
...
}
void some_button_click()
{
// Is this a good practice?
if ...
2
votes
2answers
220 views
process self defence like antivirus
I write program for defence system, antivirus anti malware etc. And i have a problem with defensing process from killing thru tast manager->Kill Process. I test some antiviruses and they dont let me ...
22
votes
5answers
2k views
Erlang's let-it-crash philosophy - applicable elsewhere?
Erlang's (or Joe Armstrong's?) advice NOT to use defensive programming and to let processes crash (rather than pollute your code with needless guards trying to keep track of the wreckage) makes so ...
0
votes
2answers
67 views
A question about checking for the existence of a file versus the directory being empty and reliability
I know that pretty much every programming language has a method to check the existence of a file or directory.
However, in my case, a file is made which stores program settings. If it does not exist ...
12
votes
3answers
2k views
What's the most defensive way to loop through lines in a file with Perl?
I usually loop through lines in a file using the following code:
open my $fh, '<', $file or die "Could not open file $file for reading: $!\n";
while ( my $line = <$fh> ) {
...
}
However, ...
3
votes
5answers
195 views
Defensive database programming- robust code with T-SQL?
In the application development there is a concept of defensive programming. How to implement defensive programming techniques and writing robust code using Transact-SQL?
0
votes
6answers
249 views
How else can this code be optimized for defensive programming?
For my data structures project, the goal is to read in a provided file containing over 10000 songs with artist, title and lyrics clearly marked, and each song is separated by a line with a single ...
7
votes
8answers
374 views
How to avoid key-loggers when authenticating access
As per the title really, just what can be done to defeat key/keystroke logging when authenticating access?
I have just posted a related question ...
8
votes
2answers
696 views
JavaScript anti-silent techniques to indicate failure
What would be a good way to report errors in JavaScript instead of relying on nulls, and undefineds when errors do occur and a function is unable to proceed forward. I can think of three approaches:
...
5
votes
3answers
461 views
Why are fail fast style programs shorter than defensive style programs?
I have read about how the fail-fast style of programming in languages like Erlang end up with much shorter programs than the defensive style found in most other languages. Is this correct for all ...
11
votes
2answers
2k views
Getting meaningful error messages from fstream's in C++
What is the best way to get meaningful file access error messages, in a portable way from std::fstreams ? The primitiveness of badbits and failbits is getting to be bit annoying. I have written my own ...
2
votes
1answer
432 views
Why is the MVC paradigm best suited for web applications?
I'm fairly certain my professor will ask me why I chose to use MVC for my web application.
Truth be told, I'm new to MVC. I read about it, I'm building a blog application using it, I think it's very ...
1
vote
4answers
1k views
Java Defensive Copies
I've seen defensive copies coded like this
void someMethod(Date d) {
myDate = new Date( d.getTime() );
}
But that doesn't make sense to me, isn't there a way in Java to create an Identical copy ...
0
votes
4answers
191 views
Robust Code framework?
I hate writing code that makes my software more solid. This is something the framework should have done! So, is anybody aware of a code "enhancing" utility that solidifies the code?
If I had to ...
0
votes
4answers
1k views
Basic defensive programming [duplicate]
Possible Duplicate:
Favorite (Clever) Defensive Programming Best Practices
I am always advised by some programmers to pay concentration to easy debugging. What is defensive programming and to ...
6
votes
14answers
854 views
How defensive should you be? [duplicate]
Possible Duplicate:
Defensive programming
We had a great discussion this morning about the subject of defensive programming. We had a code review where a pointer was passed in and was not ...
0
votes
3answers
115 views
Defensive techniques for ASP.MVC for internet facing site
I am working on my first asp MVC project that will ultimately end up on a publicly accessible web server (I have worked on some internal apps in MVC). What techniques, practices should I be thinking ...
2
votes
1answer
981 views
IOrderedEnumerable and defensive programming
I'm fond of defensive programming.
I hate exception throwing, but this is not the subject of my question.
I adapted an extension to linQ to be able to perform an order by with a column name
...
31
votes
12answers
2k views
techniques for obscuring sensitive strings in C++
I need to store sensitive information (a symmetric encryption key that I want to keep private) in my C++ application. The simple approach is to do this:
std::string myKey = ...
7
votes
10answers
2k views
Defensive Programming: Guidelines in Java
I’m from a .NET background and now dabbling in Java.
Currently, I’m having big problems designing an API defensively against faulty input. Let’s say I’ve got the following code (close enough):
...

