Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added types implementation #77

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

patrickhrastnik
Copy link

Suggested fix for #75

Signed-off-by: HRASTNIK Patrick Ing [email protected]

Suggested fix for IBM#75

Signed-off-by: HRASTNIK Patrick Ing <[email protected]>
@abmusse abmusse requested review from kadler, dmabupt and abmusse October 3, 2019 16:01
Copy link
Member

@kadler kadler left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please resolve the merge conflicts and re-submit.

Comment on lines +576 to +581
packed(digits, delimiter) {
return digits.toString() + "P" + delimiter.toString();
},
zoned(digits, delimiter) {
return digits.toString() + "S" + delimiter.toString();
},
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd suggest changing digits and delimiter to something more descriptive. SQL uses the terms precision and scale, though some may find that confusing. Perhaps total_digits and decimal_digits would be more appropriate?

Comment on lines +588 to +589
float(digits, delimiter) {
return digits.toString() + "F" + delimiter.toString();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would rather see separate float and double functions which take no parameters and return "4F2" and "8F4", respectively.

Aside: I'm not sure why XMLSERVICE wants 4F2 and 8F4, when RPG says the decimal digits field must be blank (and would be 4F and 8F, respectively).

Comment on lines +582 to +587
signed(digits, delimiter) {
return digits.toString() + "I" + delimiter.toString();
},
unsigned(digits, delimiter) {
return digits.toString() + "U" + delimiter.toString();
},
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AFAIK, XMLSERVICE doesn't support integer types with scale, so the delimiter must always be 0 and is thus unnecessary.

Also, I'd also like to have separate functions for each type/length that would need no parameters, eg. signed_byte, signed_short, signed_int, signed_bigint, etc..

patrickhrastnik and others added 4 commits October 4, 2019 20:18
Applied suggestion from @kadler

Co-Authored-By: Kevin Adler <[email protected]>
Applied suggestion from @kadler

Co-Authored-By: Kevin Adler <[email protected]>
Applied suggestion from @kadler

Co-Authored-By: Kevin Adler <[email protected]>
Applied suggestion from @kadler

Co-Authored-By: Kevin Adler <[email protected]>
@github-actions
Copy link

github-actions bot commented Feb 8, 2020

👋 Hi! This pull request has been marked stale due to inactivity. If no further activity occurs, it will automatically be closed.

@github-actions github-actions bot added the stale label Feb 8, 2020
@github-actions github-actions bot closed this Feb 15, 2020
@kadler kadler reopened this Jan 14, 2021
@kadler
Copy link
Member

kadler commented Jan 14, 2021

Would be good to get this merged. @patrickhrastnik, not sure if you have time to resolve the conflicts otherwise @abmusse if you want to pull the changes in to a new PR and get it merged that would be great.

@kadler
Copy link
Member

kadler commented Jan 14, 2021

One thing that I was thinking about that would impact this, is it would be really nice to have a varchar type, but that would require having the function/object return both the XMLSERVICE type as well as the varying="XX" attribute.

I think this could be done by having the function return an object with the attributes and using the javascript spread operator:

# old way
program.addParam({ type: '10A', varying: '4', value: 'Gill' });

function varchar(len) {
  return { type: len.toString() + 'a', varying: '2' }
}
function longvarchar(len) {
  return { type: len.toString() + 'a', varying: '4' }
}

program.addParam({ ...longvarchar(10), value: 'Gill' });

If we did that, it might also make sense to use camel case on the names:

  • Integer
  • Char
  • Varchar
  • LongVarchar
  • etc

@github-actions github-actions bot removed the stale label Jan 15, 2021
@abmusse
Copy link
Member

abmusse commented Jan 15, 2021

One thing that I was thinking about that would impact this, is it would be really nice to have a varchar type, but that would require having the function/object return both the XMLSERVICE type as well as the varying="XX" attribute.

I think this could be done by having the function return an object with the attributes and using the javascript spread operator:

# old way
program.addParam({ type: '10A', varying: '4', value: 'Gill' });

function varchar(len) {
  return { type: len.toString() + 'a', varying: '2' }
}
function longvarchar(len) {
  return { type: len.toString() + 'a', varying: '4' }
}

program.addParam({ ...longvarchar(10), value: 'Gill' });

If we did that, it might also make sense to use camel case on the names:

  • Integer
  • Char
  • Varchar
  • LongVarchar
  • etc

Nice! The spread operator works out cleanly in this situation. I just tested it out in sample script:

function LongVarChar(len) {
  return { type: len.toString() + 'A', varying: '4' }
}

function addParam(param) {
  console.log(param)
}

addParam({ type: '10A', varying: '2', value: 'Gill' });
addParam({ ...LongVarChar(10), value: 'Gill' })

Output

{ type: '10A', varying: '2', value: 'Gill' }
{ type: '10A', varying: '4', value: 'Gill' }

The use of camel case be to minimize confusion for the reader?
I'm pretty sure the linter will complain but we can work around that.

@github-actions
Copy link

👋 Hi! This pull request has been marked stale due to inactivity. If no further activity occurs, it will automatically be closed.

@github-actions github-actions bot added the stale label Feb 15, 2021
@abmusse abmusse added keep-open Exempts stale action from auto closing the issue/pr. and removed stale labels Feb 16, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
keep-open Exempts stale action from auto closing the issue/pr.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants