After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 516287 - String concatenation operator doesn't work in initializers
String concatenation operator doesn't work in initializers
Status: RESOLVED FIXED
Product: vala
Classification: Core
Component: Code Generator
0.3.x
Other All
: High normal
: ---
Assigned To: Jürg Billeter
Vala maintainers
: 538166 549512 549513 555047 555048 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2008-02-13 19:53 UTC by Andrea Del Signore
Modified: 2008-10-17 12:01 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Vala source code (test case) (472 bytes, text/plain)
2008-02-13 19:54 UTC, Andrea Del Signore
  Details
Wrong generated C code (1.20 KB, text/plain)
2008-02-13 19:55 UTC, Andrea Del Signore
  Details
Proposed fix (5.15 KB, patch)
2008-08-30 13:34 UTC, Andrea Del Signore
needs-work Details | Review
A more complex test case (1.00 KB, text/plain)
2008-08-30 13:42 UTC, Andrea Del Signore
  Details
A more complex test case (Vapi file) (135 bytes, text/plain)
2008-08-30 13:43 UTC, Andrea Del Signore
  Details
A more complex test case (config.h) (30 bytes, text/plain)
2008-08-30 13:44 UTC, Andrea Del Signore
  Details
Proposed fix #2 (5.39 KB, patch)
2008-09-30 11:03 UTC, Andrea Del Signore
none Details | Review
Cleaned bot not fixed patch (3.96 KB, patch)
2008-10-09 18:15 UTC, Jürg Billeter
needs-work Details | Review
New correct patch (4.29 KB, patch)
2008-10-09 21:58 UTC, Andrea Del Signore
reviewed Details | Review
Example of wrong C code with the last patch (10.34 KB, text/plain)
2008-10-09 22:11 UTC, Andrea Del Signore
  Details

Description Andrea Del Signore 2008-02-13 19:53:39 UTC
Please describe the problem:
Using the + (string concatenation) operator in initializers result in wrong generated C code.

Steps to reproduce:


Actual results:
wrong C code

Expected results:
good C code :)

Does this happen every time?
Yes

