User Ryan Shaw - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T02:49:38Zhttp://stackoverflow.com/feeds/user/80347http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1129795/what-is-suppresswarnings-unchecked-in-java/1129803#1129803-6Answer by Ryan Shaw for What is SuppressWarnings ("unchecked") in Java?Ryan Shaw2009-07-15T06:52:47Z2009-07-15T06:52:47Z<p>Without this the IDE (I use Eclipse) will give a warning saying function unused. This is a bit annoying.</p>
http://stackoverflow.com/questions/43842/how-would-you-programmatically-create-a-pattern-from-a-date-that-is-stored-in-a-s/1102356#11023560Answer by Ryan Shaw for How Would You Programmatically Create a Pattern from a Date that is Stored in a String?Ryan Shaw2009-07-09T07:29:48Z2009-07-09T07:29:48Z<p>The POJava date parser org.pojava.datetime.DateTime is an immutable, and robust parser that supports multiple languages, time zones, and formats. </p>
<p>Best of all, the parser is heuristic and does not require a pre-existing “format” to work. You just pass it a date/date-time text string and get out a java.util.Date! </p>
http://stackoverflow.com/questions/857070/how-to-convert-an-arbitrary-large-integer-from-base-10-to-base-161How to convert an arbitrary large integer from base 10 to base 16?Ryan Shaw2009-05-13T09:53:15Z2009-06-30T15:51:55Z
<p>The program requires an input of an arbitrary large unsigned integer which is expressed as one string in base 10. The outputs is another string that expresses the integer in base 16.</p>
<p>For example, the input is "1234567890987654321234567890987654321234567890987654321",
and the output shall be "CE3B5A137DD015278E09864703E4FF9952FF6B62C1CB1"</p>
<p>The faster the algorithm the better.</p>
<p>It will be very easy if the input is limited within 32-bit or 64-bit integer; for example, the following code can do the conversion:</p>
<pre><code>#define MAX_BUFFER 16
char hex[] = "0123456789ABCDEF";
char* dec2hex(unsigned input) {
char buff[MAX_BUFFER];
int i = 0, j = 0;
char* output;
if (input == 0) {
buff[0] = hex[0];
i = 1;
} else {
while (input) {
buff[i++] = hex[input % 16];
input = input / 16;
}
}
output = malloc((i + 1) * sizeof(char));
if (!output)
return NULL;
while (i > 0) {
output[j++] = buff[--i];
}
output[j] = '\0';
return output;
}
</code></pre>
<p>The real challenging part is the "arbitrary large" unsigned integer. I have googled but most of them are talking about the conversion within 32-bit or 64-bit. No luck is found.</p>
<p>Can anyone give any hit or any link that can be read on?</p>
<p>Thanks in advance.</p>
<p><strong>Edit</strong> This is an interview question I encountered recently. Can anyone briefly explain how to solve this problem? I know there is a gmp library and I utilized it before; however as an interview question it requires not using external library. </p>
http://stackoverflow.com/questions/994331/java-how-to-decode-html-character-entities-in-java-like-httputility-htmldecode0Java: How to decode HTML character entities in Java like HttpUtility.HtmlDecode?Ryan Shaw2009-06-15T02:38:50Z2009-06-15T02:44:54Z
<p>Basically I would like to decode a given Html document, and replace all special chars, such as "&nbsp" -> " ", ">" -> ">".</p>
<p>In .NET we can make use of <code>HttpUtility.HtmlDecode</code>. </p>
<p>What's the equivalent function in Java?</p>
http://stackoverflow.com/questions/985151/how-to-present-the-nullable-primitive-type-int-in-java2How to present the nullable primitive type int in Java?Ryan Shaw2009-06-12T05:28:41Z2009-06-12T06:26:57Z
<p>I am designing an entity class which has a field named "documentYear", which might have unsigned integer values such as 1999, 2006, etc. Meanwhile, this field might also be "unknown", that is, not sure which year the document is created.</p>
<p>Therefore, a nullable <strong>int</strong> type as in C# will be well suited. However, Java does not have a nullable feature as C# has. </p>
<p>I have two options but I don't like them both:</p>
<ol>
<li>Use <code>java.lang.Integer</code> instead of the primitive type <code>int</code>;</li>
<li>Use -1 to present the "unknown" value</li>
</ol>
<p>Does anyone have better options or ideas? </p>
<p><strong>Update</strong>: My entity class will have tens of thousands of instances; therefore the overhead of java.lang.Integer might be too heavy for overall performance of the system.</p>
http://stackoverflow.com/questions/975284/net-maximized-screen-ignores-taskbar/975298#9752981Answer by Ryan Shaw for .Net Maximized Screen Ignores Taskbar Ryan Shaw2009-06-10T12:37:26Z2009-06-10T12:43:33Z<p>Set the form border to None before making it maximized.</p>
<p>This code will work in a single monitor:</p>
<pre><code>private void Form1_Load(object sender, EventArgs e)
{
this.FormBorderStyle = FormBorderStyle.None;
this.WindowState = FormWindowState.Maximized;
}
</code></pre>
<p>I haven't tested the dual monitor scenario since i don't have this at this moment. :P</p>
<p><strong>EDIT</strong>: I didn't get it "Maximized Screen <em>Ignores</em> Taskbar". What does <em>Ignores</em> mean?</p>
<p>Do you want your form to cover the taskbar and fill the entire screen?</p>
http://stackoverflow.com/questions/923876/why-are-my-chinese-characters-not-displayed-correctly-in-c-string/924440#9244401Answer by Ryan Shaw for Why are my Chinese characters not displayed correctly in c# stringRyan Shaw2009-05-29T04:55:49Z2009-05-29T07:51:57Z<p>So far the information is:</p>
<ol>
<li>You are using direct SQL INSERT script to insert into the database.</li>
<li>The data appears broken in database.</li>
</ol>
<p>The problem might lie in two places:</p>
<ol>
<li><p>In your INSERT statement, did you prefix the insert value with N? </p>
<p>INSERT INTO #tmp VALUES (N'全澳甲流确诊病例已破100')</p></li>
<li><p>If you prefix the value with N, does the String object hold the correct data?</p>
<p>String sql = "INSERT INTO #tmp VALUES (N' " + value + "')"</p></li>
</ol>
<p>Here I assume <strong>value</strong> is a String object. </p>
<p>Does this String object hold the correct Chinese characters? </p>
<p>Try print out its value and see.</p>
<p><strong>Updated</strong>:</p>
<p>Let's assume the INSERT query is constructed as below:</p>
<pre><code>String sql = "INSERT INTO #tmp VALUES (N' " + value + "')"
</code></pre>
<p>I assume <strong>value</strong> holds the Chinese character.</p>
<p>Did you assign the Chinese characters into value directly? Like</p>
<pre><code>String value = "全澳甲流确诊病例已破100";
</code></pre>
<p>The above code shall work. However, if you have done any intermediate processing, it will cause problem. </p>
<p>I did a localized TC project before; the previous architect had done several encoding conversions which are necessary in ASP; but they will create problem in .NET:</p>
<pre><code> String value = "全澳甲流确诊病例已破100";
Encoding tc = Encoding.GetEncoding("BIG5");
byte[] bytes = tc.GetBytes(value);
value = Encoding.Unicode.GetString(bytes);
</code></pre>
<p>The above conversions are unnecessary. In .NET, simply direct assignment will work:</p>
<pre><code> String value = "全澳甲流确诊病例已破100";
</code></pre>
<p>That is because String constants and the String object itself are Unicode compliant. </p>
<p>The framework library, such as File IO, when reading a file which is not encoded in Unicode, they will convert the foreign encoding to Unicode; in other words, the framework will do this dirty job for you. You do not need to perform manual encoding conversion most of time.</p>
<p><strong>Update</strong>: Understood that ASP is used to insert data into an SQL server. </p>
<p>I have written a small piece of ASP to insert some Chinese chars into SQL database and it works.</p>
<p>I have a database named "trans" and I created a table "temp" inside. <strong>The ASP page is encoded in UTF-8.</strong> </p>
<pre><code><html>
<head title="Untitled">
<meta http-equiv="content-type" content="text/html";charset="utf-8">
</head>
<body>
<script language="vbscript" runat="server">
If Request.Form("Button1") = "Submit" Then
SqlQuery = "INSERT INTO trans..temp VALUES (N'" + Request.Form("Text1") + "')"
Set cn = Server.CreateObject("ADODB.Connection")
cn.Provider = "sqloledb"
cn.Properties("Data Source").Value = *********
cn.Properties("Initial Catalog").Value = "TRANS"
cn.Properties("User ID").Value = "sa"
cn.Properties("Password").Value = **********
cn.Properties("Persist Security Info").Value = False
cn.Open
cn.Execute(SqlQuery)
cn.Close
Set cn = Nothing
Response.Write SqlQuery
End If
</script>
<form name="form1" method="post" action="input.asp">
<input name="Text1" type="text" />
<input name="Button1" value="Submit" type="submit" />
</form>
</body>
</html>
</code></pre>
<p>The table is defined as belows in my database:</p>
<pre><code> create table temp (data NVARCHAR(100))
</code></pre>
<p>Submit the ASP page several times and my table contains proper Chinese data:</p>
<pre><code>select * from trans..temp
data
----------------
test
测试
全澳甲流确诊病例已破100
</code></pre>
<p>Hope this can help.</p>
http://stackoverflow.com/questions/896290/recursively-generate-ordered-substrings-from-an-ordered-sequence-of-chars/896322#8963221Answer by Ryan Shaw for Recursively generate ordered substrings from an ordered sequence of chars?Ryan Shaw2009-05-22T04:14:39Z2009-05-22T04:14:39Z<p>Actually your question is to list all subsets from a given set.</p>
<p>Considering the set {a,a,a,d,d,d,c,g,h,z,z}, your goal is to list all its unique subsets in order, except the empty set:
{a}
{a,a}
{a,a,a}
{a,a,a,d}</p>
<p>There is a quick way to list all subsets from a given set. </p>
<p>Let's take {ABC} as example:</p>
<pre><code>{} = 000
{C} = 001
{B} = 010
{BC} = 011
{A} = 100
{AC} = 101
{AB} = 110
{ABC} = 111
</code></pre>
<p>See the pattern? Simply use an integer that grows from 0 to 2^n - 1. If the i'th digit of the integer is 1, fetch the i'th element from the set.</p>
<p>Note: Since in your example, there are duplicates in the string; therefore after generation you might need to remove duplicates.</p>
<p>Hope this can help you.</p>
http://stackoverflow.com/questions/833526/why-short-is-stored-as-4-bytes-in-a-struct-in-c1Why short is stored as 4 bytes in a struct in C?Ryan Shaw2009-05-07T08:47:13Z2009-05-07T09:31:29Z
<p>I have the following two structs:</p>
<p>The problem is the sizeof(Content) returns 160. The struct consists of 11 shorts, 6 ints, 76 chars, 7 floats, 1 double, totally adding to 158 bytes. I have counted three times and there is still a 2 byte difference.</p>
<pre><code>typedef struct TIME_T {
short year,mon,day;
short hour,min,sec;
} TIME;
typedef struct {
int no;
char name[20];
char Code[10];
char DASType[10];
short wlen;
float VLtd;
int samp;
int comp;
int locationID;
short TranMode;
char TranIns[12];
short TimerMode;
char ClkType[12];
float ClkErr;
float lat;
float lon;
float alt;
float azimuth,incident;
short weight;
short veloc;
int oritype;
char seismometer[12];
double sens;
TIME start_time;
int record_samples;
} Content;
</code></pre>
<p>I write a small piece of code to print the position of each variables in the struct, and suddenly I find the <code>float wlen</code> takes 4 bytes. My code is as follows:</p>
<pre><code>int main(void)
{
Content content;
printf("Sizeof Content: %d\n", sizeof(content));
printf("Sizeof int content.no: %d\n", (int)&content.name - (int)&content.no);
printf("Sizeof char[20] content.name: %d\n", (int)&content.Code - (int)&content.name);
printf("Sizeof char[10] content.Code: %d\n", (int)&content.DASType - (int)&content.Code);
printf("Sizeof char[10] content.DASType: %d\n", (int)&content.wlen - (int)&content.DASType);
printf("Sizeof short content.wlen: %d\n", (int)&content.VLtd - (int)&content.wlen);
printf("Sizeof float content.VLtdL %d\n", (int)&content.samp - (int)&content.VLtd);
printf("Sizeof int content.samp: %d\n", (int)&content.comp - (int)&content.samp);
printf("Sizeof int content.comp: %d\n", (int)&content.locationID - (int)&content.comp);
printf("Sizeof int content.locationID: %d\n", (int)&content.TranMode - (int)&content.locationID);
printf("Sizeof short content.TranMode: %d\n", (int)&content.TranIns - (int)&content.TranMode);
printf("Sizeof char[12] content.TranIns: %d\n", (int)&content.TimerMode - (int)&content.TranIns);
printf("Sizeof short content.TimerMode: %d\n", (int)&content.ClkType - (int)&content.TimerMode);
printf("Sizeof char[12] content.ClkType: %d\n", (int)&content.ClkErr - (int)&content.ClkType);
printf("Sizeof float content.ClkErr: %d\n", (int)&content.lat - (int)&content.ClkErr);
printf("Sizeof float content.lat: %d\n", (int)&content.lon - (int)&content.lat);
printf("Sizeof floatcontent.lon: %d\n", (int)&content.alt - (int)&content.lon);
printf("Sizeof floatcontent.alt: %d\n", (int)&content.azimuth - (int)&content.alt);
printf("Sizeof floatcontent.azimuth: %d\n", (int)&content.incident - (int)&content.azimuth);
printf("Sizeof floatcontent.incident: %d\n", (int)&content.weight - (int)&content.incident);
printf("Sizeof short content.weight: %d\n", (int)&content.veloc - (int)&content.weight);
printf("Sizeof short content.veloc: %d\n", (int)&content.oritype - (int)&content.veloc);
printf("Sizeof int content.oritype: %d\n", (int)&content.seismometer - (int)&content.oritype);
printf("Sizeof char[12] content.seismometer: %d\n", (int)&content.sens - (int)&content.seismometer);
printf("Sizeof double content.sens: %d\n", (int)&content.start_time - (int)&content.sens);
printf("Sizeof TIME content.start_time: %d\n", (int)&content.record_samples - (int)&content.start_time);
printf("Sizeof int content.record_samples: %d\n", sizeof(content.record_samples));
getchar();
return 0;
}
</code></pre>
<p>The output is as follows:</p>
<pre><code>Sizeof int content.no: 4
Sizeof char[20] content.name: 20
Sizeof char[10] content.Code: 10
Sizeof char[10] content.DASType: 10
Sizeof short content.wlen: 4
**Sizeof float content.VLtdL 4**
Sizeof int content.samp: 4
Sizeof int content.comp: 4
Sizeof int content.locationID: 4
Sizeof short content.TranMode: 2
Sizeof char[12] content.TranIns: 12
Sizeof short content.TimerMode: 2
Sizeof char[12] content.ClkType: 12
Sizeof float content.ClkErr: 4
Sizeof float content.lat: 4
Sizeof floatcontent.lon: 4
Sizeof floatcontent.alt: 4
Sizeof floatcontent.azimuth: 4
Sizeof floatcontent.incident: 4
Sizeof short content.weight: 2
Sizeof short content.veloc: 2
Sizeof int content.oritype: 4
Sizeof char[12] content.seismometer: 12
Sizeof double content.sens: 8
Sizeof TIME content.start_time: 12
Sizeof int content.record_samples: 4
</code></pre>
<p>The compiler is MSVC8, no UNICODE defined, no other macro defined. It's x86.</p>
<p>I tried to compile the same code in gcc version 3.4.4, the output is the same.
<code>Sizeof short content.wlen: 4</code></p>
<p>Can anyone explain this to me?</p>
<p>Thanks in advance.</p>
<p><strong>EDIT:</strong> Thanks for answering! I have got it now.</p>
http://stackoverflow.com/questions/788026/hex-to-decimal-conversion-kr-exercise/788061#788061-2Answer by Ryan Shaw for Hex to Decimal conversion [K&R exercise]Ryan Shaw2009-04-25T01:53:28Z2009-04-26T04:13:06Z<p>Yesterday I wrote a function like this. You can see my code below.</p>
<pre><code>/* Converting a hex string to integer, assuming the heading
0x or 0X has already been removed and pch is not NULL */
int hex_str_to_int(const char* pch) {
int value = 0;
int digit = 0;
for (; *pch; ++pch) {
if (*pch >= '0' && *pch <= '9') {
digit = (*pch - '0');
} else if (*pch >= 'A' && *pch <= 'F') {
digit = (*pch - 'A' + 10);
} else if (*pch >= 'a' && *pch <= 'f') {
digit = (*pch - 'a' + 10);
} else {
break;
}
// Check for integer overflow
if ((value *= 16) < 0 || (value += digit) < 0) {
return INT_MAX;
}
}
return value;
}
</code></pre>
<p>Here is the testing code:</p>
<pre><code>int main(void) {
printf("%d %d\n", hex_str_to_int("0"), 0x0);
printf("%d %d\n", hex_str_to_int("A"), 0xA);
printf("%d %d\n", hex_str_to_int("10"), 0x10);
printf("%d %d\n", hex_str_to_int("A1"), 0xA1);
printf("%d %d\n", hex_str_to_int("AB"), 0xAB);
printf("%d %d\n", hex_str_to_int("100"), 0x100);
printf("%d %d\n", hex_str_to_int("1A2"), 0x1A2);
printf("%d %d\n", hex_str_to_int("10A"), 0x10A);
printf("%d %d\n", hex_str_to_int("7FFFFFF"), 0x7FFFFFF);
printf("%d %d\n", hex_str_to_int("7FFFFFF1"), 0x7FFFFFF1);
printf("%d %d\n", hex_str_to_int("7FFFFFF2"), 0x7FFFFFF2);
printf("%d %d\n", hex_str_to_int("7FFFFFFE"), 0x7FFFFFFE);
printf("%d %d\n", hex_str_to_int("7FFFFFFF"), 0x7FFFFFFF);
printf("%d %d\n", hex_str_to_int("80000000"), 0x7FFFFFFF + 1);
printf("%d %d\n", hex_str_to_int("80000001"), 0x7FFFFFFF + 2);
printf("%d %d\n", hex_str_to_int("10AX"), 0x10A);
printf("%d %d\n", hex_str_to_int("203!"), 0x203);
return 0;
}
</code></pre>
<p>It outputs the following values:</p>
<pre><code>0 0
10 10
16 16
161 161
171 171
256 256
418 418
266 266
134217727 134217727
2147483633 2147483633
2147483634 2147483634
2147483646 2147483646
2147483647 2147483647
2147483647 -2147483648
2147483647 -2147483647
266 266
515 515
</code></pre>
http://stackoverflow.com/questions/784717/c-remove-icon-from-the-forms-title-bar/784732#7847322Answer by Ryan Shaw for C# remove icon from the form's title barRyan Shaw2009-04-24T06:22:53Z2009-04-24T06:22:53Z<p>There are two ways. <br/></p>
<p>First is to create an empty Icon file and then Select Form -> Right Click -> Goto Properties -> Goto Icon -> Select your file. <br/></p>
<p>The other approach is to set FormBorderStyle of the form to FormBorderStyle.SizableToolWindow or FormBorderStyle.FixedToolWind</p>
<p>And one more way is to set ShowIcon property to be false.</p>
http://stackoverflow.com/questions/780283/is-int32-i-gcnew-int32-allocated-on-managed-heap2Is Int32^ i = gcnew Int32() allocated on managed heap?Ryan Shaw2009-04-23T04:09:37Z2009-04-23T11:56:21Z
<p>Basically I would like to know the difference between <br/>
<code>Int32^ i = gcnew Int32();</code> <br/>
and <br/>
<code>Int32* i2 = new Int32();</code><br/></p>
<p>I have written the following code:</p>
<pre><code>#include <stdio.h>
#using <mscorlib.dll>
using namespace System;
int main(void) {
Int32^ i = gcnew Int32();
Int32* i2 = new Int32();
printf("%p %d\n", i2, *i2);
printf("%p %d\n", i, *i);
return 0;
}
</code></pre>
<p>It gives the following output:</p>
<pre><code>004158B8 0
00E1002C 0
</code></pre>
<p>It seems the two integer are allocated in two different memory locations. </p>
<p>Is the <em>gcnew</em> Int32() allocated in managed heap? or directly on the stack?</p>
http://stackoverflow.com/questions/780283/is-int32-i-gcnew-int32-allocated-on-managed-heap/780300#7803000Answer by Ryan Shaw for Is Int32^ i = gcnew Int32() allocated on managed heap?Ryan Shaw2009-04-23T04:19:17Z2009-04-23T04:19:17Z<p>I have got the answer. gcnew will allocate the object on managed heap, even the type is a value type.</p>
<p>Therefore, Int32^ i = gcnew Int32() will allocate the newly created object on managed heap.</p>
<p>The following code can prove this:</p>
<pre><code>#include <stdio.h>
#using <mscorlib.dll>
using namespace System;
int main(void) {
Object^ o = gcnew Object();
long j = 0;
while (GC::GetGeneration(o) == 0) {
Int32^ i = gcnew Int32();
j += 4;
if (j % 100 == 0) {
printf("%d\n", i);
}
}
printf("Generation 0 collection happens at %ld\n", j);
return 0;
}
</code></pre>
<p>It runs with output </p>
<pre><code>14849324
14849260
14849196
14849132
14849068
14849004
14848940
14848876
14848812
14848748
14848684
14848620
14848556
14848492
14848428
14848364
Generation 0 collection happens at 146880
</code></pre>
http://stackoverflow.com/questions/728939/how-to-execute-some-code-before-entering-the-main-routine-in-vc3How to execute some code before entering the main() routine in VC?Ryan Shaw2009-04-08T07:52:32Z2009-04-08T20:10:41Z
<p>I am reading Microsoft's CRT source code, and I can come up with the following code, where the function __initstdio1 will be executed before main() routine.</p>
<p>The question is, how to execute some code before entering the main() routine in VC (not VC++ code)?</p>
<pre><code>#include <stdio.h>
#pragma section(".CRT$XIC",long,read)
int __cdecl __initstdio1(void);
#define _CRTALLOC(x) __declspec(allocate(x))
_CRTALLOC(".CRT$XIC") static pinit = __initstdio1;
int z = 1;
int __cdecl __initstdio1(void) {
z = 10;
return 0;
}
int main(void) {
printf("Some code before main!\n");
printf("z = %d\n", z);
printf("End!\n");
return 0;
}
</code></pre>
<p>The output will be:</p>
<pre><code>Some code before main!
z = 10
End!
</code></pre>
<p>However, I am not able to understand the code. </p>
<p>I have done some google on .CRT$XIC but no luck is found. Can some expert explain above code segment to me, especially the followings:</p>
<ol>
<li>What does this line <code>_CRTALLOC(".CRT$XIC") static pinit = __initstdio1;</code> mean? What is the significance of the variable pinit?</li>
<li>During compilation the compiler (cl.exe) throws a warning saying as below:</li>
</ol>
<p>Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
Copyright (C) Microsoft Corporation. All rights reserved.</p>
<pre><code>stdmacro.c
stdmacro.c(9) : warning C4047: 'initializing' : 'int' differs in levels of indirection from 'int (__
cdecl *)(void)'
Microsoft (R) Incremental Linker Version 9.00.30729.01
Copyright (C) Microsoft Corporation. All rights reserved.
/out:stdmacro.exe
stdmacro.obj
</code></pre>
<p>What is the corrective action needs to be done to remove the warning message?</p>
<p>Thanks in advance.</p>
<p><br/></p>
<p>Added:</p>
<p>I have modified the code and give type to pinit as _PIFV. Now the warning message is gone.</p>
<p>The new code is as follows:</p>
<pre><code>#include <stdio.h>
#pragma section(".CRT$XIC1",long,read)
int __cdecl __initstdio1(void);
typedef int (__cdecl *_PIFV)(void);
#define _CRTALLOC(x) __declspec(allocate(x))
_CRTALLOC(".CRT$XIC1") static _PIFV pinit1 = __initstdio1;
int z = 1;
int __cdecl __initstdio1(void) {
z = 100;
return 0;
}
int main(void) {
printf("Some code before main!\n");
printf("z = %d\n", z);
printf("End!\n");
return 0;
}
</code></pre>
http://stackoverflow.com/questions/721861/in-case-of-integer-overflows-what-is-the-result-of-unsigned-int-int-unsig2In case of integer overflows what is the result of (unsigned int) * (int) ? unsigned or int?Ryan Shaw2009-04-06T15:01:18Z2009-04-06T15:58:58Z
<p>In case of integer overflows what is the result of (unsigned int) * (int) ? unsigned or int?</p>
<p>I was auditing the following function, and suddenly I came out with that question. In the below function, it is vulnerable at line 17.</p>
<pre><code>1. // Create a character array and initialize it with init[]
2. // repeatedly. The size of this character array is specified by
3. // w*h.
4. char *function4(unsigned int w, unsigned int h, char *init)
5. {
6. char *buf;
7. int i;
8.
9. if (w*h > 4096)
10. return (NULL);
11.
12. buf = (char *)malloc(4096+1);
13. if (!buf)
14. return (NULL);
15.
16. for (i=0; i<h; i++)
17. memcpy(&buf[i*w], init, w);
18.
19. buf[4096] = '\0';
20.
21. return buf;
22. }
</code></pre>
<p>Consider both <code>w</code> and <code>h</code> are very large unsigned integers. The multiplication at line 9 have a chance to pass the validation. </p>
<p>Now the problem is at line 17. Multiply <code>int i</code> with <code>unsigned int w</code>: if the result is <code>int</code>, it is possible that the product is negative, resulting in accessing a position that is before <code>buf</code>. If the result is <code>unsigned int</code>, the product will always be positive, resulting in accessing a position that is after <code>buf</code>.</p>
<p>It's hard to write code to justify this: <code>int</code> is too large. Does anyone has ideas on this?</p>
<p><br/></p>
<p>Added: </p>
<p>The question here is <strong>not</strong> to discuss how <code>bad</code> the function is, or how to improve the function to make it better. </p>
<p>The question is to ask: </p>
<pre><code>`what is the result of (unsigned int) * (int) ? unsigned or int?`
</code></pre>
<p>Is there any documentation that specifies this? I am searching for it.</p>
<p><br/></p>
<p>Added: </p>
<p>I guess there is no need to discuss whether <code>(unsigned int) * (int)</code> produces <code>unsigned int</code> or <code>int</code>. Because from C's perspective, they are bytes. Therefore, the following code holds:</p>
<pre><code>unsigned int x = 10;
int y = -10;
printf("%d\n", x * y); // print x * y in signed integer
printf("%u\n", x * y); // print x * y in unsigned integer
</code></pre>
<p>Therefore, it does not matter what type the multiplication returns. It matters that whether the consumer function takes <code>int</code> or <code>unsigned</code>.</p>
<p>So, now the question becomes, </p>
<pre><code>"Does the array indexer `somearray[value]` takes an `int` as input,
or an `unsigned ` as input?"
</code></pre>
<p><br></p>
http://stackoverflow.com/questions/705502/why-does-microsofts-c-compiler-want-the-variables-at-the-beginning-of-the-functi3Why does Microsoft's C compiler want the variables at the beginning of the function?Ryan Shaw2009-04-01T13:34:36Z2009-04-01T17:04:33Z
<p>I am currently writing a C (not C++). It seems the Microsoft's C compiler requires all variables to be declared on top of the function.</p>
<p>For example, the following code will not pass compilation:</p>
<pre><code>int foo(int x) {
assert(x != 0);
int y = 2 * x;
return y;
}
</code></pre>
<p>The compiler reports an error at the third line, saying </p>
<pre><code>error C2143: syntax error : missing ';' before 'type'
</code></pre>
<p>If the code is changed to be like below it will pass compilation:</p>
<pre><code>int foo(int x) {
int y;
assert(x != 0);
y = 2 * x;
return y;
}
</code></pre>
<p>If I change the source file name from <code>.c</code> to be <code>.cpp</code>, the compilation will also pass as well.</p>
<p>I suspect there's an option somewhere to turn off the strictness of the compiler, but I haven't found it. Can anyone help on this?</p>
<p>Thanks in advance.</p>
<p>I am using cl.exe that is shipped with Visual Studio 2008 SP1. </p>
<p>Added:</p>
<p>Thank you all for answering! It seems I have to live in C89 with Microsoft's cl.exe. </p>
http://stackoverflow.com/questions/589575/c-size-of-int-long-etc/697531#6975310Answer by Ryan Shaw for C++ : size of int, long, etc...Ryan Shaw2009-03-30T14:49:54Z2009-03-30T14:49:54Z<p>There is standard. </p>
<p>C90 standard requires that</p>
<pre><code>sizeof(short) <= sizeof(int) <= sizeof(long)
</code></pre>
<p>C99 standard requires that</p>
<pre><code>sizeof(short) <= sizeof(int) <= sizeof(long) < sizeof(long long)
</code></pre>
<p><a href="http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1256.pdf" rel="nofollow">Here is the C99 specifications</a>. Page 22 details sizes of different integral types. </p>
<p>Here is the int type sizes (bits) for Windows platforms:</p>
<pre><code>Type C99 Minimum Windows 32bit
char 8 8
short 16 16
int 16 32
long 32 32
long long 64 64
</code></pre>
<p>If you are concerned with portability, or you want the name of the type reflects the size, you can look at the header <code><inttypes.h></code>, where the following macros are available:</p>
<pre><code>int8_t
int16_t
int32_t
int64_t
</code></pre>
<p><code>int8_t</code> is guaranteed to be 8 bits, and <code>int16_t</code> is guaranteed to be 16 bits, etc.</p>
http://stackoverflow.com/questions/985151/how-to-present-the-nullable-primitive-type-int-in-java/985170#985170Comment by Ryan Shaw on How to present the nullable primitive type int in Java?Ryan Shaw2009-06-12T05:37:29Z2009-06-12T05:37:29ZNullable values are not boxed in C# as I know. Correct me if I am wrong.http://stackoverflow.com/questions/924358/reason-for-sorting-a-hash-tableComment by Ryan Shaw on Reason for Sorting a Hash TableRyan Shaw2009-05-29T05:20:56Z2009-05-29T05:20:56ZIt makes me think of Dilbert...http://stackoverflow.com/questions/923876/why-are-my-chinese-characters-not-displayed-correctly-in-c-stringComment by Ryan Shaw on Why are my Chinese characters not displayed correctly in c# stringRyan Shaw2009-05-29T04:50:28Z2009-05-29T04:50:28ZHow do you insert the data into database? VALUES (N'全澳甲流确诊病例已破100') or VALUES ('全澳甲流确诊病例已破100')?
http://stackoverflow.com/questions/857070/how-to-convert-an-arbitrary-large-integer-from-base-10-to-base-16/857110#857110Comment by Ryan Shaw on How to convert an arbitrary large integer from base 10 to base 16?Ryan Shaw2009-05-14T05:13:37Z2009-05-14T05:13:37Zyeah i know gmp and used it before; can this problem be solved without using gmp? Or, can you briefly tell how the gmp is designed since the code base is quite largehttp://stackoverflow.com/questions/857070/how-to-convert-an-arbitrary-large-integer-from-base-10-to-base-16Comment by Ryan Shaw on How to convert an arbitrary large integer from base 10 to base 16?Ryan Shaw2009-05-14T05:05:11Z2009-05-14T05:05:11Znah.. it's not homework; an interview question. :Phttp://stackoverflow.com/questions/788026/hex-to-decimal-conversion-kr-exercise/788061#788061Comment by Ryan Shaw on Hex to Decimal conversion [K&R exercise]Ryan Shaw2009-04-26T03:57:13Z2009-04-26T03:57:13Zthanks for commenting. bug fixed.http://stackoverflow.com/questions/788026/hex-to-decimal-conversion-kr-exercise/788061#788061Comment by Ryan Shaw on Hex to Decimal conversion [K&R exercise]Ryan Shaw2009-04-25T05:31:07Z2009-04-25T05:31:07Zthanks for commenting. bug fixed.http://stackoverflow.com/questions/728939/how-to-execute-some-code-before-entering-the-main-routine-in-vc/728971#728971Comment by Ryan Shaw on How to execute some code before entering the main() routine in VC?Ryan Shaw2009-04-08T08:14:02Z2009-04-08T08:14:02ZYour code does not work. I am using MS cl.exe compiler. It gives an error:
error: initializer element is not constant http://stackoverflow.com/questions/728939/how-to-execute-some-code-before-entering-the-main-routine-in-vc/728950#728950Comment by Ryan Shaw on How to execute some code before entering the main() routine in VC?Ryan Shaw2009-04-08T08:02:03Z2009-04-08T08:02:03ZThis is a good idea.
But your code can pass compilation in C++ only; not in C.http://stackoverflow.com/questions/721861/in-case-of-integer-overflows-what-is-the-result-of-unsigned-int-int-unsig/721942#721942Comment by Ryan Shaw on In case of integer overflows what is the result of (unsigned int) * (int) ? unsigned or int?Ryan Shaw2009-04-06T15:29:10Z2009-04-06T15:29:10ZCan you tell me where I can find a online copy of C++ standard?http://stackoverflow.com/questions/705502/why-does-microsofts-c-compiler-want-the-variables-at-the-beginning-of-the-functi/705516#705516Comment by Ryan Shaw on Why does Microsoft's C compiler want the variables at the beginning of the function?Ryan Shaw2009-04-01T13:52:53Z2009-04-01T13:52:53ZThanks for answering! It seems I have to live with C90 for cl.exe.http://stackoverflow.com/questions/705502/why-does-microsofts-c-compiler-want-the-variables-at-the-beginning-of-the-functi/705516#705516Comment by Ryan Shaw on Why does Microsoft's C compiler want the variables at the beginning of the function?Ryan Shaw2009-04-01T13:41:51Z2009-04-01T13:41:51ZI am searching the help of cl.exe for the option to switch on C99 options. But so far I got no clue on it.
Requiring to declare all variables at the top seems extremely inconvenient.
If I use gcc to compile my code it works. Does this mean the cl.exe does not support C99 standards?