Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am currently using Visual Studio 2012 IDE and I am developing an Android application using C# and the Mono for Android framework.

My question is how would you properly request your application to download a bunch of files and store them on your device?

Currently, I am not able to download the needed 69 xml files (totalling about 6 MB), because it returns an "*ABORTING: HEAP MEMORY CORRUPTION IN tmalloc_large*" error. However, I have tested 30 files (about 3 MB) and it downloads them just fine and I am able to use them. I need all 69 files to run my application. Please help. Here are the methods I am using, please give corrections, additions, or alternative methods to use. I deeply appreciate it.

public void DownloadLanguagePack(string language, string[] files)
{            
    // Download each file inside the 'files' array
    for (var i = 0; i < files.Length; i++)
    {
        string[] args = { language, files[i].FileName};

        // This way...
        WebClient wc = new WebClient();
        wc.OpenReadCompleted += wc_OpenReadCompleted;
        wc.OpenReadAsync(new System.Uri(files[i].FileURL), args);
    }
}

void wc_OpenReadCompleted(object sender, OpenReadCompletedEventArgs e)
{
    string[] args = (string[])e.UserState;
    string language = args[0];
    string filename = args[1] + ".xml";

    if (Android.OS.Environment.ExternalStorageState == Android.OS.Environment.MediaMounted)
    {
        // Directory logic, works just fine
        var dir = new Java.IO.File(System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal));
        var folder = new Java.IO.File(dir, language);
        var file = new Java.IO.File(folder, filename);
        if (!folder.Exists())
        {
            folder.Mkdirs();
        }

        // Tested with & without ThreadPool and makes no difference.
        ThreadPool.QueueUserWorkItem((c) =>
        {
            // THIS IS THE AREA THAT I BELIEVE NEEDS SOME WORK, MAYBE NOT.
            XDocument doc = new XDocument();
            using (Stream s = e.Result)
            {
                // Load xml into document
                doc = XDocument.Load(s);

                using (var stream = new StreamWriter(file.Path, false))
                {
                    // Save document
                    doc.Save(stream);
                    stream.Flush();
                    stream.Close();

                    GC.Collect();
                }
            }
        });
    }
}
share|improve this question
HEAP MEMORY CORRUPTION IN tmalloc_large, ouch. Looks like an Android or Mono bug to me. What device are you testing on? – Simon Sep 30 '12 at 19:48
PS. The using.. construct looks fine to me. Under the covers, using just expands to a try-catch-finally. However, the stream is disposable so I would lose the close and GC.Collect. – Simon Sep 30 '12 at 19:51
Just for testing, what happens if you move the XDocument doc declaration to the class level and simply new it each time in wc_OpenReadCompleted? – Simon Sep 30 '12 at 20:06
Greetings Simon. You're right about the using statements, I removed close and collect. However, I tried moving the XDocument to class level and still same error. – Guy Micciche Sep 30 '12 at 20:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.