Other information:
Tested with vala svn rev. 1008
Comment 1 Andrea Del Signore 2008-02-13 19:54:44 UTC
Created attachment 105178 [details]
Vala source code (test case)
Comment 2 Andrea Del Signore 2008-02-13 19:55:13 UTC
Created attachment 105179 [details]
Wrong generated C code
Comment 3 Jürg Billeter 2008-02-14 14:35:38 UTC
Confirming.
Comment 4 Jaap A. Haitsma 2008-06-28 17:17:45 UTC
*** Bug 538166 has been marked as a duplicate of this bug. ***
Comment 5 Jaap A. Haitsma 2008-06-29 21:32:10 UTC
This is currently blocking my porting of cheese. Do you have any pointers on how to fix this in vala. I can try to take a stab at this
Comment 6 Andrea Del Signore 2008-06-30 11:56:13 UTC
(In reply to comment #5)
> This is currently blocking my porting of cheese. Do you have any pointers on
> how to fix this in vala. I can try to take a stab at this

You can work around this bug if you initialize the variabile in the class costructor (see attachment in comment #1)

Comment 7 Jaap A. Haitsma 2008-06-30 20:22:46 UTC
For me that does not really work. I have a struct that I need to fill

What I want is to fill a const struct array that I use to lookup stuff

E.g

struct EffectData {
	Effect effect;
	string name;
	string filename;
	bool is_black;
} 

const EffectData[] EFFECT_DATA = {
	{Effect.NO_EFFECT, N_("No Effect"),
	 Config.PACKAGE_DATADIR + "/effects/identity.png", false}		
	};
Comment 8 Jürg Billeter 2008-08-27 22:22:38 UTC
*** Bug 549512 has been marked as a duplicate of this bug. ***
Comment 9 Jürg Billeter 2008-08-27 22:22:48 UTC
*** Bug 549513 has been marked as a duplicate of this bug. ***
Comment 10 Andrea Del Signore 2008-08-30 13:34:13 UTC
Created attachment 117633 [details] [review]
Proposed fix
Comment 11 Andrea Del Signore 2008-08-30 13:42:41 UTC
Created attachment 117634 [details]
A more complex test case

This is a more complex test case. Compile with:

valac -C --save-temps bug-516287-prop-init-consts.vala --vapidir . --pkg bug-516287-prop-init-consts

gcc -I . -o bug-516287-prop-init-consts bug-516287-prop-init-consts.c `pkg-config --cflags --libs glib-2.0 gobject-2.0`
Comment 12 Andrea Del Signore 2008-08-30 13:43:20 UTC
Created attachment 117635 [details]
A more complex test case (Vapi file)
Comment 13 Andrea Del Signore 2008-08-30 13:44:04 UTC
Created attachment 117636 [details]
A more complex test case (config.h)
Comment 14 Jaap A. Haitsma 2008-09-26 20:10:10 UTC
Juerg, can you look at the patch in this bug. Thanks
Comment 15 Jürg Billeter 2008-09-26 20:48:26 UTC
Thanks for the patch. It looks mostly fine, however, I don't like the CCodeBinaryOperator.NONE part, as I've already mentioned on IRC some time ago, it's not a binary operator. I think it'd make sense to just combine the two CCodeConstant objects into a new CCodeConstant that contains `"foo" "bar"´. Can you update the patch?
Comment 16 Andrea Del Signore 2008-09-26 21:33:02 UTC
Juerg we have already talked about combining the two costants in one, but as I already stated that woudn't solved the problem in comment #7.

So I now that you didn't like the NONE (was NOP) operator, but I don't see any other "simple" solution to the problem.

Having said that you know, may be I've missing something important...
Comment 17 Jürg Billeter 2008-09-26 21:37:33 UTC
I'm not talking about combining "foo" + "bar" into "foobar". What I'm proposing is to transform "foo" + "bar" in Vala to one CCodeConstant that contains `"foo" "bar"´. This will also work with DATADIR + "bar" in Vala to one CCodeConstant that contains `DATADIR "bar"´
Comment 18 Andrea Del Signore 2008-09-30 11:03:39 UTC
Created attachment 119637 [details] [review]
Proposed fix #2

This patch try to follow what Jürg wrote on comment #17.

The only thing that I'm not sure about is this if:

if ((cleft is CCodeConstant || ((expr.parent_node is InitializerList || expr.parent_node is Field) && cleft is CCodeIdentifier))
&& (cright is CCodeConstant || ((expr.parent_node is InitializerList || expr.parent_node is Field) && cright is CCodeIdentifier))) { .....


especially the part expr.parent_node is InitializerList etc...

Anyway that code is required for initializers like DATADIR + "foo" for class fields and structures.
Comment 19 Jared Moore 2008-10-05 05:25:32 UTC
*** Bug 555047 has been marked as a duplicate of this bug. ***
Comment 20 Jaap A. Haitsma 2008-10-05 07:54:30 UTC
*** Bug 555048 has been marked as a duplicate of this bug. ***
Comment 21 Jürg Billeter 2008-10-09 18:10:47 UTC
Thanks for the updated patch. The mentioned condition is certainly not correct in all cases as not all CCodeIdentifiers in an initializer have to be constants. However, it should fix the bug and I don't think that it causes regressions.
Comment 22 Jürg Billeter 2008-10-09 18:15:40 UTC
Created attachment 120294 [details] [review]
Cleaned bot not fixed patch

On a closer look, there are regressions, so I can't commit this patch yet. The following example code causes two memory leaks:

void main () {
	string foo = "foo";
	string bar = "bar";
	string result = foo + "hello" + bar;
}

The issue is probably that the semantic analyzer doesn't mark the result of the concatenation as owned.
Comment 23 Andrea Del Signore 2008-10-09 21:58:50 UTC
Created attachment 120313 [details] [review]
New correct patch

This patch pass the make check and seems to fix this bug and the last regression. It's a little bit different from what we have said in IRC though

Please mind the comment around this line:

/* HACK: without this bad things happens: wrong c code, memory leaks, bug #538776...
How can we move this to SemanticAnalyzer too? */
expr.value_type.value_owned = false;
Comment 24 Andrea Del Signore 2008-10-09 22:11:54 UTC
Created attachment 120315 [details]
Example of wrong C code with the last patch

This is the C code (wrong) that vala produces if the commented line in the last patch is omitted.

There are a lot of temp variables since vala thinks that all the string are owned even the constant ones.

Regard bug 538776, this code triggers the same bad behaviour, where local vars are added to a method (see test_fun_with_constants_test_method) and then used in the instance init one.

I attached this info to this bug because Jürg is not sure if there some correlation with the bug 538776 so he can check.
Comment 25 Jürg Billeter 2008-10-17 11:31:49 UTC
Thinking a bit more about the approach, it should be possible to avoid the hacks in the patch. To make it a bit easier, I'll commit a part of the patch now and will think about how to solve this properly, then.
Comment 26 Jürg Billeter 2008-10-17 11:42:47 UTC
2008-10-17  Jürg Billeter  <j@bitron.ch>

	* vala/valasemanticanalyzer.vala:
	* gobject/valaccodegenerator.vala:

	Move C-specific string concatenation from semantic analyzer to
	code generator, patch by Andrea Del Signore
Comment 27 Jürg Billeter 2008-10-17 12:01:00 UTC
2008-10-17  Jürg Billeter  <j@bitron.ch>

	* vala/valabinaryexpression.vala:
	* vala/valaexpression.vala:
	* vala/valaliteral.vala:
	* vala/valamemberaccess.vala:
	* vala/valasemanticanalyzer.vala:
	* gobject/valaccodegenerator.vala:

	Treat the result of two concatenated string constants as constant,
	fixes bug 516287

Fixed in r1848.