PollHelper.cpp 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Copyright: JessMA Open Source (ldcsaa@gmail.com)
  3. *
  4. * Author : Bruce Liang
  5. * Website : https://github.com/ldcsaa
  6. * Project : https://github.com/ldcsaa/HP-Socket
  7. * Blog : http://www.cnblogs.com/ldcsaa
  8. * Wiki : http://www.oschina.net/p/hp-socket
  9. * QQ Group : 44636872, 75375912
  10. *
  11. * Licensed under the Apache License, Version 2.0 (the "License");
  12. * you may not use this file except in compliance with the License.
  13. * You may obtain a copy of the License at
  14. *
  15. * http://www.apache.org/licenses/LICENSE-2.0
  16. *
  17. * Unless required by applicable law or agreed to in writing, software
  18. * distributed under the License is distributed on an "AS IS" BASIS,
  19. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  20. * See the License for the specific language governing permissions and
  21. * limitations under the License.
  22. */
  23. #include "PollHelper.h"
  24. #include "FuncHelper.h"
  25. long PollForSingleObject(pollfd& pfd, long lTimeout, const sigset_t* pSigSet)
  26. {
  27. return PollForMultipleObjects(&pfd, 1, lTimeout, pSigSet);
  28. }
  29. long PollForMultipleObjects(pollfd pfds[], int iCount, long lTimeout, const sigset_t* pSigSet)
  30. {
  31. ASSERT(iCount > 0 && iCount < (int)(sizeof(LONG) * 8));
  32. timespec* pts = nullptr;
  33. if(!IS_INFINITE(lTimeout))
  34. {
  35. pts = CreateLocalObject(timespec);
  36. ::MillisecondToTimespec(lTimeout, *pts);
  37. }
  38. while(TRUE)
  39. {
  40. int rs = NO_EINTR_INT(ppoll(pfds, iCount, pts, pSigSet));
  41. if(rs <= TIMEOUT) return rs;
  42. LONG lValue = 0L;
  43. for(int i = 0; i < iCount; i++)
  44. {
  45. pollfd& pfd = pfds[i];
  46. if(pfd.revents & _POLL_ALL_EVENTS)
  47. lValue |= (1 << i);
  48. }
  49. return lValue;
  50. }
  51. }