User Hosam Aly - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T20:49:17Zhttp://stackoverflow.com/feeds/user/41283http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/388304/whats-wrong-with-copy-constructors-why-use-cloneable-interface3What's wrong with Copy Constructors? Why use Cloneable interface?Hosam Aly2008-12-23T06:30:59Z2009-12-19T11:09:16Z
<p>When programming C++ we used to create copy constructors when needed (or so we were taught). When switching to Java a few years ago, I noticed that the Cloneable interface is now being used instead. C# followed the same route defining the ICloneable interface. It seems to me that cloning is part of the definition of OOP. But I wonder, why were these interfaces created, and the copy constructor seems to have been dropped?</p>
<p>When I thought about it, I came to the thought that a copy constructor would not be useful if one needs to make a copy of an object whose type is not known (as in having a reference to a base type). This seems logical. But I wonder whether there are other reasons that I do not know of, for which the Cloneable interfaces have been favored over copy constructors?</p>
http://stackoverflow.com/questions/333435/file-read-write-locks1File Read/Write LocksHosam Aly2008-12-02T09:19:23Z2009-12-14T09:39:20Z
<p>I have an application where I open a log file for writing. At some point in time (while the application is running), I opened the file with Excel 2003, which said the file should be opened as read-only. That's OK with me.</p>
<p>But then my application threw this exception:</p>
<blockquote>
<p>System.IO.IOException: The process cannot access the file because another process has locked a portion of the file.</p>
</blockquote>
<p>I don't understand how Excel could lock the file (to which <em>my app</em> has write access), and cause my application to fail to write to it!</p>
<p>Why did this happen?</p>
<p>(Note: I didn't observe this behavior with Excel 2007.)</p>
http://stackoverflow.com/questions/515436/how-to-get-internet-ip/1887433#18874330Answer by Hosam Aly for How to get *internet* IP ?Hosam Aly2009-12-11T11:25:17Z2009-12-11T11:25:17Z<p>An alternative solution (that is probably more accurate) is to use the Windows <code>route</code> command. Here is some code that works for me on Windows Vista:</p>
<pre><code>static string getInternetConnectionIP()
{
using (Process route = new Process())
{
ProcessStartInfo startInfo = route.StartInfo;
startInfo.FileName = "route.exe";
startInfo.Arguments = "print 0.0.0.0";
startInfo.UseShellExecute = false;
startInfo.RedirectStandardOutput = true;
route.Start();
using (StreamReader reader = route.StandardOutput)
{
string line;
do
{
line = reader.ReadLine();
} while (!line.StartsWith(" 0.0.0.0"));
// the interface is the fourth entry in the line
return line.Split(new char[] { ' ' },
StringSplitOptions.RemoveEmptyEntries)[3];
}
}
}
</code></pre>
http://stackoverflow.com/questions/1310611/where-can-i-download-jboss-developer-studio-2-0-ga0Where can I download JBoss Developer Studio 2.0 GA?Hosam Aly2009-08-21T08:02:12Z2009-12-11T09:48:38Z
<p>I am trying to download JBoss Developer Studio 2.0 GA, but the best I can find on the <a href="http://sourceforge.net/projects/jboss/files/JBossIDE" rel="nofollow">SourceForge Downloads</a> page is <a href="http://sourceforge.net/projects/jboss/files/JBossIDE/JBossIDE%202.0.0.Beta2" rel="nofollow">JBossIDE 2.0.0.Beta2</a>. Is there a more recent version that I can download somewhere?</p>
<p>(I don't mind building it from source, although it's not my preferred option.)</p>
<p>Another question is about the file dates. In the <a href="http://sourceforge.net/projects/jboss/files/JBossIDE/JBossIDE%202.0.0.Beta2" rel="nofollow">download page</a>, all files have the date "Wed Oct 11 2006". Is it really <em>that</em> old?!</p>
http://stackoverflow.com/questions/475841/comparison-of-net-validation-frameworks3Comparison of .NET Validation FrameworksHosam Aly2009-01-24T10:38:21Z2009-12-05T02:37:57Z
<p>I was searching for a validation framework for .NET. I saw a few, but I didn't see any comparisons. Which one do you prefer to use, and why?</p>
http://stackoverflow.com/questions/498698/white-light-vs-black-dark-backgrounds-health-effects54White (Light) vs. Black (Dark) Backgrounds: Health EffectsHosam Aly2009-01-31T11:49:39Z2009-12-02T05:37:40Z
<p>I am adding a bounty to this question, hoping for some <em>scientific</em> research results. Thank you everybody!</p>
<p><hr /></p>
<p>I have recently tried working on dark backgrounds, and it seemed (to me) to be easier on the eye. However, today I read Gerrie Schenck's comment on <a href="http://stackoverflow.com/questions/498512/how-to-be-an-eco-friendly-programmer/498519#498519">this answer</a>, in which he said that mainframe developers were advised to use white backgrounds instead of black, as it is said that white is easier on the eye.</p>
<p>So which one is actually better for the eyes in the long run? I would be thankful for any (scientific) references about the subject, as my eyes really need some relaxation.</p>
<p>I wanted to make this question a community wiki, but I think that the least I can do to thank people is to reward their answers, so I'm leaving it as a normal question.</p>
<p>Many, many thanks for your help.</p>
<p>P.S. I don't know which tags would be appropriate for this question, so I'd be grateful if you could tag it in a better way than I did.</p>
http://stackoverflow.com/questions/1749452/making-python-use-code-in-my-directory-not-that-in-usr2Making Python Use Code in My Directory (not that in /usr/...)Hosam Aly2009-11-17T15:01:00Z2009-11-17T20:39:00Z
<p>I am trying to work on a Python library that is already installed on my (Ubuntu) system. I checked out that library, edited some files, and wrote a small script to test my changes. Even though I put my script in the same folder as that of the library, it seems Python is using the installed version instead (the one in <code>/usr/share/pyshared/...</code>).</p>
<p>This is my directory structure:</p>
<pre><code>src
+ my_package
- my_script.py
+ library_package
- lots_of_code
</code></pre>
<p>How can I tell Python to use the code in my directory, not the installed one?</p>
http://stackoverflow.com/questions/1634368/is-this-lock-free-queue-implementation-thread-safe6Is this (Lock-Free) Queue Implementation Thread-Safe?Hosam Aly2009-10-27T23:44:09Z2009-11-10T16:12:00Z
<p>I am trying to create a lock-free queue implementation in Java, mainly for personal learning. The queue should be a general one, allowing any number of readers and/or writers concurrently.</p>
<p>Would you please review it, and suggest any improvements/issues you find?</p>
<p>Thank you.</p>
<pre><code>import java.util.concurrent.atomic.AtomicReference;
public class LockFreeQueue<T> {
private static class Node<E> {
E value;
volatile Node<E> next;
Node(E value) {
this.value = value;
}
}
private AtomicReference<Node<T>> head, tail;
public LockFreeQueue() {
// have both head and tail point to a dummy node
Node<T> dummyNode = new Node<T>(null);
head = new AtomicReference<Node<T>>(dummyNode);
tail = new AtomicReference<Node<T>>(dummyNode);
}
/**
* Puts an object at the end of the queue.
*/
public void putObject(T value) {
Node<T> newNode = new Node<T>(value);
Node<T> prevTailNode = tail.getAndSet(newNode);
prevTailNode.next = newNode;
}
/**
* Gets an object from the beginning of the queue. The object is removed
* from the queue. If there are no objects in the queue, returns null.
*/
public T getObject() {
Node<T> headNode, valueNode;
// move head node to the next node using atomic semantics
// as long as next node is not null
do {
headNode = head.get();
valueNode = headNode.next;
// try until the whole loop executes pseudo-atomically
// (i.e. unaffected by modifications done by other threads)
} while (valueNode != null && !head.compareAndSet(headNode, valueNode));
T value = (valueNode == null ? null : valueNode.value);
// release the value pointed to by head, keeping the head node dummy
if (valueNode != null)
valueNode.value = null;
return value;
}
</code></pre>
http://stackoverflow.com/questions/1634378/is-there-a-tool-for-java-similar-to-microsofts-chess4Is there a tool for Java similar to Microsoft's CHESS?Hosam Aly2009-10-27T23:48:13Z2009-10-29T15:17:49Z
<p>Is there an existing tool for Java that is similar to Microsoft's <a href="http://research.microsoft.com/chess" rel="nofollow">CHESS</a>? Or is the CHESS source code open, so that I might try to convert it into Java?</p>
http://stackoverflow.com/questions/1636950/detect-system-architecture-x86-x64-while-running/1636972#16369723Answer by Hosam Aly for Detect system architecture (x86/x64) while runningHosam Aly2009-10-28T12:33:19Z2009-10-28T13:09:53Z<p>On Windows, you may use <a href="http://msdn.microsoft.com/en-us/library/hskdteyh.aspx" rel="nofollow"><code>__cpuid</code></a>. On Linux, you can <code>open("/proc/cpuinfo")</code> and look through it.</p>
<p>Here is an example on Windows, based on the example in the <a href="http://msdn.microsoft.com/en-us/library/hskdteyh.aspx" rel="nofollow">MSDN</a> page:</p>
<pre><code>#include <intrin.h>
bool cpuSupports64()
{
int CPUInfo[4];
__cpuid(CPUInfo, 0);
return (CPUInfo[3] & 0x20000000) || false;
}
</code></pre>
http://stackoverflow.com/questions/507747/can-you-explain-the-concept-of-streams/507829#50782934Answer by Hosam Aly for Can you explain the concept of streams?Hosam Aly2009-02-03T16:26:33Z2009-10-28T13:04:22Z<p>The word "stream" has been chosen because it represents (in real life) a very similar meaning to what we want to convey when we use it.</p>
<p>Let's forget about the backing store for a little, and start thinking about the analogy to a water stream. You receive a continuous flow of data, just like water continuously flows in a river. You don't necessarily know where the data is coming from, and most often you don't need to; be it from a file, a socket, or any other source, it doesn't (shouldn't) really matter. This is very similar to receiving a stream of water, whereby you don't need to know where it is coming from; be it from a lake, a fountain, or any other source, it doesn't (shouldn't) really matter.</p>
<p>That said, once you start thinking that you only care about getting the data you need, regardless of where it comes from, the abstractions other people talked about become clearer. You start thinking that you can wrap streams, and your methods will still work perfectly. For example, you could do this:</p>
<pre><code>int ReadInt(StreamReader reader) { return Int32.Parse(reader.ReadLine()); }
// in another method:
Stream fileStream = new FileStream("My Data.dat");
Stream zipStream = new ZipDecompressorStream(fileStream);
Stream decryptedStream = new DecryptionStream(zipStream);
StreamReader reader = new StreamReader(decryptedStream);
int x = ReadInt(reader);
</code></pre>
<p>As you see, it becomes very easy to change your input source without changing your processing logic. For example, to read your data from a network socket instead of a file:</p>
<pre><code>Stream stream = new NetworkStream(mySocket);
StreamReader reader = new StreamReader(stream);
int x = ReadInt(reader);
</code></pre>
<p>As easy as it can be. And the beauty continues, as you can use any kind of input source, as long as you can build a stream "wrapper" for it. You could even do this:</p>
<pre><code>public class RandomNumbersStreamReader : StreamReader {
private Random random = new Random();
public String ReadLine() { return random.Next().ToString(); }
}
// and to call it:
int x = ReadInt(new RandomNumbersStreamReader());
</code></pre>
<p>See? As long as your method doesn't care what the input source is, you can customize your source in various ways. The abstraction allows you to decouple input from processing logic in a very elegant way.</p>
<p>Note that the stream we created ourselves does not have a backing store, but it still serves our purposes perfectly.</p>
<p>So, to summarize, a stream is just a source of input, hiding away (abstracting) another source. As long as you don't break the abstraction, your code will be very flexible.</p>
http://stackoverflow.com/questions/1594470/unicode-handling-in-reportlab0Unicode handling in ReportLabHosam Aly2009-10-20T13:03:09Z2009-10-20T15:01:00Z
<p>I am trying to use ReportLab with Unicode characters, but it is not working. I tried tracing through the code till I reached the following line:</p>
<pre><code>class TTFont:
# ...
def splitString(self, text, doc, encoding='utf-8'):
# ...
cur.append(n & 0xFF) # <-- here is the problem!
# ...
</code></pre>
<p>(This code can be found in ReportLab's repository, in the file <a href="https://svn.reportlab.com/svn/public/reportlab/trunk/src/reportlab/pdfbase/ttfonts.py" rel="nofollow">pdfbase/ttfonts.py</a>. The code in question is in line 1059.)</p>
<p><strong>Why is <code>n</code>'s value being manipulated?!</strong></p>
<p>In the line shown above, <code>n</code> contains the code point of the character being processed (e.g. 65 for 'A', 97 for 'a', or 1588 for Arabic sheen 'ش'). <code>cur</code> is a list that is being filled with the characters to be sent to the final output (AFAIU). Before that line, everything was (apparently) working fine, but in this line, the value of <code>n</code> was manipulated, apparently reducing it to the extended ASCII range!</p>
<p>This causes non-ASCII, Unicode characters to lose their value. I cannot understand how this statement is useful, or why it is necessary!</p>
<p>So my question is, why is <code>n</code>'s value being manipulated here, and how should I proceed about fixing this issue?</p>
<p><strong>Edit:</strong><br />
In response to the comment regarding my code snippet, here is an example that causes this error:</p>
<pre><code>my_doctemplate.build([Paragraph(bulletText = None, encoding = 'utf8',
caseSensitive = 1, debug = 0,
text = '\xd8\xa3\xd8\xa8\xd8\xb1\xd8\xa7\xd8\xac',
frags = [ParaFrag(fontName = 'DejaVuSansMono-BoldOblique',
text = '\xd8\xa3\xd8\xa8\xd8\xb1\xd8\xa7\xd8\xac',
sub = 0, rise = 0, greek = 0, link = None, italic = 0, strike = 0,
fontSize = 12.0, textColor = Color(0,0,0), super = 0, underline = 0,
bold = 0)])])
</code></pre>
<p>In <code>PDFTextObject._textOut</code>, <code>_formatText</code> is called, which identifies the font as <code>_dynamicFont</code>, and accordingly calls <code>font.splitString</code>, which is causing the error described above.</p>
http://stackoverflow.com/questions/1593203/is-it-possible-to-ignore-certain-unit-tests/1593212#15932122Answer by Hosam Aly for Is it possible to ignore certain unit tests?Hosam Aly2009-10-20T08:39:37Z2009-10-20T08:39:37Z<p>I never tried it, but could you put the additional tests in a different source folder, and configure your build script to include or exclude it according to your build target?</p>
http://stackoverflow.com/questions/1589058/nested-function-in-python6Nested Function in PythonHosam Aly2009-10-19T14:40:51Z2009-10-20T08:08:20Z
<p>What benefit or implications could we get with Python code like this:</p>
<pre><code>class some_class(parent_class):
def doOp(self, x, y):
def add(x, y):
return x + y
return add(x, y)
</code></pre>
<p>I found this in an open-source project, doing something useful inside the nested function, but doing absolutely nothing outside it except calling it. (The actual code can be found <a href="http://bazaar.launchpad.net/%7Eopenerp/openobject-server/trunk/annotate/head%3A/bin/report/render/rml2pdf/trml2pdf.py#L685" rel="nofollow">here</a>.) Why might someone code it like this? Is there some benefit or side effect for writing the code inside the nested function rather than in the outer, normal function?</p>
http://stackoverflow.com/questions/453232/-net-using-thread-volatilewrite-with-array-parameters3[.NET] Using Thread.VolatileWrite() with array parametersHosam Aly2009-01-17T12:19:15Z2009-10-17T09:13:14Z
<p>I want to use <code>Thread.VolatileWrite()</code> (or an equivalent function) to change the value of a <code>T[]</code> field, so that the updated value is immediately visible to all other threads. However, the method does not provide a generic version, and I'm not able to use the <code>Object</code> overload since it takes a <code>ref</code> parameter.</p>
<p>Is there an alternative? Would <code>Interlocked.Exchange<T></code> do the job? Is there a better way to achieve what I want to do?</p>
http://stackoverflow.com/questions/1577351/why-grouping-in-a-subquery-causes-problems/1577419#15774190Answer by Hosam Aly for Why grouping in a subquery causes problemsHosam Aly2009-10-16T10:55:01Z2009-10-16T10:55:01Z<p>Could you try rewriting the query as follows?</p>
<pre><code>select days_played.day_played,
count(distinct days_played.user_id) as OLD_users
from days_played
inner join days_received on days_played.day_played = days_received.day_received
and days_played.user_id = days_received.user_id
where days_received.min_bulk_MT > days_played.min_MO
and 0 = (select sum(sgia.B_first_msg)
from days_played as sgia
where sgia.user_id = days_played.user_id
and sgia.day_played < days_played.day_played
)
group by days_played.day_played
</code></pre>
<p>I guess this should give you better performance...</p>
http://stackoverflow.com/questions/1571840/listing-files-in-java-without-using-java-io/1571854#15718546Answer by Hosam Aly for Listing files in Java without using java.ioHosam Aly2009-10-15T11:40:44Z2009-10-15T21:07:25Z<p>You can use <code>Runtime.getRuntime().exec()</code>:</p>
<pre><code>String[] cmdarray;
if (System.getProperty("os.name").startsWith("Windows")) {
cmdarray = new String[] { "cmd.exe", "/c", "dir /b" };
} else { // for UNIX-like systems
cmdarray = new String[] { "ls" };
}
Runtime.getRuntime().exec(cmdarray);
</code></pre>
<p>Thanks to <a href="http://stackoverflow.com/users/31610/geo">@Geo</a> for the Windows commands.</p>
http://stackoverflow.com/questions/1537823/how-can-i-ask-windows-to-print-a-document3How can I ask Windows to print a document?Hosam Aly2009-10-08T13:34:10Z2009-10-08T13:41:56Z
<p>I want to (programmatically) print documents of various types, by asking Windows to do it (using the default associated application). How can I do this (in .NET or C++/Win32 API)?</p>
<p>For example, if I have MS Office and Acrobat Reader installed on the machine, PDF files should be printed by Acrobat Reader, and DOC files should be printed by MS Word. But if I don't have MS Office installed, DOC files should be printed using Wordpad, or OpenOffice.org Writer if the latter is installed, or whatever application is currently the default association for that type of files.</p>
http://stackoverflow.com/questions/1537480/java-references-values-are-addresses-values/1537506#15375060Answer by Hosam Aly for Java references values are addresses values?Hosam Aly2009-10-08T12:28:37Z2009-10-08T12:28:37Z<p><code>[I</code> means it's an array (<code>[</code>) of integers (<code>I</code>).</p>
http://stackoverflow.com/questions/574881/how-can-i-string-format-a-timespan-object-with-a-custom-format-in-net6How can I String.Format a TimeSpan object with a custom format in .NET?Hosam Aly2009-02-22T12:57:55Z2009-10-02T08:16:48Z
<p>What is the recommended way of formatting <code>TimeSpan</code> objects into a string with a custom format?</p>
http://stackoverflow.com/questions/1493370/why-may-increate-true-not-create-the-object-in-seam0Why may `@In(create = true)` not create the object in Seam?Hosam Aly2009-09-29T15:40:21Z2009-10-01T14:15:27Z
<p>I have a very simple piece of code that reads like:</p>
<pre><code>@In(create = true) OutletHome outletHome;
</code></pre>
<p>It was working fine (using Seam 2.2.0.GA), and the object was being created and injected without any problems. But when I tried changing it to:</p>
<pre><code>@In(create = true) OutletHome deactivationOutletHome;
</code></pre>
<p>It suddenly stopped working, causing the exception:</p>
<blockquote>
<p>org.jboss.seam.RequiredException: @In attribute requires non-null value: customerHome.deactivationOutletHome</p>
</blockquote>
<p>What could be the cause for such a problem? How is the variable name relevant? And how could I fix it?</p>
http://stackoverflow.com/questions/1486236/what-is-the-correct-way-to-have-a-boolean-checkbox-in-a-jsf-richfaces-datatabl1What is the correct way to have a boolean checkbox in a JSF / RichFaces `dataTable`?Hosam Aly2009-09-28T09:52:48Z2009-09-28T11:46:30Z
<p>What is the correct way to have a boolean checkbox in each row in a JSF / RichFaces <code>dataTable</code>? I tried the following snippet:</p>
<pre><code><rich:dataTable id="customerList"
var="_customer"
value="#{customerList.resultList}"
rendered="#{not empty customerList.resultList}" >
<h:column>
<h:selectBooleanCheckbox
value="#{customerList.selectedCustomers[_customer.id]}" />
</h:column>
...
</rich:dataTable>
</code></pre>
<p>I set up my <code>customerList</code> to have a <code>Map<Integer, Boolean> selectedCustomers</code>. Things <em>seem</em> to work well, except that apparently the checkbox is being mapped by an index of sort, not actually by the ID, and this is causing me a problem.</p>
<p>For example, when I open the page above and check the checkbox in the first row and press my "Delete" button, everything works fine, and the page is reloaded without the selected customer. But if I press "Refresh" or "Reload" then, (and accept the browser warning of resending data), the customer that is <em>now</em> in the first row gets deleted!</p>
<p>What should I do to have the checkbox tied to the selected ID only?</p>
http://stackoverflow.com/questions/479074/how-do-i-create-a-virtual-folder-in-a-visual-studio-2008-project1How do I create a "virtual" folder in a Visual Studio 2008 project?Hosam Aly2009-01-26T07:55:31Z2009-09-22T03:00:03Z
<p>I want to create a folder inside a C# project to contain some configuration files. However, I don't want these files to be copied to <code>bin\Release\MyFolder</code>. I'd rather have them copied to <code>bin\Release</code> directly. I'm thinking this may be doable by having a "virtual" folder, like solution folders, but I don't know how to do it. Is there a way to create a virtual folder in Visual Studio 2008 (C#) projects? Or even better, how can I specify that the (text) file output should be directed to the main output folder?</p>
http://stackoverflow.com/questions/104799/why-arent-java-collections-remove-methods-generic/483016#4830160Answer by Hosam Aly for Why aren't Java Collections remove methods generic?Hosam Aly2009-01-27T11:12:38Z2009-09-09T23:18:49Z<p>In addition to the other answers, there is another reason why the method should accept an <code>Object</code>, which is predicates. Consider the following sample:</p>
<pre><code>class Person {
public String name;
// override equals()
}
class Employee extends Person {
public String company;
// override equals()
}
class Developer extends Employee {
public int yearsOfExperience;
// override equals()
}
class Test {
public static void main(String[] args) {
ArrayList<Person> list = new ArrayList<Employee>();
// ...
// to remove the first employee with a specific name:
list.remove(new Person(someName1));
// to remove the first developer that matches some criteria:
list.remove(new Developer(someName2, someCompany, 10));
// to remove the first employee who is either
// a developer or an employee of someCompany:
list.remove(new Object() {
public boolean equals(Object employee) {
return (employee instanceof Developer
|| employee.company == someCompany);
}
}
</code></pre>
<p>The point is that the object being passed to the <code>remove</code> method is responsible for defining the <code>equals</code> method. Building predicates becomes very simple this way.</p>
http://stackoverflow.com/questions/1399756/is-there-a-unicode-equivalent-for-pgraph-in-java-posix-regular-expressions1Is there a Unicode equivalent for `{\pGraph}` in Java / POSIX regular expressions?Hosam Aly2009-09-09T13:42:45Z2009-09-09T13:56:29Z
<p>According to the documentation of <a href="http://java.sun.com/javase/6/docs/api/java/util/regex/Pattern.html" rel="nofollow">java.util.Pattern</a>, the POSIX character class <code>\p{Graph}</code> (<code>[:graph:]</code> in POSIX notation) matches <em>"a visible character: <code>[\p{Alnum}\p{Punct}]</code>"</em>. However, this is limited to ASCII characters only. Is there an equivalent class or expression for matching (visible) Unicode characters?</p>
http://stackoverflow.com/questions/1383229/java-persistence-jpa-column-vs-basic0Java Persistence / JPA: @Column vs @BasicHosam Aly2009-09-05T12:28:00Z2009-09-09T13:30:20Z
<p>What is the difference between <code>@Column</code> and <code>@Basic</code> annotations in JPA? Can they be used together? <em>Should</em> they be used together? Or does one of them suffice?</p>
http://stackoverflow.com/questions/1383229/java-persistence-jpa-column-vs-basic/1397532#13975320Answer by Hosam Aly for Java Persistence / JPA: @Column vs @BasicHosam Aly2009-09-09T04:31:33Z2009-09-09T13:30:20Z<p>In addition to @djna's <a href="#1383397" rel="nofollow">answer</a>, it is worth noting that <code>@Basic</code> should be compared with <code>@OneToMany</code>, <code>@ManyToOne</code> and <code>@ManyToMany</code>. Only one of these can be specified on any property. <code>@Column</code> and <code>@JoinColumn</code> can be specified along with any of these to describe the database column properties. These are two sets of annoations that can be used together, but only one annotation of each set can be used at a time.</p>
http://stackoverflow.com/questions/1354446/seam-2-2ga-jboss-as-5-1ga-postgres-8-4/1393073#13930730Answer by Hosam Aly for Seam 2.2GA + JBoss AS 5.1GA + Postgres 8.4Hosam Aly2009-09-08T09:57:33Z2009-09-08T09:57:33Z<p>You <em>did</em> receive a few answers on the Seam forums (<a href="http://www.seamframework.org/Community/SeamgenGenerateDoesNotWorkProperly#comment92470" rel="nofollow">here</a> and <a href="http://www.seamframework.org/Community/Seam22GAJBossAS51GAPostgres84#comment93887" rel="nofollow">here</a>), but you didn't follow up. Anyway, all these are actually caused by one problem:</p>
<ol>
<li><p>As Stuart Douglas <a href="http://www.seamframework.org/Community/Seam22GAJBossAS51GAPostgres84#comment93889" rel="nofollow">told you</a>, you shouldn't use a catalog when connecting to PostgreSQL. To fix this, replace the property "<code>hibernate.default_catalog=PostgreSQL</code>" in your properties file by the property: "<code>hibernate.default_catalog.null=</code>", so that your file looks like this:</p>
<pre><code>...
model.package=com.atom.Commerce.model
hibernate.default_catalog.null= # <-- This is the replaced property
driver.jar=/home/rgoytacaz/postgresql-8.4-701.jdbc4.jar
...
</code></pre>
<p>You should be able to use <code>seam generate-entities</code> fine afterwards (assuming the rest of your configuration is correct). I'd recommend doing the generation into a clean folder.</p></li>
<li><p><a href="http://lmgtfy.com/?q=PostgreSQL+%22cross-database+reference%22" rel="nofollow">Cross-database references</a> is when a query tries to access two or more different databases. PostgreSQL does not support this, and thus complains when there is more than 1 period in the table name, so in <strong><code>PostgreSQL.</code></strong><code>atom.productsculturedetail</code>, the bold part should be removed. Hibernate adds this prefix when you tell it to use a default catalog, which we already fixed in step 1 above (by telling it not to use a catalog), so this problem should be fixed after you regenerate your entities.</p>
<p>(Note that this is effectively the same as what Stuart Douglas told you, that you should remove the <code>catalog="PostgreSQL"</code> attribute in the annotations on your entity classes.)</p></li>
<li><p>When you specified the <code>postgresql-8.4-701.jdbc4.jar</code> file in the properties file, this didn't mean that the driver supports JDBC4. Although the name of the file would suggest so, the driver's website <a href="http://jdbc.postgresql.org/#features" rel="nofollow">clearly states that</a> <em>"The driver provides a reasonably complete implementation of the <strong>JDBC 3</strong> specification"</em>. This shouldn't be a problem for you, as you're not using the driver directly (or at least you're not supposed to). The driver is sufficient for Hibernate to fulfill its requirements and provide the required functionality.</p></li>
<li><p>This issue is caused by the same problem above. Hibernate is unable to read data from the database because of the incorrect query. Fixing the catalog problem should fix this issue.</p></li>
</ol>
http://stackoverflow.com/questions/1385337/trimming-inputs-in-jboss-seam1Trimming inputs in JBoss SeamHosam Aly2009-09-06T10:12:11Z2009-09-08T09:47:52Z
<p>I am making a web application using <a href="http://seamframework.org/" rel="nofollow">JBoss Seam</a> 2.2.0, and I want to trim my inputs before receiving them, even before the Hibernate Bean Validation phase. Is this possible?</p>
<p>I saw <a href="http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4121867" rel="nofollow">someone</a> using a <code>PhaseListener</code> to do the same functionality. Is this the best way to do it?</p>
http://stackoverflow.com/questions/1378248/jpa-definition-of-a-one-to-many-relationship-with-junction-table1JPA Definition of a One-To-Many Relationship with Junction TableHosam Aly2009-09-04T09:47:40Z2009-09-04T12:29:15Z
<p>I have a one-to-many relationship modeled using an extra table:</p>
<pre><code>create table t1 (id int primary key, name varchar(10) /*...*/);
create table t2 (id int primary key, name varchar(10) /*...*/);
create table t1_t2 (t1_id int, t2_id int, primary key (t1, t2));
</code></pre>
<p>The tables are supposed to model the relationship of one t1 to many t2. What is the right way to mode these tables using JPA?</p>
http://stackoverflow.com/questions/1589058/nested-function-in-pythonComment by Hosam Aly on Nested Function in PythonHosam Aly2009-12-07T11:32:13Z2009-12-07T11:32:13ZYou're right Craig. Thank you. http://stackoverflow.com/questions/1758409/sql-join-on-null-values/1758503#1758503Comment by Hosam Aly on SQL "Join" on null valuesHosam Aly2009-11-18T21:02:26Z2009-11-18T21:02:26ZI find no reason for this answer to have -1 after being edited, so +1.http://stackoverflow.com/questions/1634368/is-this-lock-free-queue-implementation-thread-safe/1709115#1709115Comment by Hosam Aly on Is this (Lock-Free) Queue Implementation Thread-Safe?Hosam Aly2009-11-14T22:04:35Z2009-11-14T22:04:35ZThank you. I will check it out for more ideas. However, the <code>ConcurrentLinkedQueue</code> is too complex, as it supports many methods, while my queue is much simpler, which allows me to make more assumptions and try more optimizations.http://stackoverflow.com/questions/1704355/rewriting-multiple-if-statementsComment by Hosam Aly on Rewriting multiple if-statementsHosam Aly2009-11-09T22:55:11Z2009-11-09T22:55:11ZI think "Rewriting multiple <code>if</code> statements" may be a more descriptive title.http://stackoverflow.com/questions/1704306/how-should-a-java-program-handle-an-external-mail-server-being-down/1704375#1704375Comment by Hosam Aly on How should a Java program handle an external mail server being down?Hosam Aly2009-11-09T22:46:47Z2009-11-09T22:46:47ZIf you want to handle crashes, then you shouldn't be writing to the same file, because a crash while writing may cause large portions of data to be lost. Using multiple files is probably safer.http://stackoverflow.com/questions/758736/how-do-i-iterate-through-each-element-in-an-n-dimensional-matrix-in-matlabComment by Hosam Aly on How do I iterate through each element in an n-dimensional matrix in MATLAB?Hosam Aly2009-11-09T22:39:34Z2009-11-09T22:39:34ZMay I ask what you need the iteration for? Maybe there is a "vectorized" way to do it instead...http://stackoverflow.com/questions/1634368/is-this-lock-free-queue-implementation-thread-safe/1668293#1668293Comment by Hosam Aly on Is this (Lock-Free) Queue Implementation Thread-Safe?Hosam Aly2009-11-04T08:22:41Z2009-11-04T08:22:41ZYou're right. I had missed that totally! I fixed it now. Thank you!http://stackoverflow.com/questions/1657232/how-can-i-calculate-an-md5-checksum-of-a-directoryComment by Hosam Aly on How can I calculate an md5 checksum of a directory?Hosam Aly2009-11-01T15:58:15Z2009-11-01T15:58:15ZNote that checksums don't <i>uniquely</i> identify anything.http://stackoverflow.com/questions/1636950/detect-system-architecture-x86-x64-while-running/1636972#1636972Comment by Hosam Aly on Detect system architecture (x86/x64) while runningHosam Aly2009-10-28T13:13:21Z2009-10-28T13:13:21Z@Levo: I have created an example.http://stackoverflow.com/questions/1636950/detect-system-architecture-x86-x64-while-running/1636972#1636972Comment by Hosam Aly on Detect system architecture (x86/x64) while runningHosam Aly2009-10-28T13:12:49Z2009-10-28T13:12:49Z@Amit: Hmmm... I'm not sure. Maybe I'm wrong, or maybe your processor supports some form of 64-bit!http://stackoverflow.com/questions/1636950/detect-system-architecture-x86-x64-while-running/1636972#1636972Comment by Hosam Aly on Detect system architecture (x86/x64) while runningHosam Aly2009-10-28T13:05:11Z2009-10-28T13:05:11Z@Amit: What's your 32-bit processor type?http://stackoverflow.com/questions/1636950/detect-system-architecture-x86-x64-while-running/1636972#1636972Comment by Hosam Aly on Detect system architecture (x86/x64) while runningHosam Aly2009-10-28T12:40:34Z2009-10-28T12:40:34Z@Amit: What about <code>clflush size</code>?http://stackoverflow.com/questions/1636950/detect-system-architecture-x86-x64-while-running/1636978#1636978Comment by Hosam Aly on Detect system architecture (x86/x64) while runningHosam Aly2009-10-28T12:36:19Z2009-10-28T12:36:19ZWouldn't that be 32-bits if the application was compiled as a 32-bit application?http://stackoverflow.com/questions/1634368/is-this-lock-free-queue-implementation-thread-safe/1634420#1634420Comment by Hosam Aly on Is this (Lock-Free) Queue Implementation Thread-Safe?Hosam Aly2009-10-28T12:05:01Z2009-10-28T12:05:01Z@Stephen: You're right. That's certainly true. Do you have any other suggestions or notes about the code?http://stackoverflow.com/questions/1634368/is-this-lock-free-queue-implementation-thread-safe/1634420#1634420Comment by Hosam Aly on Is this (Lock-Free) Queue Implementation Thread-Safe?Hosam Aly2009-10-28T11:10:15Z2009-10-28T11:10:15Z@Stephen C: Yes, it can, but this only delays processing of that element. I guess it depends on how we view it, whether the availability of an item in the queue is required <i>immediately</i> or can be received later on. I have fixed it anyway (I think), so thanks for pointing it out.