Pular para o conteúdo principal

Postagem em destaque

BlackTDN :: LeetCode (17) :: Comparando Implementações do Desafio "Letter Combinations of a Phone Number" em Harbour e TOTVS TLPP

_Créditos das imagens: ChatGPT_ # LeetCode (17) :: Comparando Implementações do Desafio "Letter Combinations of a Phone Number" em Harbour e TOTVS TLPP O desafio [**"Letter Combinations of a Phone Number"**](https://leetcode.com/problems/letter-combinations-of-a-phone-number/description/) (Combinações de Letras de um Número de Telefone) é um problema clássico de programação que envolve a geração de todas as combinações possíveis de letras que um número de telefone pode representar, com base no mapeamento tradicional dos teclados de telefone. Abaixo, comparamos duas implementações desse desafio: uma em **Harbour** e outra em **TOTVS TLPP** (TOTVS Language Plus Plus). ## O Desafio Dada uma string contendo dígitos de 2 a 9, retorne todas as combinações possíveis de letras que esses dígitos podem representar. O mapeamento dos dígitos para as letras é o mesmo dos teclados de telefone tradicionais: - 2: "abc" - 3: "def" - 4: "ghi" - 5: ...

Protheus :: WebServices : Exemplo de uso da Estrutura TableView

Um pequeno e simples exemplo de como utilizar a Estrutura TableView nos WebServices em ADVPL. Os componentes de TableView são: TableStruct e TableData.

Carregamos em TableView:TableStruct as informações da Estrutura de uma Tabela de acordo com o Array retornado pela função dbStruct().

Já TableView:TableData deverá conter os itens da Tabela de Acordo com a estrutura definida em TableStruct.

Para maior compreensão, eis o exemplo:


#INCLUDE "APWEBSRV.CH"
#INCLUDE "PROTHEUS.CH"
#INCLUDE "DBSTRUCT.CH"
#INCLUDE "TRYEXCEPTION.CH"
/*/
 WebService: U_TblViewSample
 Autor:   Marinaldo de Jesus
 Data:   25/06/2011
 Descricao: Exemplo de Uso da Estrutura de WS TableView
 Uso:   WebServices
/*/
WSSERVICE U_TblViewSample DESCRIPTION "Exemplode Uso da Estrutura TableView" NAMESPACE "http://u_tblviewsample.apw"

 WSDATA Table AS TableView
 WSDATA Alias AS STRING
 WSDATA rInit AS INTEGER
 WSDATA rEnd  AS INTEGER

 WSMETHOD GET  DESCRIPTION "Exemplo de Uso da TableView: Get"

ENDWSSERVICE

/*/
 WsMethod: GET
 Autor:   Marinaldo de Jesus
 Data:   25/06/2011
 Descricao: Obtendo informacoes de uma tabela usando TableView
 Uso:   WebServices
/*/
WSMETHOD GET WSRECEIVE Alias , rInit , rEnd WSSEND Table WSSERVICE U_TblViewSample

 Local adbStruct
 
 Local cValue
 Local cDBSType
 
 Local lWsMethodRet  := .T.

 Local nItem
 Local nRecno
 Local nField
 Local nFields

 Local oException
 
 Local uValue

 TRYEXCEPTION
 
  Self:Alias  := Upper( Self:Alias )
  DEFAULT Alias := Self:Alias

  IF !ChkFile( Self:Alias )
   ExUserException( "Problema na abertura da Tabela: " + Self:Alias )
  EndIF

  Self:Table    := WsClassNew( "TableView" ) 
  Self:Table:TableStruct := {}

  adbStruct    := ( Self:Alias )->( dbStruct() )
  nFields     := Len( adbStruct )

  For nField := 1 To nFields
   aAdd( Self:Table:TableStruct , WsClassNew( "FieldStruct" ) )
   Self:Table:TableStruct[ nField ]:FldName := adbStruct[ nField ][ DBS_NAME ]
   Self:Table:TableStruct[ nField ]:FldType := adbStruct[ nField ][ DBS_TYPE ]
   Self:Table:TableStruct[ nField ]:FldSize := adbStruct[ nField ][ DBS_LEN  ]
   Self:Table:TableStruct[ nField ]:FldDec  := adbStruct[ nField ][ DBS_DEC  ]
  Next nField 

  Self:Table:TableData := {}
  
  nItem := 0

  For nRecno := Self:rInit To Self:rEnd
   ( Self:Alias )->( dbGoto( nRecno ) )
   IF ( Self:Alias )->( Eof() .or. Bof() )
    Loop
   EndIF
   aAdd( Self:Table:TableData , WsClassNew( "FieldView" ) )
   ++nItem
   Self:Table:TableData[ nItem ]:FldTag := Array( nFields )
   For nField := 1 To nFields
    cDBSType := adbStruct[ nField ][ DBS_TYPE ]
    uValue  := ( Self:Alias )->( FieldGet( nField ) )
    Do Case
    Case ( cDBSType == "N" )
     cValue := Str( uValue , adbStruct[ nField ][ DBS_LEN ] , adbStruct[ nField , DBS_DEC ] )
    Case ( cDBSType == "D" )
     cValue := Dtos( uValue )
    Case ( cDBSType == "L" )
     cValue := IF( uValue , ".T." , ".F." )
    OtherWise
     cValue := uValue
    EndCase
    Self:Table:TableData[ nItem ]:FldTag[ nField ] := AllTrim( cValue )
   Next nField
  Next nLoop

  IF ( nItem == 0 )
   ExUserException( "Não Existem Registros a Serem Apresentados para a Tabela: " + Self:Alias )
  EndIF

 CATCHEXCEPTION USING oException

  lWsMethodRet := .F.

  SetSoapFault( ProcName() , oException:Description )

 ENDEXCEPTION

Return( lWsMethodRet ) 
Obtenha-o, clicando aqui


[]s
иαldσ dj

Comentários

Postagens mais visitadas