User Petriborg - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T14:32:21Zhttp://stackoverflow.com/feeds/user/2815http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1869036/is-there-a-queue-priorityqueue-implementation-which-is-also-a-set/1869132#18691320Answer by Petriborg for Is there a Queue (PriorityQueue) implementation which is also a Set?Petriborg2009-12-08T19:02:39Z2009-12-10T13:48:52Z<p>Well the <code>PriorityQueue</code> is going to itself be dependent on the <code>Comparitor</code> or the natural ordering of the items for its sorting, likewise the <code>Set</code> would be dependent on the natural ordering or the <code>Comparitor</code> function so no I don't think one exists as part of the default Java install...</p>
<p>But you could probably create one pretty easily if speed isn't a worry by simply implementing the interfaces you want, and using their natural backings, etc... aka</p>
<pre><code>MyQueueSet extends PriorityQueue implements Set {
HashSet set;
...
}
</code></pre>
<p>Unfortunately Java's java.util.* data-set classes aren't always the easiest to extend without rewriting chunks of their code.</p>
<p>The <code>PriorityQueue</code> backing is a heap sorted list of elements, so inserting a new element and then doing a <code>contains(e)</code> test will an O(n) search because sorting is based on the queuing, <em>not</em> on the data value, if you include a <code>HashSet</code> to support the <code>Set</code> functionality though, you can improve your lookup time a lot at the expense of maintaining the dataset references twice (remember that Java is pass-by-value and all objects live on the heap). This should improve performance of a large set.</p>
http://stackoverflow.com/questions/1867314/sqlite-api-boolean-access1Sqlite API boolean accessPetriborg2009-12-08T14:28:41Z2009-12-08T14:44:55Z
<p>This should be an easy question I figure, but I hadn't found this answered else where surprisingly, so I'm posting it here.</p>
<p>I've inherited a Sqlite driven database which contains boolean columns in it, declared like this:</p>
<pre><code>CREATE TABLE example (
ex_col BOOLEAN NOT NULL DEFAULT 0,
);
</code></pre>
<p>This table is trying to be accessed via the sqlite3 C API calls <code>sqlite_column_*</code> functions, now given that sqlite doesn't actually support boolean types, what is the expected behavior here?</p>
<p>It appears <code>sqlite_column_int()</code> always return 0 or <em>false</em>, I assume this is because all columns in sqlite are really text columns...</p>
<p>And what is the proper way to maintain this - fetching as text and then string compare to true? I really don't want to modify the database and all of the other code attached to it.</p>
http://stackoverflow.com/questions/1255619/learning-postgresql/1256422#12564221Answer by Petriborg for Learning PostgreSQLPetriborg2009-08-10T18:25:15Z2009-08-10T18:25:15Z<p>Having gone through this exact process about a year ago I found the following useful:</p>
<ol>
<li>psql prompt is your friend.</li>
<li>The <a href="http://www.postgresql.org/docs/8.4/interactive/index.html" rel="nofollow">postgres online docs</a> are great.</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0672327562" rel="nofollow">This postgres book was great</a> for both admin and programing for postgres driven programs.</li>
</ol>
http://stackoverflow.com/questions/1256099/create-an-array-from-a-txt-file/1256365#12563650Answer by Petriborg for create an array from a txt filePetriborg2009-08-10T18:11:57Z2009-08-10T18:11:57Z<p>First I'd point out that your first data point appears to be an index, and wonder if the data is therefore important or not, but whichever :-)</p>
<pre><code>def parse(line):
mch = re.compile('^(\d+)\s+(\d+)\s+([-\d\.]+)\s+([-\d\.]+)\s+([-\d\.]+)$')
m = mch.match(line)
if m:
l = m.groups()
(idx,data,xyz) = (int(l[0]),int(l[1]), map(float, l[2:]))
return (idx, data, xyz)
return None
finaldata = []
file = open("data.txt",'r')
for line in file:
r = parse(line)
if r is not None:
finaldata.append(r)
</code></pre>
<p>Final data should have output along the lines of:</p>
<pre><code>[(0, 0, [-11.007001000000001, -14.222319000000001, 2.3367689999999999]),
(1, 0, [-11.007001000000001, -14.222319000000001, 2.3367689999999999]),
(2, 0, [-11.007001000000001, -14.222319000000001, 2.3367689999999999]),
(3, 0, [-11.007001000000001, -14.222319000000001, 2.3367689999999999]),
(4, 0, [-11.007001000000001, -14.222319000000001, 2.3367689999999999])]
</code></pre>
<p>This should be pretty robust about dealing w/ the whitespace issues (tabs spaces whatnot)... </p>
<p>I also wonder how big your data files are, mine are usually large so being able to process them in chunks or groups become more important... Anyway this will work in python 2.6.</p>
http://stackoverflow.com/questions/1188858/how-to-make-hibernate-only-query-the-default-mapping/1201155#12011550Answer by Petriborg for How to make Hibernate only query the default mapping?Petriborg2009-07-29T15:33:51Z2009-07-29T15:33:51Z<p>You might consider one of the <a href="http://www.jboss.org/envers/" rel="nofollow">extensions to hibernate</a> which do this table revisions for you. I've never used envers personally, but the documentation looked interesting.</p>
http://stackoverflow.com/questions/1118873/changing-the-type-of-an-entity-preserving-its-id/1127612#11276120Answer by Petriborg for Changing the type of an entity preserving its IDPetriborg2009-07-14T19:56:40Z2009-07-14T19:56:40Z<p>I think skaffman is right here, once the id has been set it won't persist, and further because the id is generated it expects the sequence to be in charge of assigning the id number.</p>
<p>You could possibly not put the id as @GeneratedValue? or one of the different generator strategy types maybe to avoid the merge generating a new sequence value, but I suspect that would be problematic.</p>
http://stackoverflow.com/questions/1119670/jpa-hibernate-embedding-an-attribute/1127529#11275291Answer by Petriborg for JPA/Hibernate - Embedding an AttributePetriborg2009-07-14T19:38:08Z2009-07-14T19:38:08Z<p>I have a similar problem in my own schema so what I've resorted to at the moment is like this:</p>
<p>Parent class:</p>
<pre><code>@Entity
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
@SequenceGenerator(name="SEQ", sequenceName="part_id_seq", initialValue=1, allocationSize=1)
public abstract class BasePart {
@Id
@Column(name="part_id")
@GeneratedValue(strategy=GenerationType.SEQUENCE, generator="SEQ")
protected Long partId;
@YourBusinessKeyAnnotation
@Column(name="part_number")
protected String partNumber
...
}
</code></pre>
<p>Child classes:</p>
<pre><code>@Entity
public class FordPart extends BasePart {
...
}
@Entity
public class ChevyPart extends BasePart {
...
}
</code></pre>
<p>Now I could then manipulate the biz key however I needed to and this worked out well because each of the different part types got their own table (which is useful for us).</p>
<p>You also could use <code>@Embedded</code> with <code>@AttributeOverrides</code> I think to specify the column names differently however you needed... There is an example from the <a href="http://docs.jboss.org/hibernate/stable/annotations/reference/en/html/entity.html" rel="nofollow">annotation docs</a>.</p>
<pre><code>@Entity
public class Person implements Serializable {
// Persistent component using defaults
Address homeAddress;
@Embedded
@AttributeOverrides( {
@AttributeOverride(name="iso2", column = @Column(name="bornIso2") ),
@AttributeOverride(name="name", column = @Column(name="bornCountryName") )
} )
Country bornIn;
...
}
</code></pre>
<p>...</p>
<pre><code>@Entity
public class Person implements Serializable {
// Persistent component using defaults
Address homeAddress;
@Embedded
@AttributeOverrides( {
@AttributeOverride(name="iso2", column = @Column(name="bornIso2") ),
@AttributeOverride(name="name", column = @Column(name="bornCountryName") )
} )
Country bornIn;
...
}
</code></pre>
<p>...</p>
<pre><code>@Embedded
@AttributeOverrides( {
@AttributeOverride(name="city", column = @Column(name="fld_city") ),
@AttributeOverride(name="nationality.iso2", column = @Column(name="nat_Iso2") ),
@AttributeOverride(name="nationality.name", column = @Column(name="nat_CountryName") )
//nationality columns in homeAddress are overridden
} )
Address homeAddress;
</code></pre>
<p>You may be able to abuse this enough that you won't care...</p>
http://stackoverflow.com/questions/958037/handling-creation-of-orm-objects-prior-to-persistence-generation-of-primary-keys/1121506#11215061Answer by Petriborg for Handling creation of ORM objects prior to persistence/generation of primary keys?Petriborg2009-07-13T19:14:37Z2009-07-13T19:14:37Z<p>Posting this mostly because I can't leave this complicated of comment... but anyway...</p>
<p>Normally when I look at EmbeddedId type things I see things like from this <a href="http://boris.kirzner.info/blog/archives/2008/07/19/hibernate-annotations-the-many-to-many-association-with-composite-key/" rel="nofollow">example of Embeddable keys</a>. Normally I'd expect something like</p>
<p>From <em>ChildPK.java</em>:</p>
<pre><code>@Basic(optional = false)
@Column(name = "ParentId")
private Parent parent;
</code></pre>
<p>But here I guess we've got 2 other FKs being made into a composite PK, IndexTemplateId and FieldNumber... and this Parent object's ID is auto-generated using a sequence.</p>
<p>Now I suppose that you must already be persisting the Parent object prior to trying to persist the child object or you must mark the Parent object in child as cascading, that should ensure the id gets populated, the composite keys seem to greatly complicate the problem.</p>
<p>Since this is a new ORM I would suggest that you use a single PK on each table instead of composite ids and simply have FK relations between the tables.</p>
<p>Apologies if I'm not grasping something here, but I'm not quite sure there is enough information here - I would ask for the entire Entity field declarations just to see how you're trying to put this together each of your 3 classes...</p>
http://stackoverflow.com/questions/1082489/passing-data-types-from-c-to-java-java-to-c/1088386#10883861Answer by Petriborg for Passing data types from C++ to Java/Java to C++Petriborg2009-07-06T18:00:06Z2009-07-06T18:00:06Z<p>I prefer <a href="http://www.swig.org" rel="nofollow">Swig</a> myself. It does the JNI wrapping for you allowing calls in any direction you'd like, multithreading, etc. It also works with multiple languages including Java, Python, Perl etc...</p>
<p>Swig is also portable as your C++ code is - I use it myself on Linux and Windows to bridge our C++ code to Java and Python.</p>
http://stackoverflow.com/questions/1077387/swig-c-w-java-loses-type-on-polymorphic-callback-functions0Swig c++ w/ Java loses type on polymorphic callback functionsPetriborg2009-07-03T00:52:24Z2009-07-05T21:49:57Z
<p><em>Question</em>:
Why is my C++ swigged object losing its type when passed to a Java callback function?</p>
<p><em>Setup</em>:
I've taken the Swig Java example for doing callbacks and added an object to be passed to the callback <code>run(Parent p)</code>. The callback works as expected but when I pass a <code>Child</code> object the Java seems to lose its type and think its of type <code>Parent</code> when it should be <code>Child</code>. This is based on the <a href="https://swig.svn.sourceforge.net/svnroot/swig/trunk/Examples/java/callback/" rel="nofollow">Swig java callback example</a>.</p>
<p><em>System Info</em>:
Ubuntu 8.04 w/ Swig 1.3.33 - on the off chance the latest Swig made a difference I also tested 1.3.39 - which had no effect.</p>
<p><em>Outputs</em>:</p>
<pre>
bash$ java -Djava.library.path=. runme
Adding and calling a normal C++ callback
----------------------------------------
Callback::run(5Child)
Callback::~Callback()
Adding and calling a Java callback
------------------------------------
JavaCallback.run(Parent)
Callback::run(5Child)
Callback::~Callback()
</pre>
<p>As you can see in the outputs - the object is really of type Child - but its Java class name is Parent - which is wrong...</p>
<p>If you look in the Java callback <code>run(Parent p)</code> you can see where I'm fetching the Java class, and Java really does think this object is of type <code>Parent</code> - trying to cast this to Child will throw <code>ClassCastException</code> as expected.</p>
<p><em>Code</em>:</p>
<pre><code>/* File : example.i */
%module(directors="1") example
%{
#include "example.h"
%}
%include "std_string.i"
/* turn on director wrapping Callback */
%feature("director") Callback;
%include "example.h"
/* File : example.h */
#include <string>
#include <cstdio>
#include <iostream>
#include <typeinfo>
class Parent {
public:
virtual const char* getName() {
return typeid(*this).name();
}
};
class Child : virtual public Parent {
};
class Callback {
public:
virtual ~Callback() { std::cout << "Callback::~Callback()" << std:: endl; }
virtual void run(Parent& p) { std::cout << "Callback::run(" << p.getName() << ")" << std::endl; }
};
class Caller {
private:
Callback *_callback;
public:
Caller(): _callback(0) {}
~Caller() { delCallback(); }
void delCallback() { delete _callback; _callback = 0; }
void setCallback(Callback *cb) { delCallback(); _callback = cb; }
void call() {
Parent *p = new Child();
if (_callback)
_callback->run(*p);
delete p;
}
};
/* File: runme.java */
public class runme
{
static {
try {
System.loadLibrary("example");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e);
System.exit(1);
}
}
public static void main(String[] args)
{
System.out.println("Adding and calling a normal C++ callback");
System.out.println("----------------------------------------");
Caller caller = new Caller();
Callback callback = new Callback();
caller.setCallback(callback);
caller.call();
caller.delCallback();
callback = new JavaCallback();
System.out.println();
System.out.println("Adding and calling a Java callback");
System.out.println("------------------------------------");
caller.setCallback(callback);
caller.call();
caller.delCallback();
// Test that a double delete does not occur as the object has already been deleted from the C++ layer.
// Note that the garbage collector can also call the delete() method via the finalizer (callback.finalize())
// at any point after here.
callback.delete();
System.out.println();
System.out.println("java exit");
}
}
class JavaCallback extends Callback
{
public JavaCallback()
{
super();
}
public void run(Parent p)
{
System.out.println("JavaCallback.run("+p.getClass().getSimpleName()+")");
super.run(p);
}
}
# File: Makefile
TOP = ../..
SWIG = $(TOP)/../preinst-swig
CXXSRCS = example.cxx
TARGET = example
INTERFACE = example.i
SWIGOPT =
all:: java
java::
$(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' java_cpp
javac *.java
clean::
$(MAKE) -f $(TOP)/Makefile java_clean
check: all
</code></pre>
<p>This might be a bug in Swig - but I'm hoping that this is my being stupid with C++ types/casting...</p>
<p>Any thoughts would be greatly appreciated!</p>
http://stackoverflow.com/questions/1077387/swig-c-w-java-loses-type-on-polymorphic-callback-functions/1084889#10848890Answer by Petriborg for Swig c++ w/ Java loses type on polymorphic callback functionsPetriborg2009-07-05T21:49:08Z2009-07-05T21:49:08Z<p>After digging around on this problem for the weekend I guess this is a "common" problem that Swig has between C++ classes and Java. The issue is called <a href="http://www.swig.org/Doc1.3/Java.html#adding%5Fdowncasts" rel="nofollow">downcasting</a> and is a common problem of <a href="http://www.swig.org/Doc1.3/Java.html#java%5Fdirectors%5Ffaq" rel="nofollow">directors</a>. Unfortunately the directors don't seem to be able to handle even this simple case. I've tried every combination of director - like below</p>
<pre><code>%feature("director") Callback;
%feature("director") Parent;
%feature("director") Child;
</code></pre>
<p>None of that seemed to help at all but doing the following hack worked ok:</p>
<pre><code>class Callback {
public:
virtual ~Callback() { std::cout << "Callback::~Callback()" << std:: endl; }
virtual void run(Parent& p) {
std::cout << "Callback::run1(" << p.getName() << ")\n";
}
virtual void run(Child& c) {
std::cout << "Callback::run2(" << c.getName() << ")\n";
}
};
</code></pre>
<p>Then in the java class for whatever subtype you need the overload irons itself out.</p>
<pre><code>class JavaCallback extends Callback
{
public void run(Child p)
{
out.p("JavaCallback.run("+p.getClass().getSimpleName()+")");
out.p("p.getName() = "+p.getName());
super.run(p);
}
}
</code></pre>
<p>Then magically the output works</p>
<pre>
bash$ java -Djava.library.path=. runme
Adding and calling a normal C++ callback
----------------------------------------
make child
child type class Parent
Callback::run2(5Child)
Callback::~Callback()
Adding and calling a Java callback
------------------------------------
JavaCallback.run(Child)
p.getName() = 5Child
Callback::run2(5Child)
Callback::~Callback()
java exit
</pre>
<p>There should probably be a better way to do this, but none of the Swig documentation presented me a clear example of how to do this properly. There was some really impressive code in the libsbml library which might help people create downcasting typemaps which fix the problem, but that was proving very complex for little output... Anyway this was simple and easy.</p>
<p>If anyone can figure out an easy (human) solution I'd be interested in hearing about it.</p>
http://stackoverflow.com/questions/1033289/how-to-change-xml-based-on-regex-matches-to-text-character-data/1034687#10346870Answer by Petriborg for How to change XML based on regex matches to text (character data)Petriborg2009-06-23T19:33:58Z2009-06-27T15:30:10Z<p>EDIT:</p>
<p>OK now that I understand this can go across tags I think I understand the difficulty here.</p>
<p>The only algorithm I can think of here is to walk the XML tree reading the text portions searching for your match - you'll need to do this matching yourself character by character across multiple nodes. The difficulty of course is to not munge the tree in the process...</p>
<p>Here's how I would do it:</p>
<p>Create a a walker to walk to the XML tree. Whenever you think you've found the start of the string match, save whatever the current parent node is. When (and if) you find the end of your string match check if the saved node is the same as the end node's parent. If they are the same then its safe to modify the tree.</p>
<p>Example doc:</p>
<pre><code><doc>This is a an <b>example text I made up</b> on the spot! Nutty.</doc>
</code></pre>
<p>Test 1:
Match: example text</p>
<p>The walker would walk along until it finds the "e" in example, and it would save the parent node (<code><b></code> node) and keep walking until it found the end of <code>text</code> where it would check to see if it was still in the same reference node <code><b></code> which it is, so it is a match and you can tag it with or whatever.</p>
<p>Test 2:
Match: an example</p>
<p>The walker would first hit <code>a</code> and quickly reject it, then hit <code>an</code> and save the <code><doc></code> node. It would continue to match over to the <code>example</code> text until it realizes that example's parent node is <code><b></code> and not <code><doc></code> at which point the match is failed and no node is installed.</p>
<p>Implementation 1:</p>
<p>If you are only matching straight text, then the simple matcher using a Java (SAX or something) seems like a way to go here.</p>
<p>Implementation 2:</p>
<p>If matching input is regex itself, then you'll need something very special. I know of no engine which could work here for sure, what you <em>might</em> be able to do is write a bit of ugly something to do it... Maybe some sort of recursive walker which would break down the XML tree into smaller and smaller node-sets, searching the complete text at each level...</p>
<p>Very rough (non-working) code:</p>
<pre><code>def search(raw, regex):
tree = parseXml(raw)
text = getText(tree)
if match(text, regex):
def searchXML(tree, regex):
text = getFlatText(tree)
if match(text, regex): # check if this text node might match
textNodes = getTextNodes(tree)
for (tn : textNodes): # check if its contained in a single text node
if match(tn, regex):
return tn
xmlnodes = getXMLNodes(tree)
for (xn : xmlnodes): # check if any of the children contain the text
match = searchXML(xn, regex)
if match
return match
return tree # matches some combination of text/nodes at this level
# but not at a sublevel
else:
return None # no match in this subtree
</code></pre>
<p>Once you know where the node is that should contain your match, I'm not sure what can do though because you don't know how you can figure out the index inside the text where it is needed from the regex... Maybe someone has an regex out there you can modify...</p>
http://stackoverflow.com/questions/1046089/jtable-not-returning-selected-row-correctly/1046120#10461201Answer by Petriborg for JTable not returning selected row correctlyPetriborg2009-06-25T20:36:54Z2009-06-25T21:07:02Z<p>When it swaps out the data its removing the selection (since the index is now different), you'll need recalculate the selection and set it programmatically.</p>
<p>I'll point out that in my experience, this is why I tend to extend <code>AbstractTableModel</code> or out right implement my own <code>TableModel</code> interface from the ground up. Modifying the backing data reference as here, always causes a million problems IMHO.</p>
http://stackoverflow.com/questions/1029777/is-my-dao-strategy-ok/1034530#10345300Answer by Petriborg for Is my DAO strategy ok?Petriborg2009-06-23T19:08:35Z2009-06-23T19:08:35Z<p>Couple of questions</p>
<ol>
<li>Are you frequently creating your DOA to do a single task or are these long lived?</li>
<li>What about using a static function? Clearly your Book object can be bind the DOA function to without the Book.class reference...</li>
</ol>
<p>Otherwise, I'm a little worried about keeping the session object around instead of fetching whatever the current session is - isn't it considered "bad" to have long lived session objects? I'm not a master of DOA, so maybe I'm missing something here.</p>
http://stackoverflow.com/questions/1027343/finding-weak-reference-objects-in-collections-in-java3finding weak reference objects in collections in javaPetriborg2009-06-22T13:55:29Z2009-06-22T14:10:34Z
<p>A couple of questions regarding Java's WeakReference and Collections:</p>
<ol>
<li><p>Is there a library out there that implements Java's various data-set interfaces (eg Collection, List, Set, Queue etc) with WeakReference transparently? Like WeakHashMap is for the HashMap interface?</p></li>
<li><p>Or is the common solution to simply create normal Collections and then use some sort of trick with compareTo or a Comparator or something to make searching the collection work correctly?</p></li>
</ol>
<p>I basically would like this:</p>
<pre><code>public interface WeakCollection<E> extends Collection<E> {}
</code></pre>
<p>But the contract for the interface is that the references to E are stored weakly. Obviously I do not have a problem with <code>get(int index)</code> returning null when that object has gone away etc, but I would like the <code>contains(E e)</code> function and other items like it to work properly.</p>
<p>I'm just trying to avoid the "not invented here" trap and ensuring that if I do implement this myself that its the simplest solution possible.</p>
http://stackoverflow.com/questions/1026880/should-i-add-a-new-svn-repository-or-a-new-folder/1026911#10269111Answer by Petriborg for Should I add a new SVN repository or a new folder ?Petriborg2009-06-22T12:24:04Z2009-06-22T12:24:04Z<p>On my own work, if they are somewhat related I usually put them in the same repo in a different folder, but if they are not related in any way then I usually put them in different repos. I think its mostly a matter of choice unless you're working on a large project with many many MB of files.</p>
http://stackoverflow.com/questions/1022427/hibernate-ordering/1022960#10229601Answer by Petriborg for Hibernate orderingPetriborg2009-06-21T01:39:36Z2009-06-21T01:39:36Z<p>I'm assuming your vehicles class looks like this? I'm using JPA here because thats what I know...</p>
<pre><code>class Vehicles {
@Id
@Column(name="vehicles_id")
private int id;
// other stuff here
}
</code></pre>
<p>I don't expect your session.createQuery to be different from mine so wouldn't something like this work?</p>
<pre><code>Query q = session.createQuery("select v from Vehicles v order by v.id desc");
</code></pre>
<p>Also you could use criteria if you wanted yeah?</p>
<pre><code>class Main {
List<Vehicles> cars;
}
Criteria main = session.createCriteria(Main.class);
Criteria secondary = main.createCriteria("cars");
secondary.addOrder(Order.asc("id"));
</code></pre>
http://stackoverflow.com/questions/1017985/how-do-i-know-which-contract-failed-with-pythons-contract-py/1020981#10209811Answer by Petriborg for How do I know which contract failed with Python's contract.py?Petriborg2009-06-20T05:01:22Z2009-06-20T05:01:22Z<p>Without modifying his code, I don't think you can, but since this is python...</p>
<p>If you look for where he raises the exception to the user, it I think is possible to push the info you're looking for into it... I wouldn't expect you to be able to get the trace-back to be any better though because the code is actually contained in a comment block and then processed.</p>
<p>The code is pretty complicated, but this might be a block to look at - maybe if you dump out some of the args you can figure out whats going on...</p>
<pre><code>def _check_preconditions(a, func, va, ka):
# ttw006: correctly weaken pre-conditions...
# ab002: Avoid generating AttributeError exceptions...
if hasattr(func, '__assert_pre'):
try:
func.__assert_pre(*va, **ka)
except PreconditionViolationError, args:
# if the pre-conditions fail, *all* super-preconditions
# must fail too, otherwise
for f in a:
if f is not func and hasattr(f, '__assert_pre'):
f.__assert_pre(*va, **ka)
raise InvalidPreconditionError(args)
# rr001: raise original PreconditionViolationError, not
# inner AttributeError...
# raise
raise args
# ...rr001
# ...ab002
# ...ttw006
</code></pre>
http://stackoverflow.com/questions/1015778/hibernate-findbyid-isnt-finding-records-that-it-previously-found/1018933#10189330Answer by Petriborg for Hibernate findById isn't finding records that it previously foundPetriborg2009-06-19T16:46:00Z2009-06-19T16:46:00Z<p>Is it possible that at the time thread 10 starts its transaction that the ID is not yet a fully committed transaction? So basically I'm asking - if you have a cart 49 already in the database (say at the start of the program) can the thread still have this problem?</p>
http://stackoverflow.com/questions/966743/display-hibernate-query-in-jtable/966766#9667662Answer by Petriborg for Display Hibernate Query in JTablePetriborg2009-06-08T20:17:15Z2009-06-18T19:45:26Z<p>There are a lots and lots of ways to do this, but are you looking for something that would automatically figure out the columns or what? If you used the java reflection pieces you can read the Hibernate annotations to find out the column names and populate the JTable that way...</p>
<p>Otherwise this is just a straight forward piece of code that a. creates a JTable and TableModel, and b. populates the display with the database data.</p>
<p>EDIT:
I <b>think</b> this <a href="http://java.sys-con.com/node/48539/print" rel="nofollow">example may cover walking the annotation tree and processing them</a>. The specifics are the AnnotationProcessorFactory part iirc.</p>
<p>EDIT 2:
I also found this library which is <a href="http://code.google.com/p/reflections/" rel="nofollow">built to help lookup annotations at runtime</a>. One of their examples is looking up Entity classes in hibernate to build a resource list - I believe you could do something similar to find classes that that implement @column, or @basic etc. This should allow you via reflection to pretty easily do it, but as I said java's standard library already provides the ability to walk the annotation tree to find out the column names - at which point creating the JTable from that should be very easy to do in a programmatic way.</p>
<p>EDIT 3:
This code is all that and a bag of chips! From here you should easily be able to walk the list of maps and pull out <em>all</em> of the info you want, the value, its class type, the field name for the column headers... Note that it isn't particularly safe.. I've dropped out all of the error code I did while testing to keep it short... </p>
<pre><code>List<Map> createTable(List queryResults) {
List<Map> r = new LinkedList<Map>();
for (Object o : queryResults) {
r.add(entityMap(o));
}
return r;
}
Map entityMap(Object obj) throws Throwable {
Map m = new HashMap();
for (Field field : getFields(obj.getClass())) {
Method method = getMethod(field);
Object value = method.invoke(obj);
m.put(field, value);
}
return m;
}
List<Field> getFields(Class<?> clazz) {
List<Field> fields = new LinkedList<Field>();
for (Field field : clazz.getDeclaredFields()) {
Column col = field.getAnnotation(Column.class);
if (col != null)
fields.add(field);
}
return fields;
}
Method getMethod(Field field) throws NoSuchMethodException {
Class<?> clazz = field.getDeclaringClass();
String name = "get" + uppercase(field.getName());
Method method = clazz.getMethod(name);
return method;
}
String uppercase(String str) {
return str.substring(0,1).toUpperCase() + str.substring(1);
}
</code></pre>
http://stackoverflow.com/questions/957394/java-persistence-cast-to-something-the-result-of-query-getresultlist/957686#9576861Answer by Petriborg for Java Persistence: Cast to something the result of Query.getResultList() ?Petriborg2009-06-05T19:25:46Z2009-06-05T19:25:46Z<p>Well there is the java Collections class solution, but you didn't explain how your casting was failing, or if it was just giving a warning...</p>
<p>This is one way to validate this:</p>
<pre><code>Collections.checkList(lQuery.getResultList(), Person.class);
</code></pre>
<p>But if you don't need to validate it:</p>
<pre><code>@SuppressWarnings("unchecked") List<Person> personList = lQuery.getResultList();
</code></pre>
http://stackoverflow.com/questions/955504/how-do-i-run-dot-as-a-command-from-python/955616#9556162Answer by Petriborg for How do I run "dot" as a command from Python?Petriborg2009-06-05T12:35:39Z2009-06-05T13:42:32Z<p>Two suggestions</p>
<ol>
<li>Don't use PATH, instead use "which" to just find the executable instead</li>
<li>You don't use ";" (semi-colon) to separate paths, but ":" (colon). Once you change this it should be able to find your dot program.</li>
</ol>
<p>Change this</p>
<pre><code>os.environ['PATH'] += ";"+"/usr/local/bin/dot"
</code></pre>
<p>to this</p>
<pre><code>os.environ['PATH'] += ":"+"/usr/local/bin"
</code></pre>
<p>Then your good.</p>
<p>EDIT: Note that I forgot to remove the /dot from the PATH variable myself (oops) - PATH is a colon delimited list of directories.</p>
http://stackoverflow.com/questions/242914/jpa-composite-key-sequence/697578#6975780Answer by Petriborg for JPA Composite Key + SequencePetriborg2009-03-30T15:00:28Z2009-03-30T15:00:28Z<p>I notice that it appears your building a composite primary key like this <a href="http://boris.kirzner.info/blog/archives/2008/07/19/hibernate-annotations-the-many-to-many-association-with-composite-key/" rel="nofollow">example</a>. While I was poking at a similar problem in my own database I wondered if maybe you could call the sql directly like:</p>
<p><code>select nextval ('hibernate_sequence')</code></p>
<p>I suppose that would be cheating though ;-)</p>
http://stackoverflow.com/questions/279945/set-permissions-on-a-compressed-file-in-python/596455#5964550Answer by Petriborg for Set permissions on a compressed file in pythonPetriborg2009-02-27T20:12:53Z2009-02-27T20:12:53Z<p>I had a similar problem to you, so here is the code spinet from my stuff, this I believe should help here.</p>
<pre><code># extract all of the zip
for file in zf.filelist:
name = file.filename
perm = ((file.external_attr >> 16L) & 0777)
if name.endswith('/'):
outfile = os.path.join(dir, name)
os.mkdir(outfile, perm)
else:
outfile = os.path.join(dir, name)
fh = os.open(outfile, os.O_CREAT | os.O_WRONLY , perm)
os.write(fh, zf.read(name))
os.close(fh)
print "Extracting: " + outfile
</code></pre>
<p>You might do something similar, but insert your own logic to calculate your perm value. I should note that I'm using Python 2.5 here, I'm aware of a few incompatibilities with some versions of Python's zipfile support.</p>
http://stackoverflow.com/questions/554419/integer-constant-does-not-reduce-to-an-integer/554459#5544590Answer by Petriborg for integer constant does 'not reduce to an integer'Petriborg2009-02-16T20:34:01Z2009-02-16T20:34:01Z<p>This is a stab in the dark because I haven't used Cocoa / ObjC in a long time now, but is the member variable sectionFromParentTable not of int type?</p>
http://stackoverflow.com/questions/250940/how-do-i-find-the-length-size-of-a-binary-blob-in-sqlite2How do I find the length (size) of a binary blob in sqlitePetriborg2008-10-30T17:02:53Z2008-10-30T17:57:08Z
<p>I have an sqlite table that contains a BLOB file, but need to do a size/length check on the blob, how do I do that?</p>
<p>According to some documentation I did find, using length(blob) won't work, because length() only works on texts and will stop counting after the first NULL. My empirical tests have shown this to be true.</p>
<p>I'm using SQLite 3.4.2</p>
http://stackoverflow.com/questions/152683/suggested-jdbc-books1Suggested JDBC booksPetriborg2008-09-30T11:45:48Z2008-09-30T12:48:03Z
<p>I'm working in a medium-ish sized development group working on multiple projects and am looking to find good JDBC books for the team. Most of the developers already know the basics of JDBC, but are looking to learn best practices and more advanced topics.</p>
<p>Topics might include:</p>
<ol>
<li>Advanced trips and tricks</li>
<li>Patterns, and things that allow for later complexity</li>
<li>Database fail over (where the client program transparently switches)</li>
<li>Cross platform (linux and windows) issues</li>
<li>Long standing client connections</li>
<li>Stored procedures</li>
<li>ORM/DAO/hibernate</li>
<li>Postgres specific JDBC work (custom objects and what not)</li>
</ol>
<p>Thats really a lot of ground there, but I'm looking for multiple books.
What do you suggest?</p>
http://stackoverflow.com/questions/1869036/is-there-a-queue-priorityqueue-implementation-which-is-also-a-set/1869132#1869132Comment by Petriborg on Is there a Queue (PriorityQueue) implementation which is also a Set?Petriborg2009-12-10T13:42:58Z2009-12-10T13:42:58Z@Mauli The PriorityQueue is a heap sorted list, I'm pretty sure the Set backing is either a Hash or Red & Black Tree backing depending on which implementation you pick, so you can either have O(n) time contains search or a O(log n) or O(1) hash lookup so you're right in that reguard I'll update the answer...http://stackoverflow.com/questions/1869036/is-there-a-queue-priorityqueue-implementation-which-is-also-a-set/1869132#1869132Comment by Petriborg on Is there a Queue (PriorityQueue) implementation which is also a Set?Petriborg2009-12-09T19:36:26Z2009-12-09T19:36:26Z@dfa The objects are shared between the queue and the set... its just their references get stored in two sets... My suggestion is the exact same one as @Andreas_D - its a very common solution used in Java's Collections work. If Java's Collections where easier to extend and create your own it wouldn't be so hackish...http://stackoverflow.com/questions/1867314/sqlite-api-boolean-access/1867351#1867351Comment by Petriborg on Sqlite API boolean accessPetriborg2009-12-08T14:46:07Z2009-12-08T14:46:07ZYes used, like this <code>#define SQL "UPDATE example SET ex_col='true';"</code> and then this stmt gets called normally. The sql code does the same, so I guess I need to just do everything as string (yum) or change the column type to <code>Int</code> instead, no pretty solutions here!!http://stackoverflow.com/questions/1867314/sqlite-api-boolean-access/1867351#1867351Comment by Petriborg on Sqlite API boolean accessPetriborg2009-12-08T14:35:31Z2009-12-08T14:35:31ZThey didn't have to fetch the boolean column in C code previously, so it wasn't being done. What they had are a lot of #defines for sql stmts (ins, upd, etc) and a whole bunch of views and triggers... basically the value is never directly read or inserted. :-/http://stackoverflow.com/questions/1568674/how-to-get-file-within-package-in-an-android-applicationComment by Petriborg on How to get File within' package, in an Android applicationPetriborg2009-10-14T20:12:45Z2009-10-14T20:12:45ZYou mean you're trying to read it out of the jar file itself right?http://stackoverflow.com/questions/1256099/create-an-array-from-a-txt-file/1256248#1256248Comment by Petriborg on create an array from a txt filePetriborg2009-08-10T18:07:40Z2009-08-10T18:07:40Zgreg - what version of python are you using that the csv.reader function takes a delimeter arguement? My python 2.6 doesn't do that, was it added in python 3?http://stackoverflow.com/questions/372668/code-golf-how-do-i-write-the-shortest-character-mapping-program/376872#376872Comment by Petriborg on Code Golf: How do I write the shortest character mapping program?Petriborg2009-08-06T16:59:36Z2009-08-06T16:59:36ZHacked account? Spam? this is weird. Why are you not just putting the code in the answer, this domain doesn't exist and is "for sale", so I conclude this is spam...http://stackoverflow.com/questions/1119670/jpa-hibernate-embedding-an-attribute/1119893#1119893Comment by Petriborg on JPA/Hibernate - Embedding an AttributePetriborg2009-07-14T19:19:12Z2009-07-14T19:19:12Z@skaffman - I think you need to move the @Embedded tag to the parent class and use the @MappedSuperclass... possibly?http://stackoverflow.com/questions/958037/handling-creation-of-orm-objects-prior-to-persistence-generation-of-primary-keys/1121506#1121506Comment by Petriborg on Handling creation of ORM objects prior to persistence/generation of primary keys?Petriborg2009-07-13T20:15:28Z2009-07-13T20:15:28ZI think it would - I have a lot of these sort of links in my own stuff and having each table generate its own id and then having FKs all over works pretty well for me.http://stackoverflow.com/questions/958037/handling-creation-of-orm-objects-prior-to-persistence-generation-of-primary-keysComment by Petriborg on Handling creation of ORM objects prior to persistence/generation of primary keys?Petriborg2009-07-13T17:53:11Z2009-07-13T17:53:11ZNemo - I thought you weren't allowed to have generated Ids in a EmbeddedId (aka composite) keys...http://stackoverflow.com/questions/1048952/please-explain-this-strange-outputComment by Petriborg on Please explain this strange output.Petriborg2009-06-26T13:02:25Z2009-06-26T13:02:25ZYoure printf calls need endline on them....http://stackoverflow.com/questions/1046089/jtable-not-returning-selected-row-correctly/1046120#1046120Comment by Petriborg on JTable not returning selected row correctlyPetriborg2009-06-26T00:14:51Z2009-06-26T00:14:51ZI guess it depends on how much of that functionality you need of course! 90% of the time for me I only need to be able to addRow() and sometimes moveRow(). I'll admit that if you need to be able to add columns as well as rows it gets more complex.http://stackoverflow.com/questions/1046089/jtable-not-returning-selected-row-correctly/1046120#1046120Comment by Petriborg on JTable not returning selected row correctlyPetriborg2009-06-25T20:43:21Z2009-06-25T20:43:21ZYou're selecting them again as a user after the replace(cells) call, and it still returns an index of -1?http://stackoverflow.com/questions/1027343/finding-weak-reference-objects-in-collections-in-java/1027432#1027432Comment by Petriborg on finding weak reference objects in collections in javaPetriborg2009-06-22T14:20:06Z2009-06-22T14:20:06ZOh nice that trick with Collections is cool, definitely useful.http://stackoverflow.com/questions/1015778/hibernate-findbyid-isnt-finding-records-that-it-previously-found/1018933#1018933Comment by Petriborg on Hibernate findById isn't finding records that it previously foundPetriborg2009-06-19T17:26:48Z2009-06-19T17:26:48ZI don't think an update could hid the object, I would think it would just appear "out of date" assuming you didn't change the key... Note that I do a lot of multi-thread jdbc (and now hibernate since we're converting over) work, and I have seen similar problems in our program. Always the problem turned out to be as I described, it was just a matter of finding the syncing problem.