Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 617537
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T18:26:47+00:00 2026-05-13T18:26:47+00:00

I want to output a header line in a log file and then a

  • 0

I want to output a header line in a log file and then a line of ‘-‘ before the data. To do this I create a string of the header and then outpout the same number of ‘-‘.

But the below code always fails with a CONSTRAINT_ERROR because the generated string is not 1024 characters. In Ada string assignments require exactly the same length not just sufficient capacity.

Option 1) is to compute the exact length but that is brittle to future changes.
Option 2) is to use something other than String.

procedure F() is 
    Msg : String(1..1024);
begin
    Open_Log();
    Msg :=       FLS(" Field1", 12) &
           "|" & FLS(" Field2", 12) &
           "|" & FLS(" Field3", 16);

    Log_To_File("# " & Msg);
    Log_To_File("# " & Fill_String(Msg'Last, '-'));
end;
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T18:26:48+00:00Added an answer on May 13, 2026 at 6:26 pm

    A lot of folks who are used to the C way of building strings in steps have trouble wrapping their minds around Ada strings, which you are supposed to initialize and use as-is. When you grok this fact about Ada strings, the solution becomes much simpler. I can even throw out your “Fill” routine.

    procedure F() is  
       Msg : constant String
          := FLS(" Field1", 12) & 
           "|" & FLS(" Field2", 12) & 
           "|" & FLS(" Field3", 16); 
       Separator : constant String := (1..Msg'length => '-'); --'
    begin 
       Open_Log(); 
    
       Log_To_File("# " & Msg); 
       Log_To_File("# " & Separator); 
    end;
    

    (Note: The comment is a hack to get SO’s colorizer back on track)

    If you didn’t have to have the separator the same length, you wouldn’t even need to declare the variable.

    If it were me, I’d do something like have Log_To_File keep track of lengths and generate its own properly-sized separator upon request. Then you could just write:

    Open_Log();
    Log_To_File ("# " & FLS(" Field1", 12) & 
           "|" & FLS(" Field2", 12) & 
           "|" & FLS(" Field3", 16)); 
    Log_Separator_To_File;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This file is an output file whose first line is a header followed by
I want to ask how to recalculate line number position and other data when
i have a xml and a xsl file. i want output of xsl in
I want the output as shown in below image This is a Sikh holy
I want to output the following string in PHP: ä ö ü ß €
I want to output some characters in C# console application and then rewrite them,
I want to output an inline jpg image as a base64 encoded string, however
I want to output a message to the user in the same html page
For a small file format I'm developing I need to output a header of
I have a CSV-file similar to this test.csv file: Header 1; Header 2; Header

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